|
|
|
@ -1,11 +1,14 @@
|
|
|
|
|
package cn.estsh.i3plus.pojo.model.wms;
|
|
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.enumutil.WmsEnumUtil;
|
|
|
|
|
import cn.estsh.i3plus.pojo.wms.bean.WmsASNMaster;
|
|
|
|
|
import cn.estsh.i3plus.pojo.wms.bean.WmsDocMovementMaster;
|
|
|
|
|
import cn.estsh.i3plus.pojo.wms.bean.WmsPOMaster;
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
import javax.persistence.Transient;
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -37,6 +40,35 @@ public class PrintOrderDataModel implements Serializable {
|
|
|
|
|
@ApiParam(value = "移库单主表")
|
|
|
|
|
public WmsDocMovementMaster movementMaster;
|
|
|
|
|
|
|
|
|
|
@ApiParam(value = "状态")
|
|
|
|
|
@Transient
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.MASTER_ORDER_STATUS.class, refForeignKey = "value", value = "description")
|
|
|
|
|
public Integer orderStatus;
|
|
|
|
|
|
|
|
|
|
@ApiParam(value = "供应商名称")
|
|
|
|
|
@Transient
|
|
|
|
|
public String vendorName;
|
|
|
|
|
|
|
|
|
|
@ApiParam(value = "供应商编码")
|
|
|
|
|
@Transient
|
|
|
|
|
public String vendorNo;
|
|
|
|
|
|
|
|
|
|
@ApiParam(value = "客户编码")
|
|
|
|
|
@Transient
|
|
|
|
|
public String custNo;
|
|
|
|
|
|
|
|
|
|
@ApiParam(value = "ERP编号")
|
|
|
|
|
@Transient
|
|
|
|
|
public String erpSrcNo;
|
|
|
|
|
|
|
|
|
|
@ApiParam(value = "联系人")
|
|
|
|
|
@Transient
|
|
|
|
|
public String vendorOwner;
|
|
|
|
|
|
|
|
|
|
@ApiParam(value = "供应商邮箱")
|
|
|
|
|
@Transient
|
|
|
|
|
public String vendorEmail;
|
|
|
|
|
|
|
|
|
|
public int getBusiDataType() {
|
|
|
|
|
if (busiDataType != null) {
|
|
|
|
|
return busiDataType.intValue();
|
|
|
|
|