This commit is contained in:
Mario Zechner 2023-10-17 01:19:56 +02:00
parent effcb81c23
commit 6a133de318

View File

@ -276,6 +276,7 @@ exports.itemsToCSV = (items) => {
let result = "store;id;name;priceDate;price;isBudgetBrand;quantity;unit;isWeighted;isBio;isAvailable;url\n";
for (const item of items) {
if (item.store == "lidl" || item.store == "penny") continue;
if (!item.name) continue;
let rowFront = "";
rowFront += item.store + ";";
rowFront += `"${item.id}"` + ";";