feat(defaulter_filter): add department
gitea/salix/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Alex Moreno 2024-07-18 08:12:39 +02:00
parent 12316fb44b
commit e66d138091
1 changed files with 5 additions and 1 deletions

View File

@ -72,7 +72,9 @@ module.exports = Self => {
cn.name country,
c.countryFk,
pm.name payMethod,
r.finished IS NULL hasRecovery
r.finished IS NULL hasRecovery,
dp.id departmentFk,
dp.name departmentName
FROM defaulter d
JOIN client c ON c.id = d.clientFk
JOIN country cn ON cn.id = c.countryFk
@ -84,6 +86,8 @@ module.exports = Self => {
SELECT MAX(started), clientFk, finished
FROM recovery
) r ON r.clientFk = c.id
LEFT JOIN workerDepartment wd ON wd.workerFk = u.id
JOIN department dp ON dp.id = wd.departmentFk
WHERE
d.created = ?
AND d.amount > 0