|
|
@ -277,6 +277,14 @@ public class WmsDocMovementMaster extends BaseBean {
|
|
|
|
public String title;
|
|
|
|
public String title;
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
@Transient
|
|
|
|
|
|
|
|
@ApiParam(value = "生产小组")
|
|
|
|
|
|
|
|
private String productionGroup;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
|
|
|
@ApiParam(value = "父位置号")
|
|
|
|
|
|
|
|
private String seqNo;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
@ApiParam("物料编号组")
|
|
|
|
@ApiParam("物料编号组")
|
|
|
|
public String[] partNos;
|
|
|
|
public String[] partNos;
|
|
|
|
|
|
|
|
|
|
|
@ -284,6 +292,42 @@ public class WmsDocMovementMaster extends BaseBean {
|
|
|
|
@ApiParam("工厂集合")
|
|
|
|
@ApiParam("工厂集合")
|
|
|
|
private List<String> organizeCodeList;
|
|
|
|
private List<String> organizeCodeList;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
|
|
|
@ApiParam("物料名称")
|
|
|
|
|
|
|
|
public String partNameRdd;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
|
|
|
@ApiParam(value = "简称")
|
|
|
|
|
|
|
|
private String partSpec;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
|
|
|
@ApiParam(value = "工单码")
|
|
|
|
|
|
|
|
private String workOrderCode;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
|
|
|
@ApiParam(value = "需求数量", example = "0")
|
|
|
|
|
|
|
|
public Double qty;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
|
|
|
@ApiParam(value = "客户简称")
|
|
|
|
|
|
|
|
private String custName;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
|
|
|
@ApiParam(value = "客户全称")
|
|
|
|
|
|
|
|
private String custDesc;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
|
|
|
@ApiParam(value = "客户地址")
|
|
|
|
|
|
|
|
private String custAddr;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
|
|
|
@ApiParam(value = "联系人")
|
|
|
|
|
|
|
|
private String custOwner;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
|
|
|
@ApiParam(value = "电话号码")
|
|
|
|
|
|
|
|
private String custTel;
|
|
|
|
|
|
|
|
|
|
|
|
public int getOrderStatusVal() {
|
|
|
|
public int getOrderStatusVal() {
|
|
|
|
return this.orderStatus == null ? 0 : this.orderStatus;
|
|
|
|
return this.orderStatus == null ? 0 : this.orderStatus;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -299,4 +343,32 @@ public class WmsDocMovementMaster extends BaseBean {
|
|
|
|
|
|
|
|
|
|
|
|
public WmsDocMovementMaster() {
|
|
|
|
public WmsDocMovementMaster() {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public WmsDocMovementMaster(WmsDocMovementMaster wmsDocMovementMaster,String seqNo,String assignSrcZoneNo,String partNo,String partNameRdd,
|
|
|
|
|
|
|
|
String partSpec,String workOrderCode,Double qty,String productionGroup,Integer busiType,String modifyDatetime,
|
|
|
|
|
|
|
|
String custName,String custDesc,String custAddr,String custOwner,String custTel) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.id = wmsDocMovementMaster.getId();
|
|
|
|
|
|
|
|
this.orderNo = wmsDocMovementMaster.getOrderNo();
|
|
|
|
|
|
|
|
this.custNo = wmsDocMovementMaster.getCustNo();
|
|
|
|
|
|
|
|
this.organizeCode = wmsDocMovementMaster.getOrganizeCode();
|
|
|
|
|
|
|
|
this.orderStatus = wmsDocMovementMaster.getOrderStatus();
|
|
|
|
|
|
|
|
this.vendorNo = wmsDocMovementMaster.getVendorNo();
|
|
|
|
|
|
|
|
this.erpSrcNo = wmsDocMovementMaster.getErpSrcNo();
|
|
|
|
|
|
|
|
this.seqNo = seqNo;
|
|
|
|
|
|
|
|
this.assignSrcZoneNo = assignSrcZoneNo;
|
|
|
|
|
|
|
|
this.partNo = partNo;
|
|
|
|
|
|
|
|
this.partNameRdd = partNameRdd;
|
|
|
|
|
|
|
|
this.partSpec = partSpec;
|
|
|
|
|
|
|
|
this.workOrderCode = workOrderCode;
|
|
|
|
|
|
|
|
this.qty = qty;
|
|
|
|
|
|
|
|
this.productionGroup = productionGroup;
|
|
|
|
|
|
|
|
this.busiType = busiType;
|
|
|
|
|
|
|
|
this.modifyDatetime = modifyDatetime;
|
|
|
|
|
|
|
|
// this.color = color;
|
|
|
|
|
|
|
|
this.custName = custName;
|
|
|
|
|
|
|
|
this.custDesc = custDesc;
|
|
|
|
|
|
|
|
this.custAddr = custAddr;
|
|
|
|
|
|
|
|
this.custOwner = custOwner;
|
|
|
|
|
|
|
|
this.custTel = custTel;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|