[1211 天津麦格纳货运看板 ]

yun-zuoyi
Aisiyu 5 years ago
parent 3b5cd84e6e
commit 47f464b01d

@ -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;

Loading…
Cancel
Save