yun-zuoyi
WYnneaoapc 5 years ago
commit 50f77a5081

@ -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
@XStreamCDATA
private String suitMessage;
/**

@ -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;
@Transient
@ApiParam(value = "条码状态(冻结时)", example = "1")
public Integer destSnStatus;
@Transient
@ApiParam("存储区编号组")
public String[] zoneNos;

@ -93,6 +93,11 @@ public class WmsCSOrderDetails extends BaseBean {
@AnnoOutputColumn(refClass = WmsEnumUtil.STOCK_SN_STATUS.class,refForeignKey = "value",value = "description")
public Integer snStatus;
@Column(name = "DEST_SN_STATUS")
@ApiParam(value = "条码状态(冻结时)", example = "1")
@AnnoOutputColumn(refClass = WmsEnumUtil.STOCK_SN_STATUS.class,refForeignKey = "value",value = "description")
public Integer destSnStatus;
/**
* :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;
@Transient
@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;
@Transient

Loading…
Cancel
Save