merchant

Merchant backend to process payments, run by merchants
Log | Files | Refs | Submodules | README | LICENSE

pg_merchant_kyc_trigger.sql (1255B)


      1 --
      2 -- This file is part of TALER
      3 -- Copyright (C) 2026 Taler Systems SA
      4 --
      5 -- TALER is free software; you can redistribute it and/or modify it under the
      6 -- terms of the GNU General Public License as published by the Free Software
      7 -- Foundation; either version 3, or (at your option) any later version.
      8 --
      9 -- TALER is distributed in the hope that it will be useful, but WITHOUT ANY
     10 -- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
     11 -- A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
     12 --
     13 -- You should have received a copy of the GNU General Public License along with
     14 -- TALER; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
     15 
     16 -- @file pg_merchant_kyc_trigger.sql
     17 -- @brief Fix trigger logic
     18 -- @author Christian Grothoff
     19 
     20 
     21 CREATE OR REPLACE FUNCTION merchant_kyc_update_trigger()
     22 RETURNS trigger
     23 LANGUAGE plpgsql
     24 AS $$
     25 BEGIN
     26   IF (OLD.kyc_ok
     27      ,OLD.last_rule_gen
     28      ,OLD.aml_review
     29      ,OLD.jaccount_limits)
     30   IS DISTINCT FROM
     31      (NEW.kyc_ok
     32      ,NEW.last_rule_gen
     33      ,NEW.aml_review
     34      ,NEW.jaccount_limits)
     35   THEN
     36     CALL merchant_send_kyc_notification(NEW.account_serial,
     37                                         NEW.exchange_url);
     38   END IF;
     39   RETURN NEW;
     40 END $$;