campingmontagut/verify/payment_customer.sql
jordi fita mas 15dde3f491 Add ready_payment function and use their slug as URL
Now that the payments have slug, i can use them in the URL to show the
actual data of a payment, and kickstart the payment process with Redsys.
2024-02-12 18:06:17 +01:00

19 lines
262 B
PL/PgSQL

-- Verify camper:payment_customer on pg
begin;
select payment_id
, full_name
, address
, postal_code
, city
, country_code
, email
, phone
, acsi_card
, lang_tag
from camper.payment_customer
where false;
rollback;