hotFix(getBalance): simplify
gitea/salix/pipeline/pr-master This commit looks good Details

This commit is contained in:
Robert Ferrús 2024-05-02 08:02:17 +02:00
parent b8b055b86c
commit 77a1b4bb57
1 changed files with 3 additions and 4 deletions

View File

@ -27,12 +27,11 @@ module.exports = Self => {
const where = filter.where;
const query = 'CALL vn.item_getBalance(?, ?, ?)';
let date;
if (where.date) {
date = new Date(where.date);
date.setHours(0, 0, 0, 0);
where.date = new Date(where.date);
where.date.setHours(0, 0, 0, 0);
}
const [diary] = await Self.rawSql(query, [where.itemFk, where.warehouseFk, date], myOptions);
const [diary] = await Self.rawSql(query, [where.itemFk, where.warehouseFk, where.date], myOptions);
for (const entry of diary)
if (entry.clientType === 'loses') entry.highlighted = true;