|
|
|
@ -358,6 +358,23 @@ public class WmsDocMovementMaster extends BaseBean {
|
|
|
|
|
@ApiParam("查询状态集合")
|
|
|
|
|
public List<Integer> orderStatusList;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("一个应拣数里面的料子")
|
|
|
|
|
public Double snp;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("实拣数")
|
|
|
|
|
public int pickQty;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("拣货状态")
|
|
|
|
|
public Integer pickOrderStatus;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("完成时间")
|
|
|
|
|
public String complateDatetime;
|
|
|
|
|
|
|
|
|
|
public int getOrderStatusVal() {
|
|
|
|
|
return this.orderStatus == null ? 0 : this.orderStatus;
|
|
|
|
|
}
|
|
|
|
@ -401,4 +418,16 @@ public class WmsDocMovementMaster extends BaseBean {
|
|
|
|
|
this.custOwner = custOwner;
|
|
|
|
|
this.custTel = custTel;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public WmsDocMovementMaster(String orderNo,String createDatetime,Double qty,Double snp,Integer orderStatus,String organizeCode,String createUser,String planDate,String planTime) {
|
|
|
|
|
this.orderNo = orderNo;
|
|
|
|
|
this.createDatetime = createDatetime;
|
|
|
|
|
this.qty = qty;
|
|
|
|
|
this.snp = snp;
|
|
|
|
|
this.orderStatus = orderStatus;
|
|
|
|
|
this.organizeCode = organizeCode;
|
|
|
|
|
this.createUser = createUser;
|
|
|
|
|
this.assignPlanDate = planDate;
|
|
|
|
|
this.assignPlanTime = planTime;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|