任务#2625

yun-zuoyi
许心洁 5 years ago
parent edb85b5ea6
commit 8de2359926

@ -90,9 +90,9 @@ public class WmsMoveMaster extends BaseBean {
private String partNo; private String partNo;
@Transient @Transient
@ApiParam("状态") @ApiParam("明细状态")
@AnnoOutputColumn(refClass = WmsEnumUtil.MOVE_ORDER_STATUS.class, refForeignKey = "value", value = "description") @AnnoOutputColumn(refClass = WmsEnumUtil.MOVE_ORDER_STATUS.class)
private Integer itemStatus; private String itemStatus;
@Transient @Transient
@ApiParam("erp库存地") @ApiParam("erp库存地")
@ -135,10 +135,14 @@ public class WmsMoveMaster extends BaseBean {
private String srcZoneNo; private String srcZoneNo;
@Transient @Transient
@ApiParam("处理数量") @ApiParam("需求数量")
private Double transQty; private Double transQty;
@Transient @Transient
@ApiParam("处理数量")
private Double handledQty;
@Transient
@ApiParam("不合格处理数量") @ApiParam("不合格处理数量")
private Double rejectQty; private Double rejectQty;
@ -163,6 +167,10 @@ public class WmsMoveMaster extends BaseBean {
private String snapshotTime; private String snapshotTime;
@Transient @Transient
@ApiParam("项目代码")
private String prodCfgTypeCode;
@Transient
private Integer isSnapshot; private Integer isSnapshot;
@Transient @Transient
@ -193,7 +201,7 @@ public class WmsMoveMaster extends BaseBean {
this.errorMessage = errorMessage; this.errorMessage = errorMessage;
this.busiTypeCode = busiTypeCode; this.busiTypeCode = busiTypeCode;
this.partNo = partNo; this.partNo = partNo;
this.itemStatus = itemStatus; this.itemStatus = itemStatus.toString();
this.refOrderNo = refOrderNo; this.refOrderNo = refOrderNo;
this.carNo = carNo; this.carNo = carNo;
this.refSrc = refSrc; this.refSrc = refSrc;
@ -216,7 +224,7 @@ public class WmsMoveMaster extends BaseBean {
this.partNameRdd = partNameRdd; this.partNameRdd = partNameRdd;
this.transTypeCode = transTypeCode; this.transTypeCode = transTypeCode;
this.transTypeName = transTypeName; this.transTypeName = transTypeName;
this.itemStatus = itemStatus; this.itemStatus = itemStatus.toString();
this.unit = unit; this.unit = unit;
this.srcWhNo = srcWhNo; this.srcWhNo = srcWhNo;
this.srcZoneNo = srcZoneNo; this.srcZoneNo = srcZoneNo;
@ -233,22 +241,25 @@ public class WmsMoveMaster extends BaseBean {
this.modifyDatetime = modifyDatetime; this.modifyDatetime = modifyDatetime;
} }
public WmsMoveMaster(String orderNo, String organizeCode, String partNo, String partNameRdd, String transTypeCode, String transTypeName, Integer itemStatus, public WmsMoveMaster(String orderNo, String organizeCode, String partNo, String partNameRdd, String transTypeCode,
String unit, String srcWhNo, String srcZoneNo, String destWhNo, String destZoneNo, Double transQty, Double rejectQty, String fixId, Integer busiTypeCode, String transTypeName, Integer itemStatus,String unit, String srcWhNo, String srcZoneNo,
String createDatetime, String createUser, String modifyUser, String modifyDatetime, String refSrc) { String destWhNo, String destZoneNo, Double transQty,Double handledQty,Double rejectQty,
String fixId, Integer busiTypeCode,String createDatetime, String createUser, String modifyUser,
String modifyDatetime, String refSrc) {
this.orderNo = orderNo; this.orderNo = orderNo;
this.organizeCode = organizeCode; this.organizeCode = organizeCode;
this.partNo = partNo; this.partNo = partNo;
this.partNameRdd = partNameRdd; this.partNameRdd = partNameRdd;
this.transTypeCode = transTypeCode; this.transTypeCode = transTypeCode;
this.transTypeName = transTypeName; this.transTypeName = transTypeName;
this.itemStatus = itemStatus; this.itemStatus = itemStatus.toString();
this.unit = unit; this.unit = unit;
this.srcWhNo = srcWhNo; this.srcWhNo = srcWhNo;
this.srcZoneNo = srcZoneNo; this.srcZoneNo = srcZoneNo;
this.destWhNo = destWhNo; this.destWhNo = destWhNo;
this.destZoneNo = destZoneNo; this.destZoneNo = destZoneNo;
this.transQty = transQty; this.transQty = transQty;
this.handledQty = handledQty;
this.rejectQty = rejectQty; this.rejectQty = rejectQty;
this.fixId = fixId; this.fixId = fixId;
this.busiTypeCode = busiTypeCode; this.busiTypeCode = busiTypeCode;
@ -259,6 +270,30 @@ public class WmsMoveMaster extends BaseBean {
this.refSrc = refSrc; this.refSrc = refSrc;
} }
public WmsMoveMaster(String orderNo, String organizeCode, String partNo, String partNameRdd, String transTypeCode, String transTypeName, Integer itemStatus,
String unit, String srcWhNo, String srcZoneNo, String destWhNo, String destZoneNo, Double transQty, Double rejectQty, String fixId, Integer busiTypeCode,
String createDatetime, String createUser, String modifyUser, String modifyDatetime) {
this.orderNo = orderNo;
this.organizeCode = organizeCode;
this.partNo = partNo;
this.partNameRdd = partNameRdd;
this.transTypeCode = transTypeCode;
this.transTypeName = transTypeName;
this.itemStatus = itemStatus.toString();
this.unit = unit;
this.srcWhNo = srcWhNo;
this.srcZoneNo = srcZoneNo;
this.destWhNo = destWhNo;
this.destZoneNo = destZoneNo;
this.transQty = transQty;
this.rejectQty = rejectQty;
this.fixId = fixId;
this.busiTypeCode = busiTypeCode;
this.createDatetime = createDatetime;
this.createUser = createUser;
this.modifyUser = modifyUser;
this.modifyDatetime = modifyDatetime;
}
public WmsMoveMaster(Long itemQty , String transTypeCode , Integer orderStatus){ public WmsMoveMaster(Long itemQty , String transTypeCode , Integer orderStatus){
this.itemQty = itemQty; this.itemQty = itemQty;
this.transTypeCode = transTypeCode; this.transTypeCode = transTypeCode;

Loading…
Cancel
Save