From 6b96f73b7ab8368b7a9d67c2e0ffdcf40041f6a0 Mon Sep 17 00:00:00 2001 From: Vincent Vandemeulebrouck Date: Fri, 7 May 2021 00:05:36 +0200 Subject: [PATCH] =?UTF-8?q?Ignorer=20les=20diff=C3=A9rences=20de=20co?= =?UTF-8?q?=C3=BBt=20pour=20regrouper?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- module/item.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/item.js b/module/item.js index e20021ab..2f74d075 100644 --- a/module/item.js +++ b/module/item.js @@ -151,7 +151,7 @@ export class RdDItem extends Item { if (tplData.quantite == undefined) return false; for (const [key, value] of Object.entries(tplData)) { - if (['quantite', 'encTotal', 'prixTotal'].includes(key)) continue; + if (['quantite', 'encTotal', 'prixTotal', 'cout'].includes(key)) continue; if (value != otherTplData[key]) return false; } return true;