merchant

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

pg_merchant_account_trigger.sql (1144B)


      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_account_trigger.sql
     17 -- @brief Run on INSERT/DELETE/UPDATE of accounts to generate report
     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.payto_uri
     27      ,OLD.active)
     28   IS DISTINCT FROM
     29      (NEW.payto_uri
     30      ,NEW.active)
     31   THEN
     32     CALL merchant_send_account_notification(NEW.account_serial);
     33   END IF;
     34   RETURN NEW;
     35 END $$;