|
|
@ -200,6 +200,54 @@ public class WmsMoveSn extends BaseBean {
|
|
|
|
@ApiParam("是否寄售 1-是 2-否")
|
|
|
|
@ApiParam("是否寄售 1-是 2-否")
|
|
|
|
private Integer consignation;
|
|
|
|
private Integer consignation;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
|
|
|
@ApiParam("收货物料编码")
|
|
|
|
|
|
|
|
public String rcPartNo;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
|
|
|
@ApiParam("发运物料编码")
|
|
|
|
|
|
|
|
public String outPartNo;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
|
|
|
@ApiParam("发运单据")
|
|
|
|
|
|
|
|
public String outRefSrc;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
|
|
|
@ApiParam("收货单据")
|
|
|
|
|
|
|
|
public String rcRefSrc;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
|
|
|
@ApiParam("发运条码")
|
|
|
|
|
|
|
|
public String outSn;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
|
|
|
@ApiParam("收货条码")
|
|
|
|
|
|
|
|
public String rcSn;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
|
|
|
@ApiParam("发运单位")
|
|
|
|
|
|
|
|
public String outUnit;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
|
|
|
@ApiParam("收货单位")
|
|
|
|
|
|
|
|
public String rcUnit;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
|
|
|
@ApiParam("发运数量")
|
|
|
|
|
|
|
|
public Double outQty;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
|
|
|
@ApiParam("收货数量")
|
|
|
|
|
|
|
|
public Double rcQty;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
|
|
|
@ApiParam("委外发运时间")
|
|
|
|
|
|
|
|
public String outDatetime;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
|
|
|
@ApiParam("委外收货时间")
|
|
|
|
|
|
|
|
public String rcDatetime;
|
|
|
|
|
|
|
|
|
|
|
|
public Integer getIsSnapshot() {
|
|
|
|
public Integer getIsSnapshot() {
|
|
|
|
return isSnapshot == null ? 0 : isSnapshot.intValue();
|
|
|
|
return isSnapshot == null ? 0 : isSnapshot.intValue();
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -281,4 +329,35 @@ public class WmsMoveSn extends BaseBean {
|
|
|
|
this.modifyDatetime = modifyDatetime;
|
|
|
|
this.modifyDatetime = modifyDatetime;
|
|
|
|
this.modifyUser = modifyUser;
|
|
|
|
this.modifyUser = modifyUser;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public WmsMoveSn(Long id,String organizeCode,String vendorNo,String rcPartNo,String outPartNo, Double destQty) {
|
|
|
|
|
|
|
|
this.id = id;
|
|
|
|
|
|
|
|
this.organizeCode = organizeCode;
|
|
|
|
|
|
|
|
this.vendorNo = vendorNo;
|
|
|
|
|
|
|
|
this.rcPartNo = rcPartNo;
|
|
|
|
|
|
|
|
this.outPartNo = outPartNo;
|
|
|
|
|
|
|
|
this.destQty = destQty;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public WmsMoveSn(Long id,String organizeCode,String outRefSrc,String rcRefSrc,String outSn,String rcSn,
|
|
|
|
|
|
|
|
String rcPartNo,String outPartNo,String outUnit,String rcUnit, Double outQty ,Double rcQty,
|
|
|
|
|
|
|
|
String outDatetime,String rcDatetime ,String vendorNo, String modifyUser,String modifyDatetime) {
|
|
|
|
|
|
|
|
this.id = id;
|
|
|
|
|
|
|
|
this.organizeCode = organizeCode;
|
|
|
|
|
|
|
|
this.outRefSrc = outRefSrc;
|
|
|
|
|
|
|
|
this.rcRefSrc = rcRefSrc;
|
|
|
|
|
|
|
|
this.outSn = outSn;
|
|
|
|
|
|
|
|
this.rcSn = rcSn;
|
|
|
|
|
|
|
|
this.outPartNo = outPartNo;
|
|
|
|
|
|
|
|
this.rcPartNo = rcPartNo;
|
|
|
|
|
|
|
|
this.outUnit = outUnit;
|
|
|
|
|
|
|
|
this.rcUnit = rcUnit;
|
|
|
|
|
|
|
|
this.outQty = outQty;
|
|
|
|
|
|
|
|
this.rcQty = rcQty;
|
|
|
|
|
|
|
|
this.outDatetime = outDatetime;
|
|
|
|
|
|
|
|
this.rcDatetime = rcDatetime;
|
|
|
|
|
|
|
|
this.vendorNo = vendorNo;
|
|
|
|
|
|
|
|
this.modifyUser = modifyUser;
|
|
|
|
|
|
|
|
this.modifyDatetime = modifyDatetime;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|