diff --git a/common/src/main/java/com/foreverwin/mesnac/common/controller/CustomReportConfigController.java b/common/src/main/java/com/foreverwin/mesnac/common/controller/CustomReportConfigController.java new file mode 100644 index 00000000..1fb0ee08 --- /dev/null +++ b/common/src/main/java/com/foreverwin/mesnac/common/controller/CustomReportConfigController.java @@ -0,0 +1,89 @@ +package com.foreverwin.mesnac.common.controller; + + +import com.foreverwin.mesnac.common.model.CustomReport; +import com.foreverwin.mesnac.common.model.CustomReportConfig; +import com.foreverwin.mesnac.common.service.CustomReportConfigInterface; +import com.foreverwin.modular.core.util.CommonMethods; +import com.foreverwin.modular.core.util.R; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.*; + +import java.util.List; + +/** + * + * @Title: CustomReportConfigController.java + * @Package com.knsdev.webapi.ws + * @Description: 自定义报表配置 Controller + * @author: Andy + * @date: 2020年10月13日 下午4:18:54 + * @version V1.0 + * + * @History 操作记录 + * 2020年10月13日 下午4:18:54 Andy add + * + * 相关联的FDS + * ME-111-自定义报表配置 + */ + +@RestController +@RequestMapping("/customReportConfig") +public class CustomReportConfigController { + + @Autowired + private CustomReportConfigInterface configAPI; + + + //报表作业编号弹出框 + @ResponseBody + @GetMapping("/rptiddialog/{site}") + public R rptIDDialogMethod(@PathVariable("site") String site) + { + try{ + List rptIDList = configAPI.GetReportIDList(site); + return R.ok(rptIDList); + } catch (Exception ex) { + return R.failed(ex.getMessage()); + } + } + + //查询 + @ResponseBody + @GetMapping("/query/{reportid}") + public R queryMethod(@PathVariable("reportid") String reportid) + { + try{ + CustomReportConfig config = configAPI.Query(reportid); + return R.ok(config); + } catch (Exception ex) { + return R.failed(ex.getMessage()); + } + } + + //保存 + @ResponseBody + @PostMapping("/") + public R saveMethod(@RequestBody CustomReportConfig config) + { + try{ + configAPI.Save(config); + return R.ok("Success"); + } catch (Exception ex) { + return R.failed(ex.getMessage()); + } + } + + //删除 + @ResponseBody + @GetMapping("/del//{site}/{reportid}") + public R deleteMethod(@PathVariable("site") String site, @PathVariable("reportid") String reportid) + { + try{ + configAPI.Delete(site, reportid); + return R.ok("Success"); + } catch (Exception ex) { + return R.failed(ex.getMessage()); + } + } +} diff --git a/common/src/main/java/com/foreverwin/mesnac/common/controller/CustomReportController.java b/common/src/main/java/com/foreverwin/mesnac/common/controller/CustomReportController.java new file mode 100644 index 00000000..7fc40720 --- /dev/null +++ b/common/src/main/java/com/foreverwin/mesnac/common/controller/CustomReportController.java @@ -0,0 +1,64 @@ +package com.foreverwin.mesnac.common.controller; + + +import com.foreverwin.mesnac.common.model.CustomReportConfig; +import com.foreverwin.mesnac.common.service.CustomReportInterface; +import com.foreverwin.modular.core.util.R; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.*; + +import java.util.List; +import java.util.Map; + +/** + * + * @Title: CustomReportController.java + * @Package com.knsdev.webapi.ws + * @Description: 自定义报表 controller + * @author: Andy + * @date: 2020年10月15日 下午1:16:55 + * @version V1.0 + * + * @History 操作记录 + * 2020年10月15日 下午1:16:55 Andy add + * + * 相关FDS + * MD-ME-112-自定义报表 + * + */ + +@RestController + @RequestMapping("/customReport") +public class CustomReportController { + + @Autowired + private CustomReportInterface reportAPI; + + //页面载入 + @ResponseBody + @GetMapping("/load/{site}/{reportid}") + public R loadMethod(@PathVariable("site") String site, @PathVariable("reportid") String reportid) + { + try{ + CustomReportConfig config = reportAPI.Load(site, reportid); + return R.ok(config); + } catch (Exception ex) { + return R.failed(ex.getMessage()); + } + } + + //查询 + @ResponseBody + @PostMapping("/") + public R queryMethod(@RequestBody String condition) + { + try{ + List> res=reportAPI.Query(condition); + return R.ok(res); + } catch (Exception ex) { + return R.failed(ex.getMessage()); + } + } + + +} \ No newline at end of file diff --git a/common/src/main/java/com/foreverwin/mesnac/common/mapper/CustomReportConfigMapper.java b/common/src/main/java/com/foreverwin/mesnac/common/mapper/CustomReportConfigMapper.java new file mode 100644 index 00000000..c4eed4f5 --- /dev/null +++ b/common/src/main/java/com/foreverwin/mesnac/common/mapper/CustomReportConfigMapper.java @@ -0,0 +1,40 @@ +package com.foreverwin.mesnac.common.mapper; + +import com.foreverwin.mesnac.common.model.CustomReportMainmodel; +import com.foreverwin.mesnac.common.model.CustomReportSearchConditionConfig; +import com.foreverwin.mesnac.common.model.CustomReportSearchConditionDynSQLConfig; +import com.foreverwin.mesnac.common.model.CustomReportSearchResultColumnConfig; +import org.apache.ibatis.annotations.Param; +import org.springframework.stereotype.Repository; + +import java.util.List; + +@Repository +public interface CustomReportConfigMapper { + + List selectReportIdDialog(String site); + + List selectMain(@Param("site") String site, @Param("reportId") String reportId); + + List selectSearchConditionConfig(String mainhandle); + + List selectDynSqlConfig(String mainhandle); + + List selectResultColumnConfig(String mainhandle); + + int deleteDynSqlConfig(String mainhandle); + + int deleteResultColumnConfig(String mainhandle); + + int deleteSearchConditionConfig(String mainhandle); + + int deleteMainmodel(String mainhandle); + + int insertDynSqlConfig(CustomReportSearchConditionDynSQLConfig customReportSearchConditionDynSQLConfig); + + int insertResultColumnConfig(CustomReportSearchResultColumnConfig customReportSearchResultColumnConfig); + + int insertSearchConditionConfig(CustomReportSearchConditionConfig customReportSearchConditionConfig); + + int insertInsertMainmodel(CustomReportMainmodel customReportMainmodel); +} diff --git a/common/src/main/java/com/foreverwin/mesnac/common/mapper/CustomReportMapper.java b/common/src/main/java/com/foreverwin/mesnac/common/mapper/CustomReportMapper.java new file mode 100644 index 00000000..cb9341b2 --- /dev/null +++ b/common/src/main/java/com/foreverwin/mesnac/common/mapper/CustomReportMapper.java @@ -0,0 +1,17 @@ +package com.foreverwin.mesnac.common.mapper; + +import com.foreverwin.mesnac.common.model.CustomReportMainmodel; +import org.apache.ibatis.annotations.Param; +import org.springframework.stereotype.Repository; + +import java.util.List; +import java.util.Map; + +@Repository +public interface CustomReportMapper { + + + List> executeSqlQuery(@Param("sql") String sql); + + List selectQuerySentence(@Param("site") String site, @Param("reportId") String reportId); +} diff --git a/common/src/main/java/com/foreverwin/mesnac/common/model/CustomReport.java b/common/src/main/java/com/foreverwin/mesnac/common/model/CustomReport.java new file mode 100644 index 00000000..9a02f0fb --- /dev/null +++ b/common/src/main/java/com/foreverwin/mesnac/common/model/CustomReport.java @@ -0,0 +1,47 @@ +package com.foreverwin.mesnac.common.model; + +/** + * + * @Title: CustomReport.java + * @Package com.knsdev.service.domain + * @Description: 自定义报表 基类 + * @author: Andy + * @date: 2020年10月15日 下午2:29:25 + * @version V1.0 + * + * @History 操作记录 + * 2020年10月15日 下午2:29:25 Andy add + * + */ +public class CustomReport { + + private String site; + private String reportID; + private String reportDESC; + private String conditionString; + + public String getSite() { + return site; + } + public void setSite(String site) { + this.site = site; + } + public String getReportID() { + return reportID; + } + public void setReportID(String reportID) { + this.reportID = reportID; + } + public String getConditionString() { + return conditionString; + } + public void setConditionString(String conditionString) { + this.conditionString = conditionString; + } + public String getReportDESC() { + return reportDESC; + } + public void setReportDESC(String reportDESC) { + this.reportDESC = reportDESC; + } +} diff --git a/common/src/main/java/com/foreverwin/mesnac/common/model/CustomReportConfig.java b/common/src/main/java/com/foreverwin/mesnac/common/model/CustomReportConfig.java new file mode 100644 index 00000000..ded5ca8c --- /dev/null +++ b/common/src/main/java/com/foreverwin/mesnac/common/model/CustomReportConfig.java @@ -0,0 +1,165 @@ +package com.foreverwin.mesnac.common.model; + +import java.util.List; + +/** + * + * @Title: CustomReport.java + * @Package com.knsdev.service.domain + * @Description: 自定义报表配置 基类 + * @author: Andy + * @date: 2020年10月13日 下午3:33:42 + * @version V1.0 + * + * @History 操作记录 + * 2020年10月13日 下午3:33:42 Andy add + * + * 相关联的FDS + * ME-111-自定义报表配置 + */ +public class CustomReportConfig { + + private String handle; + private String site; + private String reportID; + private String reportTitle; + private String reportDESC; + + //检索语句配置 + private String conditionSQLConfig; + private String displayType; + private String timeRefresh; + private String backgroundColor; + private String fontColor; + private String pageSize; + private String user; + + //自定义报表_检索条件配置 数据 + private List searchConditionConfigList; + + //自定义报表_检索条件动态SQL配置 数据 + private List searchConditionDynSQLConfigList; + + //自定义报表_检索结果列配置 + private List searchResultColumnList; + + public String getHandle() { + return handle; + } + + public void setHandle(String handle) { + this.handle = handle; + } + + public String getSite() { + return site; + } + + public void setSite(String site) { + this.site = site; + } + + public String getReportID() { + return reportID; + } + + public void setReportID(String reportID) { + this.reportID = reportID; + } + + public String getReportTitle() { + return reportTitle; + } + + public void setReportTitle(String reportTitle) { + this.reportTitle = reportTitle; + } + + public String getReportDESC() { + return reportDESC; + } + + public void setReportDESC(String reportDESC) { + this.reportDESC = reportDESC; + } + + public String getConditionSQLConfig() { + return conditionSQLConfig; + } + + public void setConditionSQLConfig(String conditionSQLConfig) { + this.conditionSQLConfig = conditionSQLConfig; + } + + public String getDisplayType() { + return displayType; + } + + public void setDisplayType(String displayType) { + this.displayType = displayType; + } + + public String getTimeRefresh() { + return timeRefresh; + } + + public void setTimeRefresh(String timeRefresh) { + this.timeRefresh = timeRefresh; + } + + public String getBackgroundColor() { + return backgroundColor; + } + + public void setBackgroundColor(String backgroundColor) { + this.backgroundColor = backgroundColor; + } + + public String getFontColor() { + return fontColor; + } + + public void setFontColor(String fontColor) { + this.fontColor = fontColor; + } + + public String getPageSize() { + return pageSize; + } + + public void setPageSize(String pageSize) { + this.pageSize = pageSize; + } + + public String getUser() { + return user; + } + + public void setUser(String user) { + this.user = user; + } + + public List getSearchConditionConfigList() { + return searchConditionConfigList; + } + + public void setSearchConditionConfigList(List searchConditionConfigList) { + this.searchConditionConfigList = searchConditionConfigList; + } + + public List getSearchConditionDynSQLConfigList() { + return searchConditionDynSQLConfigList; + } + + public void setSearchConditionDynSQLConfigList(List searchConditionDynSQLConfigList) { + this.searchConditionDynSQLConfigList = searchConditionDynSQLConfigList; + } + + public List getSearchResultColumnList() { + return searchResultColumnList; + } + + public void setSearchResultColumnList(List searchResultColumnList) { + this.searchResultColumnList = searchResultColumnList; + } +} diff --git a/common/src/main/java/com/foreverwin/mesnac/common/model/CustomReportMainmodel.java b/common/src/main/java/com/foreverwin/mesnac/common/model/CustomReportMainmodel.java new file mode 100644 index 00000000..879327e8 --- /dev/null +++ b/common/src/main/java/com/foreverwin/mesnac/common/model/CustomReportMainmodel.java @@ -0,0 +1,146 @@ +package com.foreverwin.mesnac.common.model; + +import java.time.LocalDateTime; + +/** + *

+ * + *

+ * + * @author Max + * @since 2021-07-09 + */ +public class CustomReportMainmodel { + + private static final long serialVersionUID = 1L; + private String handle; + + private String site; + + private String reportId; + + private String reportTitle; + + private String reportDesc; + + private String conditionSqlConfig; + + private String displayType; + + private Integer timeRefresh; + + private String backgroundColor; + + private String fontColor; + + private Integer pageSize; + + private LocalDateTime modifyDateTime; + + private String modifyUser; + + + public String getHandle() { + return handle; + } + + public void setHandle(String handle) { + this.handle = handle; + } + + public String getSite() { + return site; + } + + public void setSite(String site) { + this.site = site; + } + + public String getReportId() { + return reportId; + } + + public void setReportId(String reportId) { + this.reportId = reportId; + } + + public String getReportTitle() { + return reportTitle; + } + + public void setReportTitle(String reportTitle) { + this.reportTitle = reportTitle; + } + + public String getReportDesc() { + return reportDesc; + } + + public void setReportDesc(String reportDesc) { + this.reportDesc = reportDesc; + } + + public String getConditionSqlConfig() { + return conditionSqlConfig; + } + + public void setConditionSqlConfig(String conditionSqlConfig) { + this.conditionSqlConfig = conditionSqlConfig; + } + + public String getDisplayType() { + return displayType; + } + + public void setDisplayType(String displayType) { + this.displayType = displayType; + } + + public Integer getTimeRefresh() { + return timeRefresh; + } + + public void setTimeRefresh(Integer timeRefresh) { + this.timeRefresh = timeRefresh; + } + + public String getBackgroundColor() { + return backgroundColor; + } + + public void setBackgroundColor(String backgroundColor) { + this.backgroundColor = backgroundColor; + } + + public String getFontColor() { + return fontColor; + } + + public void setFontColor(String fontColor) { + this.fontColor = fontColor; + } + + public Integer getPageSize() { + return pageSize; + } + + public void setPageSize(Integer pageSize) { + this.pageSize = pageSize; + } + + public LocalDateTime getModifyDateTime() { + return modifyDateTime; + } + + public void setModifyDateTime(LocalDateTime modifyDateTime) { + this.modifyDateTime = modifyDateTime; + } + + public String getModifyUser() { + return modifyUser; + } + + public void setModifyUser(String modifyUser) { + this.modifyUser = modifyUser; + } +} \ No newline at end of file diff --git a/common/src/main/java/com/foreverwin/mesnac/common/model/CustomReportSearchConditionConfig.java b/common/src/main/java/com/foreverwin/mesnac/common/model/CustomReportSearchConditionConfig.java new file mode 100644 index 00000000..6115c787 --- /dev/null +++ b/common/src/main/java/com/foreverwin/mesnac/common/model/CustomReportSearchConditionConfig.java @@ -0,0 +1,186 @@ +package com.foreverwin.mesnac.common.model; + +import java.util.Date; +import java.util.List; + +/** + * + * @Title: CustomReportSearchCondition.java + * @Package com.knsdev.service.domain + * @Description: 自定义报表 查询条件配置 基类 + * @author: Andy + * @date: 2020年10月13日 下午3:43:41 + * @version V1.0 + * + * @History 操作记录 + * 2020年10月13日 下午3:43:41 Andy add + * + * 相关联的FDS + * ME-111-自定义报表配置 + */ +public class CustomReportSearchConditionConfig { + + private Integer seq; + private String conditionName; + private String conditionField; + //栏位类别 :弹出框(DAILOG)|输入框(TEXT)|日期输入框(DATETEXT)|复选框(CHECKBOX) + private String fieldType; + //弹出复选框数据获取SQL + private String dailogCheckboxSQL; + //REQ(必填)|NO_REQ(非必填)|GROUP_REQ(组合必填) + private String requiredType; + private Integer rowID; + private Integer columnID; + private Integer columnWidthPercent; + //自定义报表 Load后需赋上初值 + private List fieldValueList; + + //增加insert所需字段 + private String site; + private String customReportMainModelBo; + private Date modifyDateTime; + private String modifyUser; + private String handle; + + public Integer getSeq() { + return seq; + } + + public void setSeq(Integer seq) { + this.seq = seq; + } + + public Integer getRowID() { + return rowID; + } + + public void setRowID(Integer rowID) { + this.rowID = rowID; + } + + public Integer getColumnID() { + return columnID; + } + + public void setColumnID(Integer columnID) { + this.columnID = columnID; + } + + public String getHandle() { + return handle; + } + + public void setHandle(String handle) { + this.handle = handle; + } + + public String getSite() { + return site; + } + + public void setSite(String site) { + this.site = site; + } + + public String getCustomReportMainModelBo() { + return customReportMainModelBo; + } + + public void setCustomReportMainModelBo(String customReportMainModelBo) { + this.customReportMainModelBo = customReportMainModelBo; + } + + /*public String getModifyDateTime() { + return modifyDateTime; + } + + public void setModifyDateTime(String modifyDateTime) { + this.modifyDateTime = modifyDateTime; + }*/ + + public Date getModifyDateTime() { + return modifyDateTime; + } + + public void setModifyDateTime(Date modifyDateTime) { + this.modifyDateTime = modifyDateTime; + } + + public String getModifyUser() { + return modifyUser; + } + + public void setModifyUser(String modifyUser) { + this.modifyUser = modifyUser; + } + + /*public String getSeq() { + return seq; + } + public void setSeq(String seq) { + this.seq = seq; + }*/ + public String getConditionName() { + return conditionName; + } + public void setConditionName(String conditionName) { + this.conditionName = conditionName; + } + public String getConditionField() { + return conditionField; + } + public void setConditionField(String conditionField) { + this.conditionField = conditionField; + } + public String getFieldType() { + return fieldType; + } + public void setFieldType(String fieldType) { + this.fieldType = fieldType; + } + public String getDailogCheckboxSQL() { + return dailogCheckboxSQL; + } + public void setDailogCheckboxSQL(String dailogCheckboxSQL) { + this.dailogCheckboxSQL = dailogCheckboxSQL; + } + public String getRequiredType() { + return requiredType; + } + public void setRequiredType(String requiredType) { + this.requiredType = requiredType; + } + /*public String getRowID() { + return rowID; + } + public void setRowID(String rowID) { + this.rowID = rowID; + } + public String getColumnID() { + return columnID; + } + public void setColumnID(String columnID) { + this.columnID = columnID; + }*/ + /*public String getColumnWidthPercent() { + return columnWidthPercent; + } + public void setColumnWidthPercent(String columnWidthPercent) { + this.columnWidthPercent = columnWidthPercent; + }*/ + + public Integer getColumnWidthPercent() { + return columnWidthPercent; + } + + public void setColumnWidthPercent(Integer columnWidthPercent) { + this.columnWidthPercent = columnWidthPercent; + } + + public List getFieldValueList() { + return fieldValueList; + } + public void setFieldValueList(List fieldValueList) { + this.fieldValueList = fieldValueList; + } +} diff --git a/common/src/main/java/com/foreverwin/mesnac/common/model/CustomReportSearchConditionDynSQLConfig.java b/common/src/main/java/com/foreverwin/mesnac/common/model/CustomReportSearchConditionDynSQLConfig.java new file mode 100644 index 00000000..067e2315 --- /dev/null +++ b/common/src/main/java/com/foreverwin/mesnac/common/model/CustomReportSearchConditionDynSQLConfig.java @@ -0,0 +1,96 @@ +package com.foreverwin.mesnac.common.model; + +import java.time.LocalDateTime; + +/** + * + * @Title: CustomReportSearchConditionDynSQLConfig.java + * @Package com.knsdev.service.domain + * @Description: 自定义报表配置 检索条件动态SQL配置 基类 + * @author: Andy + * @date: 2020年10月16日 上午9:42:01 + * @version V1.0 + * + * @History 操作记录 + * 2020年10月16日 上午9:42:01 Andy add + * + */ +public class CustomReportSearchConditionDynSQLConfig { + + private String seq; + private String dynConditionReplaceField; + private String dynamicConditionSQL; + private String conditionField; + + //增加insert所需字段 + private String site; + private String customReportMainModelBo; + private LocalDateTime modifyDateTime; + private String modifyUser; + private String handle; + + public String getSite() { + return site; + } + + public void setSite(String site) { + this.site = site; + } + + public String getCustomReportMainModelBo() { + return customReportMainModelBo; + } + + public void setCustomReportMainModelBo(String customReportMainModelBo) { + this.customReportMainModelBo = customReportMainModelBo; + } + + public LocalDateTime getModifyDateTime() { + return modifyDateTime; + } + + public void setModifyDateTime(LocalDateTime modifyDateTime) { + this.modifyDateTime = modifyDateTime; + } + + public String getModifyUser() { + return modifyUser; + } + + public void setModifyUser(String modifyUser) { + this.modifyUser = modifyUser; + } + + public String getHandle() { + return handle; + } + + public void setHandle(String handle) { + this.handle = handle; + } + + public String getDynConditionReplaceField() { + return dynConditionReplaceField; + } + public void setDynConditionReplaceField(String dynConditionReplaceField) { + this.dynConditionReplaceField = dynConditionReplaceField; + } + public String getDynamicConditionSQL() { + return dynamicConditionSQL; + } + public void setDynamicConditionSQL(String dynamicConditionSQL) { + this.dynamicConditionSQL = dynamicConditionSQL; + } + public String getConditionField() { + return conditionField; + } + public void setConditionField(String conditionField) { + this.conditionField = conditionField; + } + public String getSeq() { + return seq; + } + public void setSeq(String seq) { + this.seq = seq; + } +} diff --git a/common/src/main/java/com/foreverwin/mesnac/common/model/CustomReportSearchResultColumnConfig.java b/common/src/main/java/com/foreverwin/mesnac/common/model/CustomReportSearchResultColumnConfig.java new file mode 100644 index 00000000..089a9b0e --- /dev/null +++ b/common/src/main/java/com/foreverwin/mesnac/common/model/CustomReportSearchResultColumnConfig.java @@ -0,0 +1,103 @@ +package com.foreverwin.mesnac.common.model; + +import java.time.LocalDateTime; + +/** + * + * @Title: CustomReportSearchResultColumnConfig.java + * @Package com.knsdev.service.domain + * @Description: 自定义报表_检索结果列配置 基类 + * @author: Andy + * @date: 2020年10月16日 上午9:45:03 + * @version V1.0 + * + * @History 操作记录 + * 2020年10月16日 上午9:45:03 Andy add + * + */ +public class CustomReportSearchResultColumnConfig { + + private String seq; + private String columnField; + private String columnName; + private String columnWidthPercent; + + //增加insert所需字段 + private String handle; + private String site; + private String customReportMainModelBo; + private LocalDateTime modifyDateTime; + private String modifyUser; + + public String getSeq() { + return seq; + } + + public void setSeq(String seq) { + this.seq = seq; + } + + public String getColumnField() { + return columnField; + } + + public void setColumnField(String columnField) { + this.columnField = columnField; + } + + public String getColumnName() { + return columnName; + } + + public void setColumnName(String columnName) { + this.columnName = columnName; + } + + public String getColumnWidthPercent() { + return columnWidthPercent; + } + + public void setColumnWidthPercent(String columnWidthPercent) { + this.columnWidthPercent = columnWidthPercent; + } + + public String getHandle() { + return handle; + } + + public void setHandle(String handle) { + this.handle = handle; + } + + public String getSite() { + return site; + } + + public void setSite(String site) { + this.site = site; + } + + public String getCustomReportMainModelBo() { + return customReportMainModelBo; + } + + public void setCustomReportMainModelBo(String customReportMainModelBo) { + this.customReportMainModelBo = customReportMainModelBo; + } + + public LocalDateTime getModifyDateTime() { + return modifyDateTime; + } + + public void setModifyDateTime(LocalDateTime modifyDateTime) { + this.modifyDateTime = modifyDateTime; + } + + public String getModifyUser() { + return modifyUser; + } + + public void setModifyUser(String modifyUser) { + this.modifyUser = modifyUser; + } +} diff --git a/common/src/main/java/com/foreverwin/mesnac/common/service/CustomReportConfigInterface.java b/common/src/main/java/com/foreverwin/mesnac/common/service/CustomReportConfigInterface.java new file mode 100644 index 00000000..28c19852 --- /dev/null +++ b/common/src/main/java/com/foreverwin/mesnac/common/service/CustomReportConfigInterface.java @@ -0,0 +1,55 @@ +package com.foreverwin.mesnac.common.service; + + +import com.foreverwin.mesnac.common.model.CustomReport; +import com.foreverwin.mesnac.common.model.CustomReportConfig; + +import java.util.List; + +/** + * + * @Title: CustomReportConfigInterface.java + * @Package com.knsdev.service + * @Description: 自定义报表配置 interface + * @author: Andy + * @date: 2020年10月14日 上午9:48:58 + * @version V1.0 + * + * @History 操作记录 + * 2020年10月14日 上午9:48:58 Andy add + * + */ +public interface CustomReportConfigInterface { + + + /** + * 报表作业编号弹出框 + * @param site + * @return + * @throws Exception + */ + List GetReportIDList(String site) throws Exception; + + /** + * 查询 + * @param reportid 报表作业编号 + * @return + * @throws Exception + */ + CustomReportConfig Query(String reportid) throws Exception; + + /** + * 保存 + * @param config + * @throws Exception + */ + void Save(CustomReportConfig config) throws Exception; + + /** + * 删除 + * + * @param reportid + * @throws Exception + */ + void Delete(String site, String reportid) throws Exception; +} diff --git a/common/src/main/java/com/foreverwin/mesnac/common/service/CustomReportInterface.java b/common/src/main/java/com/foreverwin/mesnac/common/service/CustomReportInterface.java new file mode 100644 index 00000000..df9774db --- /dev/null +++ b/common/src/main/java/com/foreverwin/mesnac/common/service/CustomReportInterface.java @@ -0,0 +1,41 @@ +package com.foreverwin.mesnac.common.service; + + +import com.foreverwin.mesnac.common.model.CustomReportConfig; + +import java.util.List; +import java.util.Map; + +/** + * + * @Title: CustomReportInterface.java + * @Package com.knsdev.service + * @Description: 自定义报表 接口 + * @author: Andy + * @date: 2020年10月15日 下午1:20:01 + * @version V1.0 + * + * @History 操作记录 + * 2020年10月15日 下午1:20:01 Andy add + * + */ +public interface CustomReportInterface { + + + /** + * 查询 + * @param site + * @param reportid 报表作业编号 + * @return + * @throws Exception + */ + CustomReportConfig Load(String site, String reportid) throws Exception; + + /** + * 查询 + * @param condition + * @return + * @throws Exception + */ + List> Query(String condition) throws Exception; +} diff --git a/common/src/main/java/com/foreverwin/mesnac/common/service/impl/CustomReportConfigImpl.java b/common/src/main/java/com/foreverwin/mesnac/common/service/impl/CustomReportConfigImpl.java new file mode 100644 index 00000000..f33c2ab9 --- /dev/null +++ b/common/src/main/java/com/foreverwin/mesnac/common/service/impl/CustomReportConfigImpl.java @@ -0,0 +1,301 @@ +package com.foreverwin.mesnac.common.service.impl; + +import com.foreverwin.mesnac.common.mapper.CustomReportConfigMapper; +import com.foreverwin.mesnac.common.model.*; +import com.foreverwin.mesnac.common.service.CustomReportConfigInterface; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import java.text.SimpleDateFormat; +import java.time.LocalDateTime; +import java.util.*; + +/** + * + * @Title: CustomReportConfigImpl.java + * @Package com.knsdev.service.impl + * @Description: 自定义报表配置 Interface 实现 + * @author: Andy + * @date: 2020年10月14日 上午9:57:38 + * @version V1.0 + * + * @History 操作记录 + * 2020年10月14日 上午9:57:38 Andy add + * + */ +@Service +public class CustomReportConfigImpl implements CustomReportConfigInterface { + + @Autowired + private CustomReportConfigMapper customReportConfigMapper; + + + @Override + public CustomReportConfig Query(String reportid) throws Exception { + //2020-11-6 andy, 因所有的 site共用配置,所以此处site直接给* + String site="*"; + CustomReportConfig config=new CustomReportConfig(); + String mainHandle="CustomReportBO:"+site+","+reportid; + + Map param = new HashMap(); + param.put("SITE", site); + param.put("REPORT_ID", reportid); + + //自定义报表_主要模块 数据 + List map = customReportConfigMapper.selectMain( site,reportid ); + + if(map.size()<1) + { + throw new RuntimeException("查询无资料"); + } else + { + //获取 Z_CUSTOM_REPORT_MAINMODEL 表中相关字段 + config.setHandle(map.get(0).getHandle()==null?"":map.get(0).getHandle().toString()); + config.setSite(site); + config.setReportID(reportid); + config.setReportTitle(map.get(0).getReportTitle()==null?"":map.get(0).getReportTitle().toString().trim()); + config.setReportDESC(map.get(0).getReportDesc()==null?"":map.get(0).getReportDesc().toString().trim()); + config.setConditionSQLConfig(map.get(0).getConditionSqlConfig()==null?"":map.get(0).getConditionSqlConfig().toString().trim()); + config.setDisplayType(map.get(0).getDisplayType()==null?"":map.get(0).getDisplayType().toString().trim()); + config.setTimeRefresh(map.get(0).getTimeRefresh()==null?"0":map.get(0).getTimeRefresh().toString()); + config.setBackgroundColor(map.get(0).getBackgroundColor()==null?"":map.get(0).getBackgroundColor().toString().trim()); + config.setFontColor(map.get(0).getFontColor()==null?"":map.get(0).getFontColor().toString().trim()); + config.setPageSize(map.get(0).getPageSize()==null?"0":map.get(0).getPageSize().toString()); + config.setUser(map.get(0).getModifyUser()==null?"":map.get(0).getModifyUser().toString().trim());//map.get(0).get("USER") + } + + //自定义报表_检索条件配置 数据 + + List conditionConfigList=new ArrayList(); + + List searchConditionMap = customReportConfigMapper.selectSearchConditionConfig( mainHandle ); + + for(int i=0;i dynSQLConfigList=new ArrayList(); + + List dynSqlConfigMap = customReportConfigMapper.selectDynSqlConfig( mainHandle ); + + for(int i=0;i resultColumnConfigList=new ArrayList(); + + List resultColumnMap = customReportConfigMapper.selectResultColumnConfig( mainHandle ); + + for(int i=0;i configList=config.getSearchConditionConfigList(); + + if(configList!=null && configList.size() > 0) { + CustomReportSearchConditionConfig customReportSearchConditionConfig = new CustomReportSearchConditionConfig(); + customReportSearchConditionConfig.setSite( site ); + customReportSearchConditionConfig.setCustomReportMainModelBo( customReportBO ); + customReportSearchConditionConfig.setModifyDateTime( new Date() ); + customReportSearchConditionConfig.setModifyUser( user ); + + for(int i=0;i searchConditionDynSQLConfigList=config.getSearchConditionDynSQLConfigList(); + if(searchConditionDynSQLConfigList!=null && searchConditionDynSQLConfigList.size() > 0) { + CustomReportSearchConditionDynSQLConfig customReportSearchConditionDynSQLConfig = new CustomReportSearchConditionDynSQLConfig(); + customReportSearchConditionDynSQLConfig.setSite( site ); + customReportSearchConditionDynSQLConfig.setCustomReportMainModelBo( customReportBO ); + customReportSearchConditionDynSQLConfig.setModifyDateTime( dateTime ); + customReportSearchConditionDynSQLConfig.setModifyUser( user ); + + for(int i=0;i searchResultColumnList=config.getSearchResultColumnList(); + if(searchResultColumnList!=null && searchResultColumnList.size() > 0) { + CustomReportSearchResultColumnConfig customReportSearchResultColumnConfig = new CustomReportSearchResultColumnConfig(); + customReportSearchResultColumnConfig.setSite( site ); + customReportSearchResultColumnConfig.setCustomReportMainModelBo( customReportBO ); + customReportSearchResultColumnConfig.setModifyDateTime( dateTime ); + customReportSearchResultColumnConfig.setModifyUser( user ); + + + for(int i=0;i GetReportIDList(String site) throws Exception { + List customReportList=null; + site="*"; + Map param = new HashMap(); + param.put("SITE", site); + + //List> map=logicService.executeQuery(site, REPORTID_DIALOG_SQL, param); + List map = customReportConfigMapper.selectReportIdDialog( site ); + + if(map.size()>0) + { + customReportList=new ArrayList(); + CustomReport cr=null; + + for(int i=0;i param = new HashMap(); + param.put("SITE", "*"); + param.put("REPORT_ID", reportid); + + //2020-11-6 andy, 因所有的 site共用配置,所以此处site直接给* + //自定义报表_主要模块 数据 + //List> map=logicService.executeQuery(site, QUERY_MAIN_SQL, param); + //List> map=logicService.executeQuery("*", QUERY_MAIN_SQL, param); + List map = customReportConfigMapper.selectMain("*", reportid); + + if(map.size()<1) + { + //40025.simple = 查询无资料 + //throw Exceptions.convert(new BasicBOBeanException(40025,new Data())); + throw new RuntimeException("查询无资料"); + }else + { + if(map.get(0).getConditionSqlConfig()==null || map.get(0).getConditionSqlConfig().trim().length()<1) + { + //70502.simple=请在检索语句配置栏填写 SQL语句 + //throw Exceptions.convert(new BasicBOBeanException(70502,new Data())); + throw new RuntimeException("请在检索语句配置栏填写 SQL语句 "); + } + + //获取 Z_CUSTOM_REPORT_MAINMODEL 表中相关字段 + config.setHandle(map.get(0).getHandle()==null?"":map.get(0).getHandle()); + config.setSite(site); + config.setReportID(reportid); + config.setReportTitle(map.get(0).getReportTitle()==null?"":map.get(0).getReportTitle().trim()); + config.setReportDESC(map.get(0).getReportDesc()==null?"":map.get(0).getReportDesc().toString().trim()); + config.setConditionSQLConfig(map.get(0).getConditionSqlConfig()==null?"":map.get(0).getConditionSqlConfig().toString().trim()); + config.setDisplayType(map.get(0).getDisplayType()==null?"":map.get(0).getDisplayType().toString().trim()); + config.setTimeRefresh(map.get(0).getTimeRefresh()==null?"0":map.get(0).getTimeRefresh().toString()); + config.setBackgroundColor(map.get(0).getBackgroundColor()==null?"":map.get(0).getBackgroundColor().toString().trim()); + config.setFontColor(map.get(0).getFontColor()==null?"":map.get(0).getFontColor().toString().trim()); + config.setPageSize(map.get(0).getPageSize()==null?"0":map.get(0).getPageSize().toString()); + config.setUser(map.get(0).getModifyUser()==null?"":map.get(0).getModifyUser().toString().trim()); + } + + param=null; + + //自定义报表_检索条件配置 数据 + + List conditionConfigList=new ArrayList(); + + param=new HashMap(); + param.put("MAINHANDLE", mainHandle); + + + //map=logicService.executeQuery(site, QUERY_SEARCHCONDITIONCONFIG_SQL, param); + List searchConditionMap = customReportConfigMapper.selectSearchConditionConfig( mainHandle ); + + for(int i=0;i> result=logicService.executeQuery(site, searchConditionConfig.getDailogCheckboxSQL().trim(), new HashMap()); + List> result = customReportMapper.executeSqlQuery( searchConditionConfig.getDailogCheckboxSQL().trim() ); + if(result.size()>0) + { + List lst=new ArrayList(); + + for(Map m:result) + { + for(String key:m.keySet()) + { + lst.add(m.get(key).toString()); + } + } + conditionConfigList.get(k).setFieldValueList(lst); + } + } + + k++; + } + + config.setSearchConditionConfigList(conditionConfigList); + + //自定义报表_检索结果列配置 + List resultColumnConfigList=new ArrayList(); + + //map=logicService.executeQuery(site, QUERY_RESULTCOLUMNCONFIG_SQL, param); + List resultColumnMap = customReportConfigMapper.selectResultColumnConfig( mainHandle ); + + for(int i=0;i> Query(String condition) throws Exception { + + JSONObject object = JSONObject.parseObject(condition); + String site=object.getString("site"); + String reportID=object.getString("reportID"); + + if((site==null || site.trim().isEmpty()) || (reportID==null || reportID.trim().isEmpty())) + { + //70501.simple=站点、报表作业编号均不能为空 + //throw Exceptions.convert(new BasicBOBeanException(70501,new Data())); + throw new RuntimeException("站点、报表作业编号均不能为空"); + } + + //1.获取检索语句配置 + + String querySentence=""; + + Map param = new HashMap(); + param.put("SITE", "*"); + param.put("REPORT_ID", reportID); + + //List> map=logicService.executeQuery("*", GET_QUERY_SENTENCE_SQL, param); + List map= customReportMapper.selectQuerySentence("*",reportID); + if(map.size()>0) + { + querySentence=map.get(0).getConditionSqlConfig()==null?"":map.get(0).getConditionSqlConfig(); + } + + if(querySentence.trim().isEmpty()) + { + //70502.simple=请在检索语句配置栏填写 SQL语句 + //throw Exceptions.convert(new BasicBOBeanException(70502,new Data())); + throw new RuntimeException("请在检索语句配置栏填写 SQL语句"); + } + + param=null; + + //2.依定的规则 检索语句中需替换的内容 以 :开头,所以此处依:先做下判断是否有需替换的内容 + + if(querySentence.indexOf(":")>1) + { + //处理需替换的数据 + + //自定义报表_检索条件动态SQL配置 + List dynSQLConfigList=new ArrayList(); + + + param = new HashMap(); + param.put("MAINHANDLE", "CustomReportBO:*,"+reportID); + + //map=logicService.executeQuery(site, QUERY_DYNSQLCONFIG_SQL, param); + List dynSqlConfigMap = customReportConfigMapper.selectDynSqlConfig( "CustomReportBO:*,"+reportID ); + + for(int i=0;i siteParam=new HashMap(); + //siteParam.put("SITE", site); + //替换站点 2021/08/19 + querySentence = querySentence.replace(":SITE","\'"+site+"\'"); + //List> result=logicService.executeQuery(site, querySentence,siteParam); + List> result= customReportMapper.executeSqlQuery( querySentence ); + + //2020-11-17 andy add;解决value值为null时,转json会被移除的问题 + for(int i=0;i entry:result.get(i).entrySet()) + { + if(entry.getValue()==null) + { + result.get(i).put(entry.getKey(), " "); + } + } + } + + return result; + + } + +} diff --git a/common/src/main/java/com/foreverwin/mesnac/common/service/impl/PrintLogServiceImpl.java b/common/src/main/java/com/foreverwin/mesnac/common/service/impl/PrintLogServiceImpl.java index c0fb65dd..8856c3dc 100644 --- a/common/src/main/java/com/foreverwin/mesnac/common/service/impl/PrintLogServiceImpl.java +++ b/common/src/main/java/com/foreverwin/mesnac/common/service/impl/PrintLogServiceImpl.java @@ -76,7 +76,8 @@ public class PrintLogServiceImpl extends ServiceImpl i * {"msg":"打印成功","code":0} * {"msg":"打印失败","code":500} * 根据返回值,更新打印机信息-printName及打印是否成功信息isPrint - */ + * */ + JSONObject jsonObject = JSONObject.parseObject(post); Integer code = jsonObject.getInteger("code"); String msg = jsonObject.getString("msg"); @@ -89,7 +90,12 @@ public class PrintLogServiceImpl extends ServiceImpl i PrintLog printLogOne = new PrintLog(); printLogOne.setHandle(printLog.getHandle()); printLogOne.setIsPrint("true"); - printLogOne.setPrintNum(printLog.getPrintNum()+1); + Integer printNum = printLog.getPrintNum(); + if (printNum == null){ + printLogOne.setPrintNum(1); + }else { + printLogOne.setPrintNum(printNum+1); + } if (!printLog.getCategory().equals(Constants.PRINT_TYPE_SFC)){ printLogOne.setPrintName(printLog.getPrintName()); } diff --git a/common/src/main/resources/mapper/CustomReportConfigMapper.xml b/common/src/main/resources/mapper/CustomReportConfigMapper.xml new file mode 100644 index 00000000..faaa90b9 --- /dev/null +++ b/common/src/main/resources/mapper/CustomReportConfigMapper.xml @@ -0,0 +1,210 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + DELETE FROM Z_CUSTOM_REPORT_SEARCHCONDITION_DYNSQL_CONFIG + WHERE CUSTOM_REPORT_MAIN_MODEL_BO=#{mainhandle} + + + + DELETE FROM Z_CUSTOM_REPORT_SEARCHRESULT_COLUMN_CONFIG + WHERE CUSTOM_REPORT_MAIN_MODEL_BO=#{mainhandle} + + + + DELETE FROM Z_CUSTOM_REPORT_SEARCHCONDITION_CONFIG + WHERE CUSTOM_REPORT_MAIN_MODEL_BO=#{mainhandle} + + + + DELETE FROM Z_CUSTOM_REPORT_MAINMODEL + WHERE HANDLE=#{mainhandle} + + + + INSERT INTO Z_CUSTOM_REPORT_SEARCHCONDITION_DYNSQL_CONFIG (HANDLE, CUSTOM_REPORT_MAIN_MODEL_BO, SEQ, + DYN_CONDITION_REPLACE_FIELD, DYNAMIC_CONDITION_SQL, CONDITION_FIELD, MODIFY_DATE_TIME, MODIFY_USER) + VALUES(#{handle}, #{customReportMainModelBo}, #{seq}, #{dynConditionReplaceField}, #{dynamicConditionSQL}, + #{conditionField}, #{modifyDateTime}, #{modifyUser}) + + + + + insert into Z_CUSTOM_REPORT_SEARCHRESULT_COLUMN_CONFIG + + HANDLE, + CUSTOM_REPORT_MAIN_MODEL_BO, + SEQ, + COLUMN_FIELD, + COLUMN_NAME, + COLUMN_WIDTH_PERCENT, + MODIFY_DATE_TIME, + MODIFY_USER, + + + #{handle}, + #{customReportMainModelBo}, + #{seq}, + #{columnField}, + #{columnName}, + #{columnWidthPercent}, + #{modifyDateTime}, + #{modifyUser}, + + + + + + + + insert into Z_CUSTOM_REPORT_SEARCHCONDITION_CONFIG + + HANDLE, + SITE, + CUSTOM_REPORT_MAIN_MODEL_BO, + SEQ, + CONDITION_NAME, + CONDITION_FIELD, + FIELD_TYPE, + DIALOG_CHKBOX_SQL, + REQUIRED_TYPE, + ROW_ID, + COLUMN_ID, + COLUMN_WIDTH_PERCENT, + MODIFY_DATE_TIME, + MODIFY_USER, + + + #{handle}, + #{site}, + #{customReportMainModelBo}, + #{seq}, + #{conditionName}, + #{conditionField}, + #{fieldType}, + #{dailogCheckboxSQL}, + #{requiredType}, + #{rowID}, + #{columnID}, + #{columnWidthPercent}, + #{modifyDateTime}, + #{modifyUser}, + + + + + INSERT INTO Z_CUSTOM_REPORT_MAINMODEL + (HANDLE, SITE, REPORT_ID, REPORT_TITLE, REPORT_DESC, CONDITION_SQL_CONFIG, DISPLAY_TYPE, TIME_REFRESH, BACKGROUND_COLOR, FONT_COLOR, PAGE_SIZE, MODIFY_DATE_TIME, MODIFY_USER) + VALUES(#{handle}, #{site}, #{reportId}, #{reportTitle}, #{reportDesc}, #{conditionSqlConfig}, #{displayType}, #{timeRefresh}, #{backgroundColor}, #{fontColor}, #{pageSize}, #{modifyDateTime}, #{modifyUser}) + + + \ No newline at end of file diff --git a/common/src/main/resources/mapper/CustomReportMapper.xml b/common/src/main/resources/mapper/CustomReportMapper.xml new file mode 100644 index 00000000..9b53151e --- /dev/null +++ b/common/src/main/resources/mapper/CustomReportMapper.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/console/src/main/resources/application-prd.yml b/console/src/main/resources/application-prd.yml index dd51e095..73c8dd67 100644 --- a/console/src/main/resources/application-prd.yml +++ b/console/src/main/resources/application-prd.yml @@ -9,7 +9,7 @@ spring: jndi-name: jdbc/jts/wipPool activemq: enabled: false - brokerUrl: tcp://121.36.58.109:61616?wireFormat.maxInactivityDuration=0 + brokerUrl: tcp://172.16.251.166:61616?wireFormat.maxInactivityDuration=0 password: admin user: admin pool: @@ -25,17 +25,18 @@ ws: pwd: a123456 valid: N +#ftp ftp: - host: + host: 172.16.251.165 port: 21 username: password: -#打印服务器配置 +#打印服务 print: server: http://10.10.170.32:8022/print/mesnacprint - +#文件模板路径 exportDocument: filePath: /usr/word/ outputPath: /usr/word/outputWord/ diff --git a/console/src/test/java/com/foreverwin/mesnac/console/TmdMc.java b/console/src/test/java/com/foreverwin/mesnac/console/TmdMc.java index 1c158b63..c6053aed 100644 --- a/console/src/test/java/com/foreverwin/mesnac/console/TmdMc.java +++ b/console/src/test/java/com/foreverwin/mesnac/console/TmdMc.java @@ -20,7 +20,6 @@ public class TmdMc { - @Test public void callErpWebService() throws RemoteException { String shopOrder = "SO20210714"; diff --git a/dispatch/src/main/java/com/foreverwin/mesnac/dispatch/controller/SfcDispatchController.java b/dispatch/src/main/java/com/foreverwin/mesnac/dispatch/controller/SfcDispatchController.java index f90b1846..21209cd4 100644 --- a/dispatch/src/main/java/com/foreverwin/mesnac/dispatch/controller/SfcDispatchController.java +++ b/dispatch/src/main/java/com/foreverwin/mesnac/dispatch/controller/SfcDispatchController.java @@ -67,7 +67,7 @@ public class SfcDispatchController { */ @ResponseBody @GetMapping("getSfcDispatch") - public R getSfcDispatch(String workCenter, String dispatchStatus, String item, String itemNumber, String workOrder, String shopOrder, + public R getSfcDispatch(String workCenter, String dispatchStatus, String item, String itemNumber, String workOrder, String shopOrder, String blankingSize, String resrce, String resourceType, String operation, String operationDescription, String sfc, String component, String componentDescription, String turnOperation, String isDispatch, String startFromDate_S, String startToDate_S, String completeFromDate_S, String completeToDate_S) { List list; @@ -85,6 +85,7 @@ public class SfcDispatchController { sfcDispatchDto.setResourceType(resourceType); sfcDispatchDto.setOperation(operation); sfcDispatchDto.setSfc(sfc); + sfcDispatchDto.setBlankingSize(blankingSize); sfcDispatchDto.setComponent(component); sfcDispatchDto.setComponentDescription(componentDescription); sfcDispatchDto.setTurnOperation(turnOperation); diff --git a/dispatch/src/main/java/com/foreverwin/mesnac/dispatch/service/impl/CallItemServiceImpl.java b/dispatch/src/main/java/com/foreverwin/mesnac/dispatch/service/impl/CallItemServiceImpl.java index 712f1d6c..51a5ae44 100644 --- a/dispatch/src/main/java/com/foreverwin/mesnac/dispatch/service/impl/CallItemServiceImpl.java +++ b/dispatch/src/main/java/com/foreverwin/mesnac/dispatch/service/impl/CallItemServiceImpl.java @@ -391,13 +391,13 @@ public class CallItemServiceImpl extends ServiceImpl i } if (StringUtil.notBlank(itemGroup) && "GB".equals(itemGroup)) { - if (!blankingSize.contains("*") || blankingSize.split("\\*").length < 2) { + if (!blankingSize.contains("×") || blankingSize.split("×").length < 2) { callItem.setSizeReqQty(callItem.getRequiredQty()); compQtyMap.put(component, callItem.getRequiredQty()); continue; } - String []size = blankingSize.split("\\*"); + String []size = blankingSize.split("×"); if (size != null && size.length >= 2) { int sizeLength = size.length; BigDecimal length = new BigDecimal(size[sizeLength-1]); @@ -410,8 +410,8 @@ public class CallItemServiceImpl extends ServiceImpl i } } else { String[] size = new String[1]; - if (blankingSize.contains("*")) { - size = blankingSize.split("\\*"); + if (blankingSize.contains("×")) { + size = blankingSize.split("×"); } else { size[0] = blankingSize; } diff --git a/dispatch/src/main/resources/mapper/SfcDispatchMapper.xml b/dispatch/src/main/resources/mapper/SfcDispatchMapper.xml index 277143b9..63613260 100644 --- a/dispatch/src/main/resources/mapper/SfcDispatchMapper.xml +++ b/dispatch/src/main/resources/mapper/SfcDispatchMapper.xml @@ -740,6 +740,9 @@ AND SD.IS_DISPATCH = #{isDispatch} + + AND SD.BLANKING_SIZE LIKE '%'||#{blankingSize}||'%' + AND SO.PLANNED_START_DATE >= #{startFromDate} diff --git a/listener/src/main/java/com/foreverwin/mesnac/listener/util/ConstantsUtil.java b/listener/src/main/java/com/foreverwin/mesnac/listener/util/ConstantsUtil.java index 4b5a3053..7b3c810d 100644 --- a/listener/src/main/java/com/foreverwin/mesnac/listener/util/ConstantsUtil.java +++ b/listener/src/main/java/com/foreverwin/mesnac/listener/util/ConstantsUtil.java @@ -1,5 +1,7 @@ package com.foreverwin.mesnac.listener.util; +import java.math.BigDecimal; + public class ConstantsUtil { public static String Y = "Y"; public static String N = "N"; diff --git a/meapi/src/main/resources/mapper/SfcMapper.xml b/meapi/src/main/resources/mapper/SfcMapper.xml index 6614df35..d9507fb1 100644 --- a/meapi/src/main/resources/mapper/SfcMapper.xml +++ b/meapi/src/main/resources/mapper/SfcMapper.xml @@ -668,7 +668,7 @@ JOIN Z_SFC_DISPATCH zsd ON S.SFC=zsd.SFC AND S.SITE=zsd.SITE JOIN Z_PROD_READY_TASK zprt ON ZPRT.SFC_DISPATCH_BO=zsd.HANDLE WHERE S.SITE=#{ew.entity.site} AND ZSD.RESRCE=#{ew.entity.resrce} AND ZSD.DISPATCH_STATUS!='CANCEL' AND ZSD.DISPATCH_STATUS!='COMPLETE' - AND S.STATUS_BO IN ('StatusBO:'||#{ew.entity.site}||',401','StatusBO:'||#{ew.entity.site}||',402','StatusBO:'||#{ew.entity.site}||',403') + AND S.STATUS_BO IN ('StatusBO:'||#{ew.entity.site}||',401','StatusBO:'||#{ew.entity.site}||',402','StatusBO:'||#{ew.entity.site}||',403','StatusBO:'||#{ew.entity.site}||',404') AND zprt.STATUS='FINISH' AND ZPRT."RESULT"='OK' diff --git a/meapi/src/main/resources/mapper/UserGroupMapper.xml b/meapi/src/main/resources/mapper/UserGroupMapper.xml index 0fed0be2..7beb8f56 100644 --- a/meapi/src/main/resources/mapper/UserGroupMapper.xml +++ b/meapi/src/main/resources/mapper/UserGroupMapper.xml @@ -373,10 +373,10 @@ + SELECT FROM Z_SFC_HOLD_LOG WHERE HANDLE=#{handle} + + + + + + + + + + + + + + + + + + + + + + INSERT INTO Z_SFC_HOLD_LOG + + HANDLE, + SITE, + SFC_DISPATCH_BO, + SFC, + STEP_ID, + OPERATION, + HOLD_DURATION, + TYPE, + CREATE_USER, + CREATED_DATE_TIME, + VALUES + + #{handle}, + #{site}, + #{sfcDispatchBo}, + #{sfc}, + #{stepId}, + #{operation}, + #{holdDuration}, + #{type}, + #{createUser}, + #{createdDateTime}, + + + + + INSERT INTO Z_SFC_HOLD_LOG + + + VALUES + + #{handle}, + #{site}, + #{sfcDispatchBo}, + #{sfc}, + #{stepId}, + #{operation}, + #{holdDuration}, + #{type}, + #{createUser}, + #{createdDateTime}, + + + + + + UPDATE Z_SFC_HOLD_LOG + SITE=#{et.site}, + SFC_DISPATCH_BO=#{et.sfcDispatchBo}, + SFC=#{et.sfc}, + STEP_ID=#{et.stepId}, + OPERATION=#{et.operation}, + HOLD_DURATION=#{et.holdDuration}, + TYPE=#{et.type}, + CREATE_USER=#{et.createUser}, + CREATED_DATE_TIME=#{et.createdDateTime}, + WHERE HANDLE=#{et.handle} and ${et.MP_OPTLOCK_VERSION_COLUMN}=#{et.MP_OPTLOCK_VERSION_ORIGINAL} + + + + + UPDATE Z_SFC_HOLD_LOG + SITE=#{et.site}, + SFC_DISPATCH_BO=#{et.sfcDispatchBo}, + SFC=#{et.sfc}, + STEP_ID=#{et.stepId}, + OPERATION=#{et.operation}, + HOLD_DURATION=#{et.holdDuration}, + TYPE=#{et.type}, + CREATE_USER=#{et.createUser}, + CREATED_DATE_TIME=#{et.createdDateTime}, + WHERE HANDLE=#{et.handle} and ${et.MP_OPTLOCK_VERSION_COLUMN}=#{et.MP_OPTLOCK_VERSION_ORIGINAL} + + + + + UPDATE Z_SFC_HOLD_LOG + SITE=#{et.site}, + SFC_DISPATCH_BO=#{et.sfcDispatchBo}, + SFC=#{et.sfc}, + STEP_ID=#{et.stepId}, + OPERATION=#{et.operation}, + HOLD_DURATION=#{et.holdDuration}, + TYPE=#{et.type}, + CREATE_USER=#{et.createUser}, + CREATED_DATE_TIME=#{et.createdDateTime}, + + + + + HANDLE=#{ew.entity.handle} + AND SITE=#{ew.entity.site} + AND SFC_DISPATCH_BO=#{ew.entity.sfcDispatchBo} + AND SFC=#{ew.entity.sfc} + AND STEP_ID=#{ew.entity.stepId} + AND OPERATION=#{ew.entity.operation} + AND HOLD_DURATION=#{ew.entity.holdDuration} + AND TYPE=#{ew.entity.type} + AND CREATE_USER=#{ew.entity.createUser} + AND CREATED_DATE_TIME=#{ew.entity.createdDateTime} + + + ${ew.sqlSegment} + + + + + ${ew.sqlSegment} + + + + + DELETE FROM Z_SFC_HOLD_LOG WHERE HANDLE=#{handle} + + + + DELETE FROM Z_SFC_HOLD_LOG + + + + + ${k} = #{cm[${k}]} + + + + + + + + DELETE FROM Z_SFC_HOLD_LOG + + + + + HANDLE=#{ew.entity.handle} + + AND SITE=#{ew.entity.site} + AND SFC_DISPATCH_BO=#{ew.entity.sfcDispatchBo} + AND SFC=#{ew.entity.sfc} + AND STEP_ID=#{ew.entity.stepId} + AND OPERATION=#{ew.entity.operation} + AND HOLD_DURATION=#{ew.entity.holdDuration} + AND TYPE=#{ew.entity.type} + AND CREATE_USER=#{ew.entity.createUser} + AND CREATED_DATE_TIME=#{ew.entity.createdDateTime} + + + ${ew.sqlSegment} + + + + + ${ew.sqlSegment} + + + + + DELETE FROM Z_SFC_HOLD_LOG WHERE HANDLE IN ( + #{item} + ) + + + +