salix/print/templates/email/letter-debtor-nd/sql/client.sql

11 lines
298 B
MySQL
Raw Normal View History

2020-09-25 12:45:00 +00:00
SELECT
c.dueDay,
c.iban,
sa.iban,
be.name AS bankName
FROM client c
JOIN company AS cny
2022-09-14 12:03:15 +00:00
JOIN supplierAccount AS sa ON
IF (ct.code = 'PT', sa.id = 907, sa.id = cny.supplierAccountFk)
2020-09-25 12:45:00 +00:00
JOIN bankEntity be ON be.id = sa.bankEntityFk
2021-01-13 10:05:30 +00:00
WHERE c.id = ? AND cny.id = ?