refs #5867 fix: tickets sql
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Sergio De la torre 2023-10-17 08:54:45 +02:00
parent ca4086d115
commit b07072ee56
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ SELECT
u.nickName salesPersonName,
ipkg.itemPackingTypes
FROM route r
LEFT JOIN ticket t ON t.routeFk = r.id
JOIN ticket t ON t.routeFk = r.id
LEFT JOIN address a ON a.id = t.addressFk
LEFT JOIN client c ON c.id = t.clientFk
LEFT JOIN worker w ON w.id = client_getSalesPerson(t.clientFk, CURDATE())