From 8e54e0c394817159ef83cbaa731e57d20849b32d Mon Sep 17 00:00:00 2001 From: GiuseppeS Date: Thu, 11 Dec 2025 09:43:54 +0100 Subject: [PATCH] Fix moltiplicazione Qta errata in CaricaMateriaPrimaInPosizione --- .../RestConsumer/Controller/WarehouseControllerService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Integry Smart Gateway/Core/RestConsumer/Controller/WarehouseControllerService.cs b/Integry Smart Gateway/Core/RestConsumer/Controller/WarehouseControllerService.cs index 412407ed..748bf622 100644 --- a/Integry Smart Gateway/Core/RestConsumer/Controller/WarehouseControllerService.cs +++ b/Integry Smart Gateway/Core/RestConsumer/Controller/WarehouseControllerService.cs @@ -175,8 +175,8 @@ public class WarehouseControllerService( NumOrd = numOrd, RigaOrd = rigaOrd, CodMart = codMart, - QtaTot = quantity * 100, - QtaCnf = (quantity * 100) / numCnf, + QtaTot = quantity, + QtaCnf = quantity / numCnf, NumCnf = numCnf, PartitaMag = partitaMag, }