|
|
|
@ -124,6 +124,18 @@ public class WmsMoveDetails extends BaseBean {
|
|
|
|
|
@Transient
|
|
|
|
|
private Long finishedCounts;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("交易类型")
|
|
|
|
|
private String transTypeCode;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("erp库存地")
|
|
|
|
|
private String ZoneNo;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("条码")
|
|
|
|
|
private String sn;
|
|
|
|
|
|
|
|
|
|
public WmsMoveDetails(){}
|
|
|
|
|
|
|
|
|
|
public WmsMoveDetails(String partNo, Long waitingCounts ,Long finishedCounts){
|
|
|
|
@ -148,4 +160,32 @@ public class WmsMoveDetails extends BaseBean {
|
|
|
|
|
public Long getFinishedCounts() {
|
|
|
|
|
return finishedCounts == null ? 0L : this.finishedCounts;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public WmsMoveDetails(String organizeCode,String orderNo,Integer item,String partNo,String partNameRdd,String transTypeCode,
|
|
|
|
|
Integer itemStatus,String unit,String srcWhNo,
|
|
|
|
|
String srcZoneNo,String srcLocateNo,String destWhNo, String destZoneNo, String destLocateNo,
|
|
|
|
|
Double transQty,Double rejectQty,String refSrc,String vendorNo, String custNo){
|
|
|
|
|
this.organizeCode = organizeCode;
|
|
|
|
|
this.partNo = partNo;
|
|
|
|
|
this.orderNo = orderNo;
|
|
|
|
|
this.item = item;
|
|
|
|
|
this.partNameRdd = partNameRdd;
|
|
|
|
|
this.transTypeCode = transTypeCode;
|
|
|
|
|
this.itemStatus = itemStatus;
|
|
|
|
|
this.unit = unit;
|
|
|
|
|
this.srcWhNo = srcWhNo;
|
|
|
|
|
this.srcZoneNo = srcZoneNo;
|
|
|
|
|
this.srcLocateNo = srcLocateNo;
|
|
|
|
|
this.destWhNo = destWhNo;
|
|
|
|
|
this.destZoneNo = destZoneNo;
|
|
|
|
|
this.destLocateNo = destLocateNo;
|
|
|
|
|
this.transQty = transQty;
|
|
|
|
|
this.rejectQty = rejectQty;
|
|
|
|
|
this.refSrc = refSrc;
|
|
|
|
|
this.vendorNo = vendorNo;
|
|
|
|
|
this.custNo = custNo;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|