wms收货详情增加是否是抄码

This commit is contained in:
zhou-hongcheng
2026-04-27 09:33:18 +08:00
parent 14f981b7d1
commit 28996dd549
2 changed files with 9 additions and 0 deletions
@@ -53,6 +53,11 @@ public class RemoteOmsFeignFallbackFactory implements FallbackFactory<OmsService
public AjaxResult omsEdit(MaterialInventoryOmsParamDO materialInventoryOmsParamDO) {
return null;
}
@Override
public AjaxResult inventoryAdjustmentRecordInsert(InventoryAdjustmentRecord inventoryAdjustmentRecord) {
return null;
}
};
}
}
@@ -249,6 +249,10 @@ public class StockReceiptOrderApplicationService {
log.warn("获取物料基础信息失败,物料基础信息ID:{},错误:{}", materialBaseInfoId, e.getMessage());
}
}
for (ReceiptMaterialDetailPO receiptMaterialDetailPO : receiptMaterialDetailPOList) {
MaterialBaseInfoPO materialBaseInfoPO = materialBaseInfoMap.get(receiptMaterialDetailPO.getMaterialBaseInfoId());
receiptMaterialDetailPO.setCopyCode(materialBaseInfoPO.getCopyCode());
}
// 4.2 批量查询包装规格信息(单位代码为EA的单位名称)
Map<Long, PackDetailFeignPO> packDetailMap = new HashMap<>();