PDA复核数量更改
This commit is contained in:
+1
@@ -226,6 +226,7 @@ public class ReviewOrderDomainService {
|
||||
if (pending == null) {
|
||||
pending = BigDecimal.ZERO;
|
||||
}
|
||||
d.setMaterialPlanQty(pending);
|
||||
d.setPendingReviewQty(pending);
|
||||
d.setReviewedQty(BigDecimal.ZERO);
|
||||
d.setCancelQty(BigDecimal.ZERO);
|
||||
|
||||
@@ -52,6 +52,9 @@ public class ReviewMaterialDetail extends BaseVOEntity {
|
||||
|
||||
private BigDecimal cancelQty;
|
||||
|
||||
@ApiModelProperty("物料计划数量(拣货明细实际拣货数量快照,复核过程不修改)")
|
||||
private BigDecimal materialPlanQty;
|
||||
|
||||
private String receiptOrderNumber;
|
||||
|
||||
private String lotNo;
|
||||
|
||||
+3
@@ -64,6 +64,9 @@ public class ReviewMaterialDetailPO extends BaseVOEntity {
|
||||
@ApiModelProperty("取消复核数量")
|
||||
private BigDecimal cancelQty;
|
||||
|
||||
@ApiModelProperty("物料计划数量(拣货实际拣货数量,生成复核明细时落库)")
|
||||
private BigDecimal materialPlanQty;
|
||||
|
||||
@ApiModelProperty("入库单号")
|
||||
private String receiptOrderNumber;
|
||||
|
||||
|
||||
@@ -7,6 +7,7 @@ import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
@@ -84,6 +85,15 @@ public class ReviewOrderPO extends BaseVOEntity {
|
||||
@ApiModelProperty("备注")
|
||||
private String remark;
|
||||
|
||||
@ApiModelProperty("物料种类(明细中不重复的物料基础信息数量)")
|
||||
private Integer materialKindCount;
|
||||
|
||||
@ApiModelProperty("物料总数量(各明细计划数量合计,计划量=待复核+已复核,来源于拣货数量)")
|
||||
private BigDecimal totalPlanQty;
|
||||
|
||||
@ApiModelProperty("复核总数量(各明细已复核数量合计)")
|
||||
private BigDecimal totalReviewedQty;
|
||||
|
||||
/** 详情与上架单一致:头字段扁平 + 明细列表 */
|
||||
@ApiModelProperty("复核明细")
|
||||
private List<ReviewMaterialDetailPO> materialDetailList;
|
||||
|
||||
Reference in New Issue
Block a user