报表工具
parent
fe20048264
commit
845f7a785b
@ -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<CustomReport> 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());
|
||||
}
|
||||
}
|
||||
}
|
@ -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<Map<String, Object>> res=reportAPI.Query(condition);
|
||||
return R.ok(res);
|
||||
} catch (Exception ex) {
|
||||
return R.failed(ex.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
@ -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<CustomReportMainmodel> selectReportIdDialog(String site);
|
||||
|
||||
List<CustomReportMainmodel> selectMain(@Param("site") String site, @Param("reportId") String reportId);
|
||||
|
||||
List<CustomReportSearchConditionConfig> selectSearchConditionConfig(String mainhandle);
|
||||
|
||||
List<CustomReportSearchConditionDynSQLConfig> selectDynSqlConfig(String mainhandle);
|
||||
|
||||
List<CustomReportSearchResultColumnConfig> 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);
|
||||
}
|
@ -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<Map<String, Object>> executeSqlQuery(@Param("sql") String sql);
|
||||
|
||||
List<CustomReportMainmodel> selectQuerySentence(@Param("site") String site, @Param("reportId") String reportId);
|
||||
}
|
@ -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;
|
||||
}
|
||||
}
|
@ -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<CustomReportSearchConditionConfig> searchConditionConfigList;
|
||||
|
||||
//自定义报表_检索条件动态SQL配置 数据
|
||||
private List<CustomReportSearchConditionDynSQLConfig> searchConditionDynSQLConfigList;
|
||||
|
||||
//自定义报表_检索结果列配置
|
||||
private List<CustomReportSearchResultColumnConfig> 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<CustomReportSearchConditionConfig> getSearchConditionConfigList() {
|
||||
return searchConditionConfigList;
|
||||
}
|
||||
|
||||
public void setSearchConditionConfigList(List<CustomReportSearchConditionConfig> searchConditionConfigList) {
|
||||
this.searchConditionConfigList = searchConditionConfigList;
|
||||
}
|
||||
|
||||
public List<CustomReportSearchConditionDynSQLConfig> getSearchConditionDynSQLConfigList() {
|
||||
return searchConditionDynSQLConfigList;
|
||||
}
|
||||
|
||||
public void setSearchConditionDynSQLConfigList(List<CustomReportSearchConditionDynSQLConfig> searchConditionDynSQLConfigList) {
|
||||
this.searchConditionDynSQLConfigList = searchConditionDynSQLConfigList;
|
||||
}
|
||||
|
||||
public List<CustomReportSearchResultColumnConfig> getSearchResultColumnList() {
|
||||
return searchResultColumnList;
|
||||
}
|
||||
|
||||
public void setSearchResultColumnList(List<CustomReportSearchResultColumnConfig> searchResultColumnList) {
|
||||
this.searchResultColumnList = searchResultColumnList;
|
||||
}
|
||||
}
|
@ -0,0 +1,146 @@
|
||||
package com.foreverwin.mesnac.common.model;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
*
|
||||
* </p>
|
||||
*
|
||||
* @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;
|
||||
}
|
||||
}
|
@ -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;
|
||||
}
|
||||
}
|
@ -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;
|
||||
}
|
||||
}
|
@ -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<CustomReport> 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;
|
||||
}
|
@ -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<Map<String,Object>> Query(String condition) throws Exception;
|
||||
}
|
@ -0,0 +1,210 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.foreverwin.mesnac.common.mapper.CustomReportConfigMapper">
|
||||
|
||||
<resultMap type="com.foreverwin.mesnac.common.model.CustomReportMainmodel" id="CustomReportMainmodelResult">
|
||||
<result property="handle" column="HANDLE" />
|
||||
<result property="site" column="SITE" />
|
||||
<result property="reportId" column="REPORT_ID" />
|
||||
<result property="reportTitle" column="REPORT_TITLE" />
|
||||
<result property="reportDesc" column="REPORT_DESC" />
|
||||
<result property="conditionSqlConfig" column="CONDITION_SQL_CONFIG" />
|
||||
<result property="displayType" column="DISPLAY_TYPE" />
|
||||
<result property="timeRefresh" column="TIME_REFRESH" />
|
||||
<result property="backgroundColor" column="BACKGROUND_COLOR" />
|
||||
<result property="fontColor" column="FONT_COLOR" />
|
||||
<result property="pageSize" column="PAGE_SIZE" />
|
||||
<result property="modifyDateTime" column="MODIFY_DATE_TIME" />
|
||||
<result property="modifyUser" column="MODIFY_USER" />
|
||||
</resultMap>
|
||||
|
||||
<resultMap type="com.foreverwin.mesnac.common.model.CustomReportSearchConditionConfig" id="CustomReportSearchConditionConfigResult">
|
||||
<result property="handle" column="HANDLE" />
|
||||
<result property="site" column="SITE" />
|
||||
<result property="customReportMainModelBo" column="CUSTOM_REPORT_MAIN_MODEL_BO" />
|
||||
<result property="seq" column="SEQ" />
|
||||
<result property="conditionName" column="CONDITION_NAME" />
|
||||
<result property="conditionField" column="CONDITION_FIELD" />
|
||||
<result property="fieldType" column="FIELD_TYPE" />
|
||||
<result property="dailogCheckboxSQL" column="DIALOG_CHKBOX_SQL" />
|
||||
<result property="requiredType" column="REQUIRED_TYPE" />
|
||||
<result property="rowID" column="ROW_ID" />
|
||||
<result property="columnID" column="COLUMN_ID" />
|
||||
<result property="columnWidthPercent" column="COLUMN_WIDTH_PERCENT" />
|
||||
<result property="modifyDateTime" column="MODIFY_DATE_TIME" />
|
||||
<result property="modifyUser" column="MODIFY_USER" />
|
||||
</resultMap>
|
||||
|
||||
<resultMap type="com.foreverwin.mesnac.common.model.CustomReportSearchConditionDynSQLConfig" id="CustomReportSearchConditionDynSQLConfigResult">
|
||||
<result property="handle" column="HANDLE" />
|
||||
<result property="site" column="SITE" />
|
||||
<result property="customReportMainModelBo" column="CUSTOM_REPORT_MAIN_MODEL_BO" />
|
||||
<result property="seq" column="SEQ" />
|
||||
<result property="dynConditionReplaceField" column="DYN_CONDITION_REPLACE_FIELD" />
|
||||
<result property="dynamicConditionSQL" column="DYNAMIC_CONDITION_SQL" />
|
||||
<result property="conditionField" column="CONDITION_FIELD" />
|
||||
<result property="modifyDateTime" column="MODIFY_DATE_TIME" />
|
||||
<result property="modifyUser" column="MODIFY_USER" />
|
||||
</resultMap>
|
||||
|
||||
<resultMap type="com.foreverwin.mesnac.common.model.CustomReportSearchResultColumnConfig" id="CustomReportSearchResultColumnConfigResult">
|
||||
<result property="handle" column="HANDLE" />
|
||||
<result property="site" column="SITE" />
|
||||
<result property="customReportMainModelBo" column="CUSTOM_REPORT_MAIN_MODEL_BO" />
|
||||
<result property="seq" column="SEQ" />
|
||||
<result property="columnField" column="COLUMN_FIELD" />
|
||||
<result property="columnName" column="COLUMN_NAME" />
|
||||
<result property="columnWidthPercent" column="COLUMN_WIDTH_PERCENT" />
|
||||
<result property="modifyDateTime" column="MODIFY_DATE_TIME" />
|
||||
<result property="modifyUser" column="MODIFY_USER" />
|
||||
</resultMap>
|
||||
|
||||
<select id="selectReportIdDialog" resultMap="CustomReportMainmodelResult">
|
||||
SELECT REPORT_ID,REPORT_TITLE
|
||||
FROM Z_CUSTOM_REPORT_MAINMODEL
|
||||
WHERE SITE=#{SITE}
|
||||
</select>
|
||||
|
||||
<select id="selectMain" resultMap="CustomReportMainmodelResult">
|
||||
SELECT 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
|
||||
FROM Z_CUSTOM_REPORT_MAINMODEL
|
||||
WHERE SITE='*' AND REPORT_ID=#{reportId}
|
||||
</select>
|
||||
|
||||
<select id="selectSearchConditionConfig" resultMap="CustomReportSearchConditionConfigResult">
|
||||
SELECT SEQ, CONDITION_NAME, CONDITION_FIELD, FIELD_TYPE, DIALOG_CHKBOX_SQL, REQUIRED_TYPE,
|
||||
ROW_ID, COLUMN_ID, COLUMN_WIDTH_PERCENT
|
||||
FROM Z_CUSTOM_REPORT_SEARCHCONDITION_CONFIG
|
||||
WHERE CUSTOM_REPORT_MAIN_MODEL_BO=#{mainhandle}
|
||||
</select>
|
||||
|
||||
<select id="selectDynSqlConfig" resultMap="CustomReportSearchConditionDynSQLConfigResult">
|
||||
SELECT SEQ, DYN_CONDITION_REPLACE_FIELD, DYNAMIC_CONDITION_SQL, CONDITION_FIELD
|
||||
FROM Z_CUSTOM_REPORT_SEARCHCONDITION_DYNSQL_CONFIG
|
||||
WHERE CUSTOM_REPORT_MAIN_MODEL_BO=#{mainhandle}
|
||||
</select>
|
||||
|
||||
<select id="selectResultColumnConfig" resultMap="CustomReportSearchResultColumnConfigResult">
|
||||
SELECT SEQ, COLUMN_FIELD, COLUMN_NAME, COLUMN_WIDTH_PERCENT
|
||||
FROM Z_CUSTOM_REPORT_SEARCHRESULT_COLUMN_CONFIG
|
||||
WHERE CUSTOM_REPORT_MAIN_MODEL_BO=#{mainhandle}
|
||||
ORDER BY TO_NUMBER(SEQ)
|
||||
</select>
|
||||
|
||||
<delete id="deleteDynSqlConfig" parameterType="String">
|
||||
DELETE FROM Z_CUSTOM_REPORT_SEARCHCONDITION_DYNSQL_CONFIG
|
||||
WHERE CUSTOM_REPORT_MAIN_MODEL_BO=#{mainhandle}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteResultColumnConfig" parameterType="String">
|
||||
DELETE FROM Z_CUSTOM_REPORT_SEARCHRESULT_COLUMN_CONFIG
|
||||
WHERE CUSTOM_REPORT_MAIN_MODEL_BO=#{mainhandle}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteSearchConditionConfig" parameterType="String">
|
||||
DELETE FROM Z_CUSTOM_REPORT_SEARCHCONDITION_CONFIG
|
||||
WHERE CUSTOM_REPORT_MAIN_MODEL_BO=#{mainhandle}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteMainmodel" parameterType="String">
|
||||
DELETE FROM Z_CUSTOM_REPORT_MAINMODEL
|
||||
WHERE HANDLE=#{mainhandle}
|
||||
</delete>
|
||||
|
||||
<insert id="insertDynSqlConfig" parameterType="com.foreverwin.mesnac.common.model.CustomReportSearchConditionDynSQLConfig">
|
||||
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>
|
||||
|
||||
<!--<insert id="insertResultColumnConfig" parameterType="CustomReportSearchResultColumnConfig">
|
||||
INSERT INTO Z_CUSTOM_REPORT_SEARCHRESULT_COLUMN_CONFIG (HANDLE, CUSTOM_REPORT_MAIN_MODEL_BO, SEQ,
|
||||
COLUMN_NAME, COLUMN_WIDTH_PERCENT, MODIFY_DATE_TIME, MODIFY_USER)
|
||||
VALUES(#{handle}, #{customReportMainModelBo}, #{seq}, #{columnName}, #{columnWidthPercent}, #{modifyDateTime}, #{modifyUser})
|
||||
</insert>-->
|
||||
<insert id="insertResultColumnConfig" parameterType="com.foreverwin.mesnac.common.model.CustomReportSearchResultColumnConfig">
|
||||
insert into Z_CUSTOM_REPORT_SEARCHRESULT_COLUMN_CONFIG
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="handle != null ">HANDLE,</if>
|
||||
<if test="customReportMainModelBo != null and customReportMainModelBo != '' ">CUSTOM_REPORT_MAIN_MODEL_BO,</if>
|
||||
<if test="seq != null and seq != '' ">SEQ,</if>
|
||||
<if test="columnField != null and columnField != '' ">COLUMN_FIELD,</if>
|
||||
<if test="columnName != null and columnName != '' ">COLUMN_NAME,</if>
|
||||
<if test="columnWidthPercent != null and columnWidthPercent != '' ">COLUMN_WIDTH_PERCENT,</if>
|
||||
<if test="modifyDateTime != null ">MODIFY_DATE_TIME,</if>
|
||||
<if test="modifyUser != null ">MODIFY_USER,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="handle != null ">#{handle},</if>
|
||||
<if test="customReportMainModelBo != null and customReportMainModelBo != '' ">#{customReportMainModelBo},</if>
|
||||
<if test="seq != null and seq != '' ">#{seq},</if>
|
||||
<if test="columnField != null and columnField != '' ">#{columnField},</if>
|
||||
<if test="columnName != null and columnName != '' ">#{columnName},</if>
|
||||
<if test="columnWidthPercent != null and columnWidthPercent != '' ">#{columnWidthPercent},</if>
|
||||
<if test="modifyDateTime != null ">#{modifyDateTime},</if>
|
||||
<if test="modifyUser != null ">#{modifyUser},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<!--<insert id="insertSearchConditionConfig" parameterType="CustomReportSearchConditionConfig">
|
||||
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)
|
||||
VALUES(#{handle}, #{site}, #{customReportMainModelBo}, #{seq}, #{conditionName}, #{conditionField}, #{fieldType}, #{dailogCheckboxSQL}, #{requiredType}, #{rowID}, #{columnID}, #{columnWidthPercent}, #{modifyDateTime}, #{modifyUser})
|
||||
</insert>-->
|
||||
<!-- <insert id="insertSearchConditionConfig" >
|
||||
insert into Z_CUSTOM_REPORT_MAINMODEL
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="_parameter != null ">HANDLE,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="_parameter != null ">#{handle},</if>
|
||||
</trim>
|
||||
</insert>-->
|
||||
|
||||
<insert id="insertSearchConditionConfig" parameterType="com.foreverwin.mesnac.common.model.CustomReportSearchConditionConfig">
|
||||
insert into Z_CUSTOM_REPORT_SEARCHCONDITION_CONFIG
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="handle != null ">HANDLE,</if>
|
||||
<if test="site != null and site != '' ">SITE,</if>
|
||||
<if test="customReportMainModelBo != null and customReportMainModelBo != '' ">CUSTOM_REPORT_MAIN_MODEL_BO,</if>
|
||||
<if test="seq != null">SEQ,</if>
|
||||
<if test="conditionName != null and conditionName != '' ">CONDITION_NAME,</if>
|
||||
<if test="conditionField != null and conditionField != '' ">CONDITION_FIELD,</if>
|
||||
<if test="fieldType != null and fieldType != '' ">FIELD_TYPE,</if>
|
||||
<if test="dailogCheckboxSQL != null and dailogCheckboxSQL != '' ">DIALOG_CHKBOX_SQL,</if>
|
||||
<if test="requiredType != null and requiredType != '' ">REQUIRED_TYPE,</if>
|
||||
<if test="rowID != null">ROW_ID,</if>
|
||||
<if test="columnID != null ">COLUMN_ID,</if>
|
||||
<if test="columnWidthPercent != null ">COLUMN_WIDTH_PERCENT,</if>
|
||||
<if test="modifyDateTime != null ">MODIFY_DATE_TIME,</if>
|
||||
<if test="modifyUser != null ">MODIFY_USER,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="handle != null ">#{handle},</if>
|
||||
<if test="site != null and site != '' ">#{site},</if>
|
||||
<if test="customReportMainModelBo != null and customReportMainModelBo != '' ">#{customReportMainModelBo},</if>
|
||||
<if test="seq != null ">#{seq},</if>
|
||||
<if test="conditionName != null and conditionName != '' ">#{conditionName},</if>
|
||||
<if test="conditionField != null and conditionField != '' ">#{conditionField},</if>
|
||||
<if test="fieldType != null and fieldType != '' ">#{fieldType},</if>
|
||||
<if test="dailogCheckboxSQL != null and dailogCheckboxSQL != '' ">#{dailogCheckboxSQL},</if>
|
||||
<if test="requiredType != null and requiredType != '' ">#{requiredType},</if>
|
||||
<if test="rowID != null ">#{rowID},</if>
|
||||
<if test="columnID != null ">#{columnID},</if>
|
||||
<if test="columnWidthPercent != null ">#{columnWidthPercent},</if>
|
||||
<if test="modifyDateTime != null ">#{modifyDateTime},</if>
|
||||
<if test="modifyUser != null ">#{modifyUser},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<insert id="insertInsertMainmodel" parameterType="com.foreverwin.mesnac.common.model.CustomReportMainmodel">
|
||||
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})
|
||||
</insert>
|
||||
|
||||
</mapper>
|
@ -0,0 +1,34 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.foreverwin.mesnac.common.mapper.CustomReportMapper">
|
||||
|
||||
<resultMap type="com.foreverwin.mesnac.common.model.CustomReportMainmodel" id="CustomReportMainmodelResult">
|
||||
<result property="handle" column="HANDLE" />
|
||||
<result property="site" column="SITE" />
|
||||
<result property="reportId" column="REPORT_ID" />
|
||||
<result property="reportTitle" column="REPORT_TITLE" />
|
||||
<result property="reportDesc" column="REPORT_DESC" />
|
||||
<result property="conditionSqlConfig" column="CONDITION_SQL_CONFIG" />
|
||||
<result property="displayType" column="DISPLAY_TYPE" />
|
||||
<result property="timeRefresh" column="TIME_REFRESH" />
|
||||
<result property="backgroundColor" column="BACKGROUND_COLOR" />
|
||||
<result property="fontColor" column="FONT_COLOR" />
|
||||
<result property="pageSize" column="PAGE_SIZE" />
|
||||
<result property="modifyDateTime" column="MODIFY_DATE_TIME" />
|
||||
<result property="modifyUser" column="MODIFY_USER" />
|
||||
</resultMap>
|
||||
|
||||
<select id="selectQuerySentence" resultMap="CustomReportMainmodelResult">
|
||||
SELECT CONDITION_SQL_CONFIG
|
||||
FROM Z_CUSTOM_REPORT_MAINMODEL
|
||||
WHERE SITE=#{site} AND REPORT_ID=#{reportId}
|
||||
</select>
|
||||
|
||||
|
||||
<select id="executeSqlQuery" resultType="java.util.Map">
|
||||
${sql}
|
||||
</select>
|
||||
|
||||
</mapper>
|
Loading…
Reference in New Issue