From d81f533ecbb1b6934af1feb8d0744eca31b10498 Mon Sep 17 00:00:00 2001 From: Surya Paolo Date: Tue, 16 Jan 2024 10:49:20 +0100 Subject: [PATCH] fix totqta --- src/server/modules/Cart.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/modules/Cart.js b/src/server/modules/Cart.js index ca7c1c6..b959cb0 100755 --- a/src/server/modules/Cart.js +++ b/src/server/modules/Cart.js @@ -197,8 +197,8 @@ class Cart { order.TotalPriceProductCalc = 0; if (updatecalcprice) { order.TotalPriceProduct = 0; - this.totalQty += order.quantity + order.quantitypreordered; } + this.totalQty += order.quantity + order.quantitypreordered; // Calcolo Sconto let sconti_da_applicare = [];