任务#2625

yun-zuoyi
许心洁 5 years ago
parent 84f61e65fc
commit 4ec9858182

@ -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;
@ -197,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;
@ -220,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;
@ -237,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;
@ -272,7 +279,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;

Loading…
Cancel
Save