hotFix(getBalance): date setHours to 0
gitea/salix/pipeline/pr-master This commit looks good Details

This commit is contained in:
Robert Ferrús 2024-05-02 08:00:44 +02:00
parent d18f08e676
commit b8b055b86c
1 changed files with 6 additions and 2 deletions

View File

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