fix: refs #7356 ticket weekly filter #2939

Merged
jon merged 7 commits from 7356-FixTicketWeekly into dev 2024-09-25 05:27:19 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 97b07ea561 - Show all commits

View File

@ -66,7 +66,7 @@ module.exports = Self => {
FROM ticketWeekly tw
JOIN ticket t ON t.id = tw.ticketFk
JOIN client c ON c.id = t.clientFk
JOIN account.user u ON u.id = c.salesPersonFk
LEFT JOIN account.user u ON u.id = c.salesPersonFk
JOIN warehouse wh ON wh.id = t.warehouseFk
LEFT JOIN agencyMode am ON am.id = tw.agencyModeFk`
);