update 优化生产计划添加

master
yinq 1 month ago
parent 96fa1e49eb
commit f491c5491a

@ -115,7 +115,7 @@ public class ProdPlanInfo extends TenantEntity {
private Long completeAmount; private Long completeAmount;
/** /**
* *
*/ */
private Date planBeginTime; private Date planBeginTime;
@ -140,7 +140,7 @@ public class ProdPlanInfo extends TenantEntity {
private String attachId; private String attachId;
/** /**
* 0 1 2 3 * 0 1 2 3
*/ */
private String planStatus; private String planStatus;

@ -120,7 +120,7 @@ public class ProdPlanInfoBo extends BaseEntity {
private Long completeAmount; private Long completeAmount;
/** /**
* *
*/ */
private Date planBeginTime; private Date planBeginTime;
@ -145,7 +145,7 @@ public class ProdPlanInfoBo extends BaseEntity {
private String attachId; private String attachId;
/** /**
* 0 1 2 3 * 0 1 2 3
*/ */
private String planStatus; private String planStatus;

@ -143,9 +143,9 @@ public class ProdPlanInfoVo implements Serializable {
private Long completeAmount; private Long completeAmount;
/** /**
* *
*/ */
@ExcelProperty(value = "计划开始时间") @ExcelProperty(value = "计划时间")
private Date planBeginTime; private Date planBeginTime;
/** /**
@ -173,7 +173,7 @@ public class ProdPlanInfoVo implements Serializable {
private String attachId; private String attachId;
/** /**
* 0 1 2 3 * 0 1 2 3
*/ */
@ExcelProperty(value = "工单计划状态", converter = ExcelDictConvert.class) @ExcelProperty(value = "工单计划状态", converter = ExcelDictConvert.class)
@ExcelDictFormat(dictType = "mes_plan_status") @ExcelDictFormat(dictType = "mes_plan_status")

@ -79,7 +79,7 @@ public class ProdBaseMachineInfoServiceImpl implements IProdBaseMachineInfoServi
.leftJoin(ProdBaseStationInfo.class, ProdBaseStationInfo::getMachineId, ProdBaseMachineInfo::getMachineId) .leftJoin(ProdBaseStationInfo.class, ProdBaseStationInfo::getMachineId, ProdBaseMachineInfo::getMachineId)
.leftJoin(ProdBaseProcessInfo.class, ProdBaseProcessInfo::getProcessId, ProdBaseStationInfo::getProcessId) .leftJoin(ProdBaseProcessInfo.class, ProdBaseProcessInfo::getProcessId, ProdBaseStationInfo::getProcessId)
.eq(bo.getMachineId() != null, ProdBaseMachineInfo::getMachineId, bo.getMachineId()) .eq(bo.getMachineId() != null, ProdBaseMachineInfo::getMachineId, bo.getMachineId())
.eq(StringUtils.isNotBlank(bo.getMachineCode()), ProdBaseMachineInfo::getMachineCode, bo.getMachineCode()) .like(StringUtils.isNotBlank(bo.getMachineCode()), ProdBaseMachineInfo::getMachineCode, bo.getMachineCode())
.like(StringUtils.isNotBlank(bo.getMachineName()), ProdBaseMachineInfo::getMachineName, bo.getMachineName()) .like(StringUtils.isNotBlank(bo.getMachineName()), ProdBaseMachineInfo::getMachineName, bo.getMachineName())
.eq(StringUtils.isNotBlank(bo.getAssetNumber()), ProdBaseMachineInfo::getAssetNumber, bo.getAssetNumber()) .eq(StringUtils.isNotBlank(bo.getAssetNumber()), ProdBaseMachineInfo::getAssetNumber, bo.getAssetNumber())
.eq(StringUtils.isNotBlank(bo.getMachineLocation()), ProdBaseMachineInfo::getMachineLocation, bo.getMachineLocation()) .eq(StringUtils.isNotBlank(bo.getMachineLocation()), ProdBaseMachineInfo::getMachineLocation, bo.getMachineLocation())

Loading…
Cancel
Save