fix(builds): fixed non used variables
All checks were successful
Build and Push LST Docker Image / docker (push) Successful in 1m32s

This commit is contained in:
2026-06-15 17:16:29 -05:00
parent 24af3ca403
commit 2ebf695526
2 changed files with 22 additions and 59 deletions

View File

@@ -113,8 +113,8 @@ export const pNgForecast = async (data: any, user: any) => {
// }
return {
customerArticleNo: parseInt(o["Customer Item No."]),
requirementDate: excelDateStuff(parseInt(o["Request Date"])),
customerArticleNo: parseInt(o["Customer Item No."] ?? "0", 10),
requirementDate: excelDateStuff(parseInt(o["Request Date"] ?? "0", 10)),
quantity: o["Remaining Qty to be Shipped"],
};
});