yun-zuoyi
WYnneaoapc 5 years ago
commit e206057aba

@ -990,6 +990,7 @@ public class WmsEnumUtil {
INSTOCKED(40, "入库"), INSTOCKED(40, "入库"),
PICKED(50, "配料"), PICKED(50, "配料"),
OUT_STOCK(60, "出库"), OUT_STOCK(60, "出库"),
SCRAP(70,"报废"),
COMMING(80, "在途"); COMMING(80, "在途");
private int value; private int value;
@ -4707,4 +4708,40 @@ public class WmsEnumUtil {
} }
} }
/**
*
* 10
*/
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum VENDOR_TYPE {
VENDOR(10, "供应商"), CARRIERS(20, "承运商");
private int value;
private String description;
VENDOR_TYPE(int value, String description) {
this.value = value;
this.description = description;
}
public int getValue() {
return value;
}
public String getDescription() {
return description;
}
public static String valueOfDescription(int val) {
String tmp = null;
for (int i = 0; i < values().length; i++) {
if (values()[i].value == val) {
tmp = values()[i].description;
}
}
return tmp;
}
}
} }

@ -0,0 +1,24 @@
package cn.estsh.i3plus.pojo.model.wms;
import cn.estsh.i3plus.pojo.wms.bean.WmsCSOrderMaster;
import io.swagger.annotations.ApiParam;
import lombok.Data;
import java.io.Serializable;
import java.util.List;
/**
*
* @author qianhs
*/
@Data
public class WmsCSOrderMasterModel implements Serializable {
private static final long serialVersionUID = -5490167040159056107L;
@ApiParam("盘点订单主表")
public List<WmsCSOrderMaster> wmsCSOrderMasterList;
@ApiParam("工厂代码")
public String organizeCode;
}

@ -0,0 +1,36 @@
package cn.estsh.i3plus.pojo.model.wms;
import io.swagger.annotations.ApiParam;
import lombok.Data;
import java.util.List;
import java.util.Map;
/**
* @Description : FIFO
* @Reference :
* @Author : jimmy.zeng
* @CreateDate : 2019-12-17 20:41
* @Modify:
**/
@Data
public class WmsStockFifoModel {
@ApiParam(value = "工厂代码")
String organizeCode;
@ApiParam(value = "物料集合")
List<String> partNos;
@ApiParam(value = "存储区集合")
List<String> zoneNos;
@ApiParam(value = "物料对应的存储区")
Map<String, String> partToZoneMap;
@ApiParam(value = "单据号")
String orderNo;
@ApiParam(value = "物料对应的存储区集合")
Map<String,List<String>> partToZonesMap;
}

@ -12,6 +12,7 @@ import org.hibernate.annotations.DynamicInsert;
import org.hibernate.annotations.DynamicUpdate; import org.hibernate.annotations.DynamicUpdate;
import javax.persistence.*; import javax.persistence.*;
import java.util.Objects;
/** /**
* @Description :() * @Description :()
@ -258,4 +259,17 @@ public class WmsDocMovementDetails extends BaseBean {
@Column(name = "IS_SN") @Column(name = "IS_SN")
@ApiParam(value = "条码生成状态", example = "20") @ApiParam(value = "条码生成状态", example = "20")
public Integer isSn; public Integer isSn;
public WmsDocMovementDetails () {
}
public WmsDocMovementDetails (String orderNo, String srcZoneNo, String destZoneNo, String destLocateNo) {
this.orderNo = orderNo;
this.srcZoneNo = srcZoneNo;
this.destZoneNo = destZoneNo;
this.destLocateNo = destLocateNo;
}
} }

@ -109,6 +109,10 @@ public class WmsTmsShippingExt extends BaseBean {
@ApiParam("关联单号") @ApiParam("关联单号")
private String refOrderNo; private String refOrderNo;
@Column(name="PATH_URL")
@ApiParam("回执单地址")
private String pathUrl;
@Transient @Transient
@ApiParam("打印模板列表") @ApiParam("打印模板列表")
private List<WmsTmsShipModel> shipModels; private List<WmsTmsShipModel> shipModels;

@ -23,4 +23,10 @@ public class WmsTmsShipModel {
private Double recQty; private Double recQty;
@ApiParam("单位") @ApiParam("单位")
private String unit; private String unit;
@ApiParam("序号")
private Integer item;
@ApiParam("装车时间")
private String modifyDatetime;
} }

Loading…
Cancel
Save