yun-zuoyi
wynne1005 5 years ago
commit aa450c10e4

@ -0,0 +1,9 @@
package cn.estsh.i3plus.pojo.mes.repository;
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
import cn.estsh.i3plus.pojo.mes.bean.IfPackage;
import org.springframework.stereotype.Repository;
@Repository
public interface IfPackageRepository extends BaseRepository<IfPackage, Long> {
}

@ -0,0 +1,16 @@
package cn.estsh.i3plus.pojo.mes.repository;
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
import cn.estsh.i3plus.pojo.mes.bean.MesDefectLocation;
import org.springframework.stereotype.Repository;
/**
* @Description:
* @Reference:
* @Author: dominic
* @CreateDate:2020-11-25 19:51:00
* @Modify:
**/
@Repository
public interface MesDefectLocationRepository extends BaseRepository<MesDefectLocation, Long> {
}

@ -3,9 +3,7 @@ package cn.estsh.i3plus.pojo.model.dynamic.table;
import lombok.Data; import lombok.Data;
import java.io.Serializable; import java.io.Serializable;
import java.util.ArrayList;
import java.util.HashMap; import java.util.HashMap;
import java.util.List;
import java.util.Map; import java.util.Map;
/** /**
@ -31,6 +29,9 @@ public class DynTableRow implements Serializable {
// 行Size // 行Size
private Integer cellSize = 0; private Integer cellSize = 0;
//时间
private String createDatetime;
// 行数据 // 行数据
private Map<String, DynTableCell> cellMap = new HashMap<>(); private Map<String, DynTableCell> cellMap = new HashMap<>();

@ -1,6 +1,7 @@
package cn.estsh.i3plus.pojo.sweb.bean; package cn.estsh.i3plus.pojo.sweb.bean;
import cn.estsh.i3plus.pojo.base.bean.BaseBean; import cn.estsh.i3plus.pojo.base.bean.BaseBean;
import cn.estsh.i3plus.pojo.base.enumutil.CommonEnumUtil;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
import io.swagger.annotations.ApiParam; import io.swagger.annotations.ApiParam;
@ -122,4 +123,8 @@ public class SwebPurchaseOrder extends BaseBean {
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@ApiParam(value = "预计到货时间 结束时间") @ApiParam(value = "预计到货时间 结束时间")
private String expectedTimeEnd; private String expectedTimeEnd;
@Column(name = "IS_SYNC", nullable = false)
@ApiParam("是否同步")
public Integer isSync = CommonEnumUtil.FALSE;
} }

@ -78,7 +78,7 @@ public class SwebPurchaseOrderDetails extends BaseBean {
@Column(name = "SNP_QTY") @Column(name = "SNP_QTY")
@ColumnDefault("0") @ColumnDefault("0")
@ApiParam(value = "默认包装规格", example = "0") @ApiParam(value = "包装数量", example = "0")
private Double snpQty; private Double snpQty;
@Column(name = "PRINT_QTY") @Column(name = "PRINT_QTY")

@ -385,6 +385,10 @@ public class WmsDocMovementDetails extends BaseBean {
@ApiParam(value = "实际发运时间") @ApiParam(value = "实际发运时间")
private String actualPlanTime; private String actualPlanTime;
@Transient
@ApiParam(value = "目的库位名称")
public String destLocateName;
public String getRecommondLot() { public String getRecommondLot() {
return recommondLot == null ? "无" : this.recommondLot; return recommondLot == null ? "无" : this.recommondLot;
@ -715,4 +719,12 @@ public WmsDocMovementDetails (String partNo,String orderNo) {
this.custNo = custNo; this.custNo = custNo;
} }
public WmsDocMovementDetails(String orderNo, String srcZoneNo, String destZoneNo, String destLocateNo, String locateName) {
this.orderNo = orderNo;
this.srcZoneNo = srcZoneNo;
this.destZoneNo = destZoneNo;
this.destLocateNo = destLocateNo;
this.destLocateName = locateName;
}
} }

@ -250,6 +250,9 @@ public class WmsPOMaster extends BaseBean {
@ApiParam(value = "延迟次数") @ApiParam(value = "延迟次数")
private Long sumDelayCount; private Long sumDelayCount;
@ApiParam(value = "延迟到货百分比")
private String delayPercent;
@ApiParam("计划交货时间") @ApiParam("计划交货时间")
private String planPlanDateTime; private String planPlanDateTime;

@ -62,6 +62,14 @@ public class WmsPickingWindowTime extends BaseBean {
private String shiftEndTime; private String shiftEndTime;
@Transient @Transient
@ApiParam("今日结束时间")
private String todayEndTime;
@Transient
@ApiParam("次日开始时间")
private String nextDayStartTime;
@Transient
@ApiParam("源存储区代码") @ApiParam("源存储区代码")
public String srcZoneNo; public String srcZoneNo;

@ -11,6 +11,7 @@ public class WmsInterfaceEnumUtil {
MES2WMS(30, "MES2WMS", "MES --> WMS"), MES2WMS(30, "MES2WMS", "MES --> WMS"),
WMS2MES(40, "WMS2MES", "WMS --> MES"), WMS2MES(40, "WMS2MES", "WMS --> MES"),
SWEB2WMS(50, "SWEB2WMS", "SWEB --> WMS"), SWEB2WMS(50, "SWEB2WMS", "SWEB --> WMS"),
SWEB2SAP(50, "SWEB2SAP", "SWEB --> SAP"),
WMS2SWEB(50, "WMS2SWEB", "WMS --> SWEB"), WMS2SWEB(50, "WMS2SWEB", "WMS --> SWEB"),
SAP2SWEB(50, "SAP2SWEB", "SAP --> SWEB"); SAP2SWEB(50, "SAP2SWEB", "SAP --> SWEB");
@ -61,6 +62,7 @@ public class WmsInterfaceEnumUtil {
/** /**
* -1 * -1
*
* @param desc * @param desc
* @return * @return
*/ */

@ -36,7 +36,7 @@ public class WmsVendorDelayMasterModel extends BaseBean {
private Long sumDelayCount; private Long sumDelayCount;
@ApiParam(value = "延迟到货百分比") @ApiParam(value = "延迟到货百分比")
private Double delayPercent; private String delayPercent;
@ApiParam(value = "查询开始时间") @ApiParam(value = "查询开始时间")
private String startDateTime; private String startDateTime;
@ -85,4 +85,5 @@ public class WmsVendorDelayMasterModel extends BaseBean {
public WmsVendorDelayMasterModel() { public WmsVendorDelayMasterModel() {
} }
} }

Loading…
Cancel
Save