|
@ -537,29 +537,33 @@ |
|
|
//=========================================== |
|
|
//=========================================== |
|
|
detail.recommendContainerCode = balanceItem.containerCode; |
|
|
detail.recommendContainerCode = balanceItem.containerCode; |
|
|
detail.recommendPackingCode = l.packingCode; |
|
|
detail.recommendPackingCode = l.packingCode; |
|
|
detail.recommendSupplierBatch = balanceItem.supplierBatch;; |
|
|
detail.recommendSupplierBatch = balanceItem.supplierBatch; |
|
|
detail.recommendArriveDate = balanceItem.arriveDate; |
|
|
detail.recommendArriveDate = balanceItem.arriveDate; |
|
|
detail.recommendProduceDate = balanceItem.produceDate; |
|
|
detail.recommendProduceDate = balanceItem.produceDate; |
|
|
detail.recommendExpireDate = balanceItem.expireDate; |
|
|
detail.recommendExpireDate = balanceItem.expireDate; |
|
|
detail.recommendLot = l.lot; |
|
|
detail.recommendLot = l.lot; |
|
|
detail.recommendToLocationCode = ""; |
|
|
detail.recommendToLocationCode = l.toLocationCode ?? that.defaultToLocation.code; |
|
|
detail.recommendToLocationArea = ""; |
|
|
detail.recommendToLocationArea = l.toLocationArea ?? that.defaultToLocation.areaCode; |
|
|
detail.recommendToLocationGroup = ""; |
|
|
detail.recommendToLocationGroup = l.toLocationGroup ?? that.defaultToLocation |
|
|
detail.recommendToLocationErpCode = ""; |
|
|
.locationGroupCode; |
|
|
|
|
|
detail.recommendToLocationErpCode = l.toLocationErpCode ?? that.defaultToLocation |
|
|
|
|
|
.erpLocationCode; |
|
|
detail.recommendToWarehouseCode = balanceItem.warehouseCode; |
|
|
detail.recommendToWarehouseCode = balanceItem.warehouseCode; |
|
|
detail.recommendQty = l.qty; |
|
|
detail.recommendQty = l.qty; |
|
|
detail.handledContainerCode = ""; |
|
|
detail.handledContainerCode = balanceItem.containerCode; |
|
|
detail.handledPackingCode = ""; |
|
|
detail.handledPackingCode = l.packingCode; |
|
|
detail.handledSupplierBatch = ""; |
|
|
detail.handledSupplierBatch = balanceItem.supplierBatch; |
|
|
detail.handledArriveDate = balanceItem.arriveDate; |
|
|
detail.handledArriveDate = balanceItem.arriveDate; |
|
|
detail.handledProduceDate = balanceItem.produceDate; |
|
|
detail.handledProduceDate = balanceItem.produceDate; |
|
|
detail.handledExpireDate = balanceItem.expireDate; |
|
|
detail.handledExpireDate = balanceItem.expireDate; |
|
|
detail.handledLot = ""; |
|
|
detail.handledLot = l.lot; |
|
|
detail.handledToLocationCode = ""; |
|
|
detail.handledToLocationCode = l.toLocationCode ?? that.defaultToLocation.code; |
|
|
detail.handledToLocationArea = ""; |
|
|
detail.handledToLocationArea = l.toLocationArea ?? that.defaultToLocation.areaCode; |
|
|
detail.handledToLocationGroup = ""; |
|
|
detail.handledToLocationGroup = l.toLocationGroup ?? that.defaultToLocation |
|
|
detail.handledToLocationErpCode = ""; |
|
|
.locationGroupCode; |
|
|
detail.handledToWarehouseCode = ""; |
|
|
detail.handledToLocationErpCode = l.toLocationErpCode ?? that.defaultToLocation |
|
|
|
|
|
.erpLocationCode; |
|
|
|
|
|
detail.handledToWarehouseCode = balanceItem.warehouseCode; |
|
|
detail.handledQty = l.qty; |
|
|
detail.handledQty = l.qty; |
|
|
item.details.push(detail); |
|
|
item.details.push(detail); |
|
|
}); |
|
|
}); |
|
|