【VDA波次配料--物料汇总优化】

yun-zuoyi
曾贞一 5 years ago
parent 0493feaf80
commit 46bf93f410

@ -214,6 +214,14 @@ public class WmsDocMovementDetails extends BaseBean {
@ApiParam("优先级描述") @ApiParam("优先级描述")
private String priorityStr; private String priorityStr;
@Transient
@ApiParam(value = "汇总需求数量", example = "0")
public Double sumQty;
@Transient
@ApiParam(value = "汇总拣货数量", example = "0")
public Double sumPickQty;
public String getRecommondLot() { public String getRecommondLot() {
return recommondLot == null ? "无" : this.recommondLot; return recommondLot == null ? "无" : this.recommondLot;
} }
@ -276,7 +284,9 @@ public class WmsDocMovementDetails extends BaseBean {
this.destLocateNo = destLocateNo; this.destLocateNo = destLocateNo;
} }
public WmsDocMovementDetails (String partNo,Integer priority,String orderNo) { public WmsDocMovementDetails (Double sumQty,Double sumPickQty ,String partNo,Integer priority,String orderNo) {
this.sumQty = sumQty;
this.sumPickQty = sumPickQty;
this.partNo = partNo; this.partNo = partNo;
this.priority = priority; this.priority = priority;
this.orderNo = orderNo; this.orderNo = orderNo;

Loading…
Cancel
Save