delivery-note get ticket address fix
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Joan Sanchez 2020-04-09 20:03:45 +02:00
parent 7987603d7b
commit 87f0a7e417
1 changed files with 1 additions and 0 deletions

View File

@ -72,6 +72,7 @@ module.exports = {
p.name province
FROM ticket t
JOIN address a ON a.clientFk = t.clientFk
AND a.id = t.addressFk
LEFT JOIN province p ON p.id = a.provinceFk
WHERE t.id = ?`, [ticketId]);
},