fix: refs #6389 saleMonitor filter
gitea/salix/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Carlos Satorres 2024-10-20 15:17:17 +02:00
parent a5bbdd7a01
commit bca22e8ad3
1 changed files with 2 additions and 0 deletions

View File

@ -194,6 +194,7 @@ module.exports = Self => {
u.name userName,
c.salesPersonFk,
c.credit,
pm.name payMethod,
z.hour zoneLanding,
z.name zoneName,
z.id zoneFk,
@ -211,6 +212,7 @@ module.exports = Self => {
LEFT JOIN ticketState ts ON ts.ticketFk = t.id
LEFT JOIN state st ON st.id = ts.stateFk
LEFT JOIN client c ON c.id = t.clientFk
LEFT JOIN payMethod pm ON pm.id = c.payMethodFk
LEFT JOIN worker wk ON wk.id = c.salesPersonFk
LEFT JOIN account.user u ON u.id = wk.id
LEFT JOIN (