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.
19 lines
262 B
PL/PgSQL
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;
|