campingmontagut/verify/booking_invoice.sql
jordi fita mas ff9f33dfba Add invoicing of bookings
It is a bit user-hostile because you have to create a new customer prior
to create the invoice, but that’s what it is for now.
2024-04-28 21:56:51 +02:00

11 lines
136 B
PL/PgSQL

-- Verify camper:booking_invoice on pg
begin;
select booking_id
, invoice_id
from camper.booking_invoice
where false;
rollback;