|
|
|
@ -107,6 +107,14 @@ public class WmsDocMovementDetails extends BaseBean {
|
|
|
|
|
@ApiParam(value = "超时时间(单位:分钟)")
|
|
|
|
|
private Integer timeOut;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "窗口时间")
|
|
|
|
|
private Integer windowTime;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "紧急程度")
|
|
|
|
|
private String urgentStatus;
|
|
|
|
|
|
|
|
|
|
@Column(name = "SRC_NO")
|
|
|
|
|
@ApiParam(value = "源单号")
|
|
|
|
|
private String srcNo;
|
|
|
|
@ -123,6 +131,14 @@ public class WmsDocMovementDetails extends BaseBean {
|
|
|
|
|
@ApiParam(value = "完成状态")
|
|
|
|
|
public Integer orderStatus;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "客户名称")
|
|
|
|
|
public String custName;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "道口")
|
|
|
|
|
public String dock;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 已创建,已收货,已发运,已拣货
|
|
|
|
|
*/
|
|
|
|
@ -134,6 +150,10 @@ public class WmsDocMovementDetails extends BaseBean {
|
|
|
|
|
@ApiParam(value = "ERP单号")
|
|
|
|
|
private String erpSrcNo;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "完成数百分比")
|
|
|
|
|
private String number;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 是否免费:0=计费,1=免费
|
|
|
|
|
*/
|
|
|
|
@ -285,6 +305,10 @@ public class WmsDocMovementDetails extends BaseBean {
|
|
|
|
|
@ApiParam("生产日期")
|
|
|
|
|
public String dateCode;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("生产线")
|
|
|
|
|
public String line;
|
|
|
|
|
|
|
|
|
|
@ApiParam(value = "散件移库输入移库数量")
|
|
|
|
|
@Transient
|
|
|
|
|
public Double inputMoveQty;
|
|
|
|
@ -420,8 +444,27 @@ public class WmsDocMovementDetails extends BaseBean {
|
|
|
|
|
@ApiParam("窗口领料结束时间")
|
|
|
|
|
private String windowPickEndTime;
|
|
|
|
|
|
|
|
|
|
public WmsDocMovementDetails () {
|
|
|
|
|
public WmsDocMovementDetails (String custNo,String planDate,String planTime,String orderNo,String projectNo,String partNo ,Double qty,Double pickQty,
|
|
|
|
|
Double recQty,Double outQty,Integer itemStatus) {
|
|
|
|
|
this.custNo = custNo;
|
|
|
|
|
this.orderNo = orderNo;
|
|
|
|
|
this.planDate = planDate;
|
|
|
|
|
this.planTime = planTime;
|
|
|
|
|
this.qty = qty;
|
|
|
|
|
this.pickQty = pickQty;
|
|
|
|
|
this.recQty= recQty;
|
|
|
|
|
this.outQty = outQty;
|
|
|
|
|
this.itemStatus = itemStatus;
|
|
|
|
|
this.projectNo = projectNo;
|
|
|
|
|
this.partNo=partNo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public WmsDocMovementDetails (String createDatetime, String srcLocateNo, String destLocateNo, String createUser,Integer itemStatus) {
|
|
|
|
|
this.createDatetime = createDatetime;
|
|
|
|
|
this.srcLocateNo = srcLocateNo;
|
|
|
|
|
this.destLocateNo = destLocateNo;
|
|
|
|
|
this.createUser = createUser;
|
|
|
|
|
this.itemStatus= itemStatus;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public WmsDocMovementDetails (String orderNo, String srcZoneNo, String destZoneNo, String destLocateNo) {
|
|
|
|
@ -485,6 +528,11 @@ public WmsDocMovementDetails (String partNo,String orderNo) {
|
|
|
|
|
this.custNo = custNo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public WmsDocMovementDetails(){
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public WmsDocMovementDetails (String orderNo, String srcZoneNo, String destZoneNo, String destLocateNo,Integer priority,String createDatetime) {
|
|
|
|
|
this.orderNo = orderNo;
|
|
|
|
|
this.srcZoneNo = srcZoneNo;
|
|
|
|
|