refs #6282 left join #1784

Merged
carlossa merged 1 commits from 6282-hotfixFreeLancer into master 2023-10-06 05:43:05 +00:00
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ module.exports = Self => {
SELECT DISTINCT w.id, w.code, u.name, u.nickname, u.active, b.departmentFk
FROM worker w
JOIN account.user u ON u.id = w.id
JOIN business b ON b.workerFk = w.id
LEFT JOIN business b ON b.workerFk = w.id
) w`);
stmt.merge(conn.makeSuffix(filter));