Explorar el Código

Update Stock Holdings now uses the ActualQuantity property

Kenric Nugteren hace 1 año
padre
commit
4e19df171a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      prs.stores/RequisitionStore.cs

+ 1 - 1
prs.stores/RequisitionStore.cs

@@ -295,7 +295,7 @@ namespace Comal.Stores
                     ? holdingrow.Get<StockHolding, Guid>(c => c.Job.ID)
                     : Guid.Empty;
 
-                var qty = item.Quantity;
+                var qty = item.ActualQuantity;
                 var dimensions = item.Product.Dimensions;
 
                 var txnid = Guid.Empty;