@ -925,8 +925,8 @@ public class WmsEnumUtil {
*/
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum TASK_INFO_STATUS {
CREATE(10, 10, "创建"), FINISH(20, 20, "处理中"),
FAIL(30, 30, "已处理"), CLOSE(40, 40, "已关闭");
CREATE(10, 10, "创建"), HANDLEING(20, 20, "处理中"),
FINISH(30, 30, "已处理"), CLOSE(40, 40, "已关闭");
private int value;
private int code;
@ -48,7 +48,9 @@ public class SuitClientModel {
/**
* 适配结果信息
@XStreamCDATA
private String suitMessage;
* 请求来源
@ -4,7 +4,6 @@ import cn.estsh.i3plus.pojo.base.annotation.XStreamCDATA;
import cn.estsh.i3plus.pojo.base.enumutil.ResourceEnumUtil;
import cn.estsh.i3plus.pojo.softswitch.bean.BsSuitRecord;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamImplicit;
import com.thoughtworks.xstream.annotations.XStreamOmitField;
import io.swagger.annotations.ApiParam;
import lombok.Data;
@ -44,6 +43,7 @@ public class SuitServerModel {
// @XStreamImplicit
@ -54,6 +54,9 @@ public class SessionUser implements Serializable {
@ApiParam("列表默认分页数量")
private Integer pageDefaultSize;
@ApiParam("文件展示地址")
private String fileViewUrl;
public SessionUser() {
}
@ -81,9 +81,10 @@ public class CoreHqlPack {
if(resource != null){
DdlPreparedPack.getNumEqualPack(resource.getResourceType(),"resourceType",result);
DdlPreparedPack.getNumEqualPack(resource.getSoftType(),"softType",result);
DdlPreparedPack.getNumEqualPack(resource.getIsSystem(),"isSystem",result);
DdlPreparedPack.getStringEqualPack(resource.getLanguageCode(),"languageCode",result);
DdlPreparedPack.getStringEqualPack(resource.getResourceKey(),"resourceKey",result);
DdlPreparedPack.getStringLikerPack(resource.getResourceKey(),"resourceKey",result);
DdlPreparedPack.getStringLikerPack(resource.getResourceValue(),"resourceValue",result);
@ -98,6 +98,19 @@ public class BsSuitRecord extends BaseBean {
@ApiParam(value = "适配结果")
private Integer suitResult;
@Column(name = "SUIT_START_DATE_TIME")
@ApiParam(value = "适配开始时间")
private String suitStartTime;
@Column(name = "SUIT_END_DATE_TIME")
@ApiParam(value = "适配结束时间")
private String suitEndTime;
@Column(name = "EXECUTE_TIME")
@ApiParam(value = "执行耗时")
@JsonSerialize(using = ToStringSerializer.class)
private Long executeTime;
@Lob
@Column(name = "SUIT_MESSAGE")
@ApiParam(value = "适配信息")
@ -119,6 +119,19 @@ public class WmsCSFactTrans extends BaseBean {
@ApiParam(value = "物料数量", example = "1")
public Double sumPartQty;
* 条码状态:1=创建,10=已收货,20=已质检,
* 30=已入库,40=待出库,50=已出库,
* 60=在途,70=已隔离,80=破包,90=冻结,100=作废
@Transient
@ApiParam(value = "条码状态", example = "1")
public Integer snStatus;
@ApiParam(value = "条码状态(冻结时)", example = "1")
public Integer destSnStatus;
@ApiParam("存储区编号组")
public String[] zoneNos;
@ -93,6 +93,11 @@ public class WmsCSOrderDetails extends BaseBean {
@AnnoOutputColumn(refClass = WmsEnumUtil.STOCK_SN_STATUS.class,refForeignKey = "value",value = "description")
@Column(name = "DEST_SN_STATUS")
* 处理状态:10=已创建,20=已盘,30=已冻结,40=已解冻,50=取消冻结
@ -205,6 +205,10 @@ public class WmsDocMovementDetails extends BaseBean {
@AnnoOutputColumn(refClass = WmsEnumUtil.PRINT_STATUS.class, refForeignKey = "value", value = "description")
private Integer printStatus;
@ApiParam("优先级")
private String priority;
public String getRecommondLot() {
return recommondLot == null ? "无" : this.recommondLot;
@ -53,8 +53,6 @@ public class WmsRouting extends BaseBean {
@Column(name = "FOR_PRODUCT")
@ApiParam(value = "适用产品")
private Integer forProduct;