salix/print/templates/reports/delivery-note/sql/services.sql

9 lines
210 B
MySQL
Raw Normal View History

2020-09-25 12:45:00 +00:00
SELECT
2020-12-16 08:24:11 +00:00
tc.code taxDescription,
2020-09-25 12:45:00 +00:00
ts.description,
2023-10-05 13:04:39 +00:00
ts.quantity,
ts.price,
ts.quantity * ts.price total
2020-09-25 12:45:00 +00:00
FROM ticketService ts
JOIN taxClass tc ON tc.id = ts.taxClassFk
WHERE ts.ticketFk = ?