抄码商品拣货存入id
This commit is contained in:
+4
@@ -529,4 +529,8 @@ public class OutMaterialDetailPO extends StockOutOrderBaseDO {
|
||||
@ApiModelProperty("抄码总重量")
|
||||
@Excel(name = "抄码总重量")
|
||||
private BigDecimal copyTotalWeight;
|
||||
|
||||
@ApiModelProperty("抄码id数组 逗号分隔")
|
||||
@Excel(name = "抄码id数组")
|
||||
private String copyCodeReferenceIds;
|
||||
}
|
||||
+4
@@ -291,4 +291,8 @@ public class PickingMaterialDetailDO extends BaseVOEntity {
|
||||
@ApiModelProperty("贴标费")
|
||||
@Excel(name = "贴标费")
|
||||
private BigDecimal stickerFee;
|
||||
|
||||
@ApiModelProperty("抄码id数组 逗号分隔")
|
||||
@Excel(name = "抄码id数组")
|
||||
private String copyCodeReferenceIds;
|
||||
}
|
||||
+1
@@ -658,6 +658,7 @@ public class StockOutOrderDomainService {
|
||||
//判断是否是抄码商品净重
|
||||
if (outMaterialDetailPO.getCopyTotalWeight() != null){
|
||||
pickingMaterialDetailDO.setTotalNetWeight(outMaterialDetailPO.getCopyTotalWeight());
|
||||
pickingMaterialDetailDO.setCopyCodeReferenceIds(outMaterialDetailPO.getCopyCodeReferenceIds());
|
||||
}else {
|
||||
pickingMaterialDetailDO.setTotalNetWeight(outMaterialDetailPO.getTotalNetWeight());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user