feat: refs #8077 defaulter filter
gitea/salix/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Robert Ferrús 2024-10-14 13:01:32 +02:00
parent 2871810ec6
commit 862a583e30
1 changed files with 16 additions and 10 deletions

View File

@ -18,6 +18,11 @@ module.exports = Self => {
arg: 'search',
type: 'string',
description: `If it's and integer searchs by id, otherwise it searchs by name`
},
{
arg: 'sumAmount',
type: 'boolean',
description: ``
}
],
returns: {
@ -28,6 +33,7 @@ module.exports = Self => {
path: `/filter`,
verb: 'GET'
}
});
Self.filter = async(ctx, filter, options) => {
@ -50,14 +56,7 @@ module.exports = Self => {
filter = mergeFilters(ctx.args.filter, {where});
const stmts = [];
const date = Date.vnNew();
date.setHours(0, 0, 0, 0);
const stmt = new ParameterizedSQL(
`SELECT *
FROM (
SELECT
DISTINCT c.id clientFk,
const fields = ctx.args.sumAmount ? 'sum(d.amount) sumAmount' : ` DISTINCT c.id clientFk,
c.name clientName,
c.salesPersonFk,
c.businessTypeFk = 'worker' isWorker,
@ -74,7 +73,14 @@ module.exports = Self => {
pm.name payMethod,
r.finished IS NULL hasRecovery,
dp.id departmentFk,
dp.name departmentName
dp.name departmentName`;
const date = Date.vnNew();
date.setHours(0, 0, 0, 0);
const stmt = new ParameterizedSQL(
`SELECT *
FROM (
SELECT
${fields}
FROM defaulter d
JOIN client c ON c.id = d.clientFk
JOIN country cn ON cn.id = c.countryFk
@ -101,7 +107,7 @@ module.exports = Self => {
, [date]);
stmt.merge(conn.makeWhere(filter.where));
stmt.merge(`GROUP BY d.clientFk`);
!ctx.args.sumAmount && stmt.merge(`GROUP BY d.clientFk`);
stmt.merge(conn.makeOrderBy(filter.order));
stmt.merge(conn.makeLimit(filter));