wms上架新库存冻结数量有值问题修改;
This commit is contained in:
+2
-2
@@ -871,7 +871,7 @@ public class MaterialInventoryImpl extends ServiceImpl<MaterialInventoryMapper,
|
|||||||
BigDecimal newInventoryQuantity = oldInventoryQuantity.add(quantity);
|
BigDecimal newInventoryQuantity = oldInventoryQuantity.add(quantity);
|
||||||
//扣减后可用数量
|
//扣减后可用数量
|
||||||
BigDecimal newAllocationQuantity = oldAllocationQuantity.add(quantity);
|
BigDecimal newAllocationQuantity = oldAllocationQuantity.add(quantity);
|
||||||
BigDecimal newFreezeQuantity = oldFreezeQuantity.add(quantity);
|
//BigDecimal newFreezeQuantity = oldFreezeQuantity.add(quantity);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -893,7 +893,7 @@ public class MaterialInventoryImpl extends ServiceImpl<MaterialInventoryMapper,
|
|||||||
|
|
||||||
materialInventoryPO.setInventoryQuantity(newInventoryQuantity);
|
materialInventoryPO.setInventoryQuantity(newInventoryQuantity);
|
||||||
materialInventoryPO.setAllocationQuantity(newAllocationQuantity);
|
materialInventoryPO.setAllocationQuantity(newAllocationQuantity);
|
||||||
materialInventoryPO.setFreezeQuantity(newFreezeQuantity);
|
//materialInventoryPO.setFreezeQuantity(newFreezeQuantity);
|
||||||
materialInventoryPO.setArea(newArea);
|
materialInventoryPO.setArea(newArea);
|
||||||
materialInventoryPO.setVolume(newVolume);
|
materialInventoryPO.setVolume(newVolume);
|
||||||
materialInventoryPO.setGrossWeight(newGrossWeight);
|
materialInventoryPO.setGrossWeight(newGrossWeight);
|
||||||
|
|||||||
Reference in New Issue
Block a user