Fix moltiplicazione Qta errata in CaricaMateriaPrimaInPosizione

This commit is contained in:
Giuseppe Scorrano 2025-12-11 09:43:54 +01:00
parent 523da62bee
commit 8e54e0c394

View File

@ -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,
}