Merge remote-tracking branch 'origin/master'
commit
d123c530a4
@ -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,221 @@
|
||||
package com.foreverwin.mesnac.common.enums;
|
||||
|
||||
/**
|
||||
* @Description TODO
|
||||
* @Author zhaojiawei
|
||||
* @Since 2021-08-19
|
||||
*/
|
||||
public enum AnomalyConstant {
|
||||
;
|
||||
public enum Status {
|
||||
STATUS1("N","新建"),
|
||||
STATUS2("X","响应中"),
|
||||
STATUS3("F","方案确认"),
|
||||
STATUS4("J","纠防确认"),
|
||||
STATUS5("Q","取消"),
|
||||
STATUS6("G","关闭");
|
||||
|
||||
private String code;
|
||||
private String msg;
|
||||
|
||||
Status(String code, String msg) {
|
||||
this.code = code;
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public static String msg(String code) {
|
||||
Status[] statuses = values();
|
||||
for (Status status : statuses) {
|
||||
if (status.getCode().equals(code)) {
|
||||
return status.getMsg();
|
||||
}
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public String getMsg() {
|
||||
return msg;
|
||||
}
|
||||
|
||||
public void setMsg(String msg) {
|
||||
this.msg = msg;
|
||||
}
|
||||
}
|
||||
|
||||
public enum Type{
|
||||
Type1("Q","其他"),
|
||||
Type2("Z","质量"),
|
||||
Type3("S","设备");
|
||||
|
||||
private String code;
|
||||
private String msg;
|
||||
|
||||
Type(String code, String msg) {
|
||||
this.code = code;
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public static String msg(String code) {
|
||||
Type[] types = values();
|
||||
for (Type type : types) {
|
||||
if (type.getCode().equals(code)) {
|
||||
return type.getMsg();
|
||||
}
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public String getMsg() {
|
||||
return msg;
|
||||
}
|
||||
|
||||
public void setMsg(String msg) {
|
||||
this.msg = msg;
|
||||
}
|
||||
}
|
||||
|
||||
public enum Discover{
|
||||
Discover1("Z","自制"),
|
||||
Discover2("W","外协"),
|
||||
Discover3("D","到货"),
|
||||
Discover4("K","客户");
|
||||
|
||||
|
||||
private String code;
|
||||
private String msg;
|
||||
|
||||
Discover(String code, String msg) {
|
||||
this.code = code;
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public static String msg(String code) {
|
||||
Discover[] discovers = values();
|
||||
for (Discover discover : discovers) {
|
||||
if (discover.getCode().equals(code)) {
|
||||
return discover.getMsg();
|
||||
}
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public String getMsg() {
|
||||
return msg;
|
||||
}
|
||||
|
||||
public void setMsg(String msg) {
|
||||
this.msg = msg;
|
||||
}
|
||||
}
|
||||
|
||||
public enum ReportFrom{
|
||||
ReportFrom1("B","自报"),
|
||||
ReportFrom2("J","质检"),
|
||||
ReportFrom3("R","设备人员"),
|
||||
ReportFrom4("Z","设备自动"),
|
||||
ReportFrom5("C","维修自查"),
|
||||
ReportFrom6("Y","工艺");
|
||||
|
||||
|
||||
|
||||
private String code;
|
||||
private String msg;
|
||||
|
||||
ReportFrom(String code, String msg) {
|
||||
this.code = code;
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public static String msg(String code) {
|
||||
ReportFrom[] reportFroms = values();
|
||||
for (ReportFrom reportFrom : reportFroms) {
|
||||
if (reportFrom.getCode().equals(code)) {
|
||||
return reportFrom.getMsg();
|
||||
}
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public String getMsg() {
|
||||
return msg;
|
||||
}
|
||||
|
||||
public void setMsg(String msg) {
|
||||
this.msg = msg;
|
||||
}
|
||||
}
|
||||
|
||||
public enum ShutDown{
|
||||
ShutDown1("Y","是"),
|
||||
ShutDown2("N","否");
|
||||
|
||||
|
||||
|
||||
private String code;
|
||||
private String msg;
|
||||
|
||||
ShutDown(String code, String msg) {
|
||||
this.code = code;
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public static String msg(String code) {
|
||||
ShutDown[] shutDowns = values();
|
||||
for (ShutDown shutDown : shutDowns) {
|
||||
if (shutDown.getCode().equals(code)) {
|
||||
return shutDown.getMsg();
|
||||
}
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public String getMsg() {
|
||||
return msg;
|
||||
}
|
||||
|
||||
public void setMsg(String msg) {
|
||||
this.msg = msg;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
@ -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>
|
@ -0,0 +1,141 @@
|
||||
package com.foreverwin.mesnac.production.controller;
|
||||
|
||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.fasterxml.jackson.core.type.TypeReference;
|
||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||
import com.foreverwin.mesnac.production.model.SfcHoldLog;
|
||||
import com.foreverwin.mesnac.production.service.SfcHoldLogService;
|
||||
import com.foreverwin.modular.core.util.FrontPage;
|
||||
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;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Philip
|
||||
* @since 2021-08-19
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/Z-SFC-HOLD-LOG")
|
||||
public class SfcHoldLogController {
|
||||
|
||||
@Autowired
|
||||
public SfcHoldLogService sfcHoldLogService;
|
||||
|
||||
/**
|
||||
* 查询所有数据
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@ResponseBody
|
||||
@PostMapping("/sfcHold")
|
||||
public R sfcHold(@RequestBody Map<String,Object> map){
|
||||
List<SfcHoldLog> sfcHoldLogList = (List<SfcHoldLog>) map.get("sfcHoldLogList");
|
||||
ObjectMapper mapper = new ObjectMapper();
|
||||
sfcHoldLogList = mapper.convertValue(sfcHoldLogList, new TypeReference<List<SfcHoldLog>>() {
|
||||
});
|
||||
sfcHoldLogService.sfcHold(sfcHoldLogList);
|
||||
return R.ok();
|
||||
}
|
||||
/**
|
||||
* 根据id查询
|
||||
*
|
||||
* @param id 主键
|
||||
* @return
|
||||
*/
|
||||
@ResponseBody
|
||||
@GetMapping("/{id:.+}")
|
||||
public R getSfcHoldLogById(@PathVariable String id) {
|
||||
return R.ok( sfcHoldLogService.getById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询所有数据
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@ResponseBody
|
||||
@GetMapping("")
|
||||
public R getSfcHoldLogList(SfcHoldLog sfcHoldLog){
|
||||
List<SfcHoldLog> result;
|
||||
QueryWrapper<SfcHoldLog> queryWrapper = new QueryWrapper<>();
|
||||
queryWrapper.setEntity(sfcHoldLog);
|
||||
result = sfcHoldLogService.list(queryWrapper);
|
||||
return R.ok(result);
|
||||
}
|
||||
|
||||
/**
|
||||
* 分页查询数据
|
||||
*
|
||||
* @param frontPage 分页信息
|
||||
* @return
|
||||
*/
|
||||
@ResponseBody
|
||||
@GetMapping("/page")
|
||||
public R page(FrontPage<SfcHoldLog> frontPage, SfcHoldLog sfcHoldLog){
|
||||
IPage result;
|
||||
QueryWrapper<SfcHoldLog> queryWrapper = new QueryWrapper<>();
|
||||
queryWrapper.setEntity(sfcHoldLog);
|
||||
if (frontPage.getGlobalQuery() != null && !"".equals(frontPage.getGlobalQuery().trim())) {
|
||||
//TODO modify global query
|
||||
queryWrapper.lambda().and(wrapper -> wrapper
|
||||
.like(SfcHoldLog::getHandle, frontPage.getGlobalQuery())
|
||||
.or().like(SfcHoldLog::getSite, frontPage.getGlobalQuery())
|
||||
.or().like(SfcHoldLog::getSfcDispatchBo, frontPage.getGlobalQuery())
|
||||
.or().like(SfcHoldLog::getSfc, frontPage.getGlobalQuery())
|
||||
.or().like(SfcHoldLog::getStepId, frontPage.getGlobalQuery())
|
||||
.or().like(SfcHoldLog::getOperation, frontPage.getGlobalQuery())
|
||||
.or().like(SfcHoldLog::getType, frontPage.getGlobalQuery())
|
||||
.or().like(SfcHoldLog::getCreateUser, frontPage.getGlobalQuery())
|
||||
);
|
||||
}
|
||||
result = sfcHoldLogService.page(frontPage.getPagePlus(), queryWrapper);
|
||||
return R.ok(result);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增
|
||||
* @param sfcHoldLog 传递的实体
|
||||
* @return null 失败 实体成功
|
||||
*/
|
||||
@PostMapping
|
||||
public R save(@RequestBody SfcHoldLog sfcHoldLog) {
|
||||
return R.ok(sfcHoldLogService.save(sfcHoldLog));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改
|
||||
* @param sfcHoldLog 传递的实体
|
||||
* @return null 失败 实体成功
|
||||
*/
|
||||
@PutMapping
|
||||
public R updateById(@RequestBody SfcHoldLog sfcHoldLog) {
|
||||
return R.ok(sfcHoldLogService.updateById(sfcHoldLog));
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据id删除对象
|
||||
* @param id 实体ID
|
||||
* @return 0 失败 1 成功
|
||||
*/
|
||||
@ResponseBody
|
||||
@RequestMapping(method = RequestMethod.DELETE, value = "/{id:.+}")
|
||||
public R removeById(@PathVariable("id") String id){
|
||||
return R.ok(sfcHoldLogService.removeById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量删除对象
|
||||
* @param ids 实体集合ID
|
||||
* @return 0 失败 1 成功
|
||||
*/
|
||||
@ResponseBody
|
||||
@RequestMapping(method = RequestMethod.POST, value = "/delete-batch")
|
||||
public R removeByIds(List<String> ids){
|
||||
return R.ok(sfcHoldLogService.removeByIds(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
package com.foreverwin.mesnac.production.mapper;
|
||||
|
||||
import com.foreverwin.mesnac.production.model.SfcHoldLog;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 产品条码保留记录 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author Philip
|
||||
* @since 2021-08-19
|
||||
*/
|
||||
@Repository
|
||||
public interface SfcHoldLogMapper extends BaseMapper<SfcHoldLog> {
|
||||
|
||||
}
|
@ -0,0 +1,201 @@
|
||||
package com.foreverwin.mesnac.production.model;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.baomidou.mybatisplus.extension.activerecord.Model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 产品条码保留记录
|
||||
* </p>
|
||||
*
|
||||
* @author Philip
|
||||
* @since 2021-08-19
|
||||
*/
|
||||
|
||||
@TableName("Z_SFC_HOLD_LOG")
|
||||
|
||||
public class SfcHoldLog extends Model<SfcHoldLog> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
@TableId(value = "HANDLE", type = IdType.INPUT)
|
||||
private String handle;
|
||||
/**
|
||||
* 站点
|
||||
*/
|
||||
@TableField("SITE")
|
||||
private String site;
|
||||
/**
|
||||
* 派工单主键
|
||||
*/
|
||||
@TableField("SFC_DISPATCH_BO")
|
||||
private String sfcDispatchBo;
|
||||
/**
|
||||
* 产品条码
|
||||
*/
|
||||
@TableField("SFC")
|
||||
private String sfc;
|
||||
/**
|
||||
* 步骤
|
||||
*/
|
||||
@TableField("STEP_ID")
|
||||
private String stepId;
|
||||
/**
|
||||
* 工序
|
||||
*/
|
||||
@TableField("OPERATION")
|
||||
private String operation;
|
||||
/**
|
||||
* 保留时长
|
||||
*/
|
||||
@TableField("HOLD_DURATION")
|
||||
private BigDecimal holdDuration;
|
||||
/**
|
||||
* 类型:暂停取消
|
||||
*/
|
||||
@TableField("TYPE")
|
||||
private String type;
|
||||
/**
|
||||
* 创建人
|
||||
*/
|
||||
@TableField("CREATE_USER")
|
||||
private String createUser;
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
@TableField("CREATED_DATE_TIME")
|
||||
private LocalDateTime createdDateTime;
|
||||
|
||||
|
||||
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 getSfcDispatchBo() {
|
||||
return sfcDispatchBo;
|
||||
}
|
||||
|
||||
public void setSfcDispatchBo(String sfcDispatchBo) {
|
||||
this.sfcDispatchBo = sfcDispatchBo;
|
||||
}
|
||||
|
||||
public String getSfc() {
|
||||
return sfc;
|
||||
}
|
||||
|
||||
public void setSfc(String sfc) {
|
||||
this.sfc = sfc;
|
||||
}
|
||||
|
||||
public String getStepId() {
|
||||
return stepId;
|
||||
}
|
||||
|
||||
public void setStepId(String stepId) {
|
||||
this.stepId = stepId;
|
||||
}
|
||||
|
||||
public String getOperation() {
|
||||
return operation;
|
||||
}
|
||||
|
||||
public void setOperation(String operation) {
|
||||
this.operation = operation;
|
||||
}
|
||||
|
||||
public BigDecimal getHoldDuration() {
|
||||
return holdDuration;
|
||||
}
|
||||
|
||||
public void setHoldDuration(BigDecimal holdDuration) {
|
||||
this.holdDuration = holdDuration;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getCreateUser() {
|
||||
return createUser;
|
||||
}
|
||||
|
||||
public void setCreateUser(String createUser) {
|
||||
this.createUser = createUser;
|
||||
}
|
||||
|
||||
public LocalDateTime getCreatedDateTime() {
|
||||
return createdDateTime;
|
||||
}
|
||||
|
||||
public void setCreatedDateTime(LocalDateTime createdDateTime) {
|
||||
this.createdDateTime = createdDateTime;
|
||||
}
|
||||
|
||||
public static final String HANDLE = "HANDLE";
|
||||
|
||||
public static final String SITE = "SITE";
|
||||
|
||||
public static final String SFC_DISPATCH_BO = "SFC_DISPATCH_BO";
|
||||
|
||||
public static final String SFC = "SFC";
|
||||
|
||||
public static final String STEP_ID = "STEP_ID";
|
||||
|
||||
public static final String OPERATION = "OPERATION";
|
||||
|
||||
public static final String HOLD_DURATION = "HOLD_DURATION";
|
||||
|
||||
public static final String TYPE = "TYPE";
|
||||
|
||||
public static final String CREATE_USER = "CREATE_USER";
|
||||
|
||||
public static final String CREATED_DATE_TIME = "CREATED_DATE_TIME";
|
||||
|
||||
|
||||
@Override
|
||||
protected Serializable pkVal() {
|
||||
return this.handle;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "SfcHoldLog{" +
|
||||
"handle = " + handle +
|
||||
", site = " + site +
|
||||
", sfcDispatchBo = " + sfcDispatchBo +
|
||||
", sfc = " + sfc +
|
||||
", stepId = " + stepId +
|
||||
", operation = " + operation +
|
||||
", holdDuration = " + holdDuration +
|
||||
", type = " + type +
|
||||
", createUser = " + createUser +
|
||||
", createdDateTime = " + createdDateTime +
|
||||
"}";
|
||||
}
|
||||
}
|
@ -0,0 +1,30 @@
|
||||
package com.foreverwin.mesnac.production.service;
|
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.foreverwin.mesnac.production.model.SfcHoldLog;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.foreverwin.modular.core.util.FrontPage;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 产品条码保留记录 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author Philip
|
||||
* @since 2021-08-19
|
||||
*/
|
||||
public interface SfcHoldLogService extends IService<SfcHoldLog> {
|
||||
|
||||
/**
|
||||
* 分页查询
|
||||
* @param frontPage
|
||||
* @return
|
||||
*/
|
||||
IPage<SfcHoldLog> selectPage(FrontPage<SfcHoldLog> frontPage, SfcHoldLog sfcHoldLog);
|
||||
|
||||
List<SfcHoldLog> selectList(SfcHoldLog sfcHoldLog);
|
||||
|
||||
void sfcHold(List<SfcHoldLog> sfcHoldLogList);
|
||||
}
|
@ -0,0 +1,127 @@
|
||||
package com.foreverwin.mesnac.production.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.foreverwin.mesnac.common.dto.SfcDispatchDto;
|
||||
import com.foreverwin.mesnac.common.enums.HandleEnum;
|
||||
import com.foreverwin.mesnac.common.service.SfcDispatchCommonService;
|
||||
import com.foreverwin.mesnac.common.util.ExceptionUtil;
|
||||
import com.foreverwin.mesnac.meapi.dto.SfcDto;
|
||||
import com.foreverwin.mesnac.production.mapper.SfcHoldLogMapper;
|
||||
import com.foreverwin.mesnac.production.mapper.SplitSfcMapper;
|
||||
import com.foreverwin.mesnac.production.model.SfcHoldLog;
|
||||
import com.foreverwin.mesnac.production.service.SfcHoldLogService;
|
||||
import com.foreverwin.modular.core.exception.BaseException;
|
||||
import com.foreverwin.modular.core.meext.MEServices;
|
||||
import com.foreverwin.modular.core.util.CommonMethods;
|
||||
import com.foreverwin.modular.core.util.FrontPage;
|
||||
import com.sap.me.production.SfcStateServiceInterface;
|
||||
import com.sap.me.production.UpdateSfcStatusRequest;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.math.RoundingMode;
|
||||
import java.time.Duration;
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 产品条码保留记录 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* @author Philip
|
||||
* @since 2021-08-19
|
||||
*/
|
||||
@Service
|
||||
@Transactional(rollbackFor = Exception.class)
|
||||
public class SfcHoldLogServiceImpl extends ServiceImpl<SfcHoldLogMapper, SfcHoldLog> implements SfcHoldLogService {
|
||||
|
||||
@Autowired
|
||||
private SfcDispatchCommonService sfcDispatchCommonService;
|
||||
@Autowired
|
||||
private SfcHoldLogMapper sfcHoldLogMapper;
|
||||
@Autowired
|
||||
private SplitSfcMapper splitSfcMapper;
|
||||
@Override
|
||||
public IPage<SfcHoldLog> selectPage(FrontPage<SfcHoldLog> frontPage, SfcHoldLog sfcHoldLog) {
|
||||
QueryWrapper<SfcHoldLog> queryWrapper = new QueryWrapper<>();
|
||||
queryWrapper.setEntity(sfcHoldLog);
|
||||
return super.page(frontPage.getPagePlus(), queryWrapper);
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<SfcHoldLog> selectList(SfcHoldLog sfcHoldLog) {
|
||||
QueryWrapper<SfcHoldLog> queryWrapper = new QueryWrapper<>();
|
||||
queryWrapper.setEntity(sfcHoldLog);
|
||||
return super.list(queryWrapper);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void sfcHold(List<SfcHoldLog> sfcHoldLogList) {
|
||||
for (SfcHoldLog sfcHoldLog:sfcHoldLogList){
|
||||
String site = CommonMethods.getSite();
|
||||
LocalDateTime now = LocalDateTime.now();
|
||||
String sfc = sfcHoldLog.getSfc();
|
||||
String type = sfcHoldLog.getType();
|
||||
String sfcBo = HandleEnum.SFC.getHandle(site, sfc);
|
||||
SfcDto sfcData = splitSfcMapper.getSfcData(sfcBo);
|
||||
if (sfcData==null){
|
||||
throw new BaseException("未找到产品条码信息");
|
||||
}
|
||||
if (sfcHoldLog.getType().equals("HOLD")&&!sfcData.getStatus().equals("403")){
|
||||
throw new BaseException("产品状态不可暂停");
|
||||
}
|
||||
if (sfcHoldLog.getType().equals("CANCEL")&&!sfcData.getStatus().equals("404")){
|
||||
throw new BaseException("产品状态不可取消暂停");
|
||||
}
|
||||
String stepId = sfcData.getStepId();
|
||||
String operation = sfcData.getOperation();
|
||||
SfcDispatchDto sfcDispatchDto = new SfcDispatchDto();
|
||||
sfcDispatchDto.setSfc(sfc);
|
||||
sfcDispatchDto.setStepId(stepId);
|
||||
sfcDispatchDto.setOperation(operation);
|
||||
SfcDispatchDto sfcDispatchBySfc = sfcDispatchCommonService.findSfcDispatchBySfc(sfcDispatchDto);
|
||||
SfcStateServiceInterface sfcStateServiceInterface = null;
|
||||
BigDecimal holdDuration=null;
|
||||
try {
|
||||
sfcStateServiceInterface = MEServices.create("com.sap.me.production", "SfcStateService", CommonMethods.getSite());
|
||||
UpdateSfcStatusRequest updateSfcStatusRequest = new UpdateSfcStatusRequest();
|
||||
updateSfcStatusRequest.setSfcRef(sfcBo);
|
||||
if (type.equals("HOLD")){
|
||||
updateSfcStatusRequest.setStatusRef(HandleEnum.STATUS.getHandle(site,"404"));
|
||||
}else {
|
||||
updateSfcStatusRequest.setStatusRef(HandleEnum.STATUS.getHandle(site,"403"));
|
||||
//计算保留时长
|
||||
QueryWrapper<SfcHoldLog> ueryWrapper=new QueryWrapper<>();
|
||||
ueryWrapper.eq(SfcHoldLog.STEP_ID,stepId);
|
||||
ueryWrapper.eq(SfcHoldLog.SFC,sfc);
|
||||
List<SfcHoldLog> list = list(ueryWrapper);
|
||||
LocalDateTime holdTime = list.get(0).getCreatedDateTime();
|
||||
long workHourSeconds = Duration.between(holdTime, now).getSeconds();
|
||||
holdDuration = new BigDecimal(workHourSeconds).divide(BigDecimal.valueOf(3600), 2, RoundingMode.HALF_UP);
|
||||
}
|
||||
sfcStateServiceInterface.updateSfcStatus(updateSfcStatusRequest);
|
||||
} catch (Exception e) {
|
||||
ExceptionUtil.throwException(e);
|
||||
}
|
||||
sfcHoldLog.setHandle(UUID.randomUUID().toString());
|
||||
sfcHoldLog.setSite(site);
|
||||
sfcHoldLog.setSfcDispatchBo(sfcDispatchBySfc.getHandle());
|
||||
sfcHoldLog.setStepId(stepId);
|
||||
sfcHoldLog.setOperation(operation);
|
||||
sfcHoldLog.setHoldDuration(holdDuration);
|
||||
sfcHoldLog.setCreateUser(CommonMethods.getUser());
|
||||
sfcHoldLog.setCreatedDateTime(now);
|
||||
save(sfcHoldLog);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,402 @@
|
||||
<?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.production.mapper.SfcHoldLogMapper">
|
||||
|
||||
<!-- 通用查询映射结果 -->
|
||||
<resultMap id="BaseResultMap" type="com.foreverwin.mesnac.production.model.SfcHoldLog">
|
||||
<id column="HANDLE" property="handle" />
|
||||
<result column="SITE" property="site" />
|
||||
<result column="SFC_DISPATCH_BO" property="sfcDispatchBo" />
|
||||
<result column="SFC" property="sfc" />
|
||||
<result column="STEP_ID" property="stepId" />
|
||||
<result column="OPERATION" property="operation" />
|
||||
<result column="HOLD_DURATION" property="holdDuration" />
|
||||
<result column="TYPE" property="type" />
|
||||
<result column="CREATE_USER" property="createUser" />
|
||||
<result column="CREATED_DATE_TIME" property="createdDateTime" />
|
||||
</resultMap>
|
||||
|
||||
<!-- 通用查询结果列 -->
|
||||
<sql id="Base_Column_List">
|
||||
HANDLE, SITE, SFC_DISPATCH_BO, SFC, STEP_ID, OPERATION, HOLD_DURATION, TYPE, CREATE_USER, CREATED_DATE_TIME
|
||||
</sql>
|
||||
|
||||
<!-- BaseMapper标准查询/修改/删除 -->
|
||||
<select id="selectById" resultMap="BaseResultMap">
|
||||
SELECT <include refid="Base_Column_List"></include> FROM Z_SFC_HOLD_LOG WHERE HANDLE=#{handle}
|
||||
</select>
|
||||
|
||||
<select id="selectByMap" resultMap="BaseResultMap">
|
||||
SELECT <include refid="Base_Column_List"></include>
|
||||
FROM Z_SFC_HOLD_LOG
|
||||
<if test="cm!=null and !cm.isEmpty">
|
||||
<where>
|
||||
<foreach collection="cm.keys" item="k" separator="AND">
|
||||
<if test="cm[k] != null">
|
||||
${k} = #{cm[${k}]}
|
||||
</if>
|
||||
</foreach>
|
||||
</where>
|
||||
</if>
|
||||
</select>
|
||||
|
||||
<select id="selectBatchIds" resultMap="BaseResultMap">
|
||||
SELECT <include refid="Base_Column_List"></include>
|
||||
FROM Z_SFC_HOLD_LOG WHERE HANDLE IN (
|
||||
<foreach item="item" index="index" collection="coll" separator=",">#{item}
|
||||
</foreach>)
|
||||
</select>
|
||||
|
||||
<select id="selectOne" resultMap="BaseResultMap">
|
||||
SELECT <include refid="Base_Column_List"></include> FROM Z_SFC_HOLD_LOG
|
||||
<where>
|
||||
<if test="ew.entity.handle!=null">
|
||||
HANDLE=#{ew.handle}
|
||||
</if>
|
||||
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
|
||||
<if test="ew.entity.sfcDispatchBo!=null"> AND SFC_DISPATCH_BO=#{ew.entity.sfcDispatchBo}</if>
|
||||
<if test="ew.entity.sfc!=null"> AND SFC=#{ew.entity.sfc}</if>
|
||||
<if test="ew.entity.stepId!=null"> AND STEP_ID=#{ew.entity.stepId}</if>
|
||||
<if test="ew.entity.operation!=null"> AND OPERATION=#{ew.entity.operation}</if>
|
||||
<if test="ew.entity.holdDuration!=null"> AND HOLD_DURATION=#{ew.entity.holdDuration}</if>
|
||||
<if test="ew.entity.type!=null"> AND TYPE=#{ew.entity.type}</if>
|
||||
<if test="ew.entity.createUser!=null"> AND CREATE_USER=#{ew.entity.createUser}</if>
|
||||
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectCount" resultType="Integer">
|
||||
SELECT COUNT(1) FROM Z_SFC_HOLD_LOG
|
||||
<where>
|
||||
<if test="ew!=null">
|
||||
<if test="ew.entity!=null">
|
||||
<if test="ew.entity.handle!=null">
|
||||
HANDLE=#{ew.entity.handle}
|
||||
</if>
|
||||
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
|
||||
<if test="ew.entity.sfcDispatchBo!=null"> AND SFC_DISPATCH_BO=#{ew.entity.sfcDispatchBo}</if>
|
||||
<if test="ew.entity.sfc!=null"> AND SFC=#{ew.entity.sfc}</if>
|
||||
<if test="ew.entity.stepId!=null"> AND STEP_ID=#{ew.entity.stepId}</if>
|
||||
<if test="ew.entity.operation!=null"> AND OPERATION=#{ew.entity.operation}</if>
|
||||
<if test="ew.entity.holdDuration!=null"> AND HOLD_DURATION=#{ew.entity.holdDuration}</if>
|
||||
<if test="ew.entity.type!=null"> AND TYPE=#{ew.entity.type}</if>
|
||||
<if test="ew.entity.createUser!=null"> AND CREATE_USER=#{ew.entity.createUser}</if>
|
||||
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
|
||||
</if>
|
||||
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
|
||||
${ew.sqlSegment}
|
||||
</if>
|
||||
</if>
|
||||
</where>
|
||||
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
|
||||
${ew.sqlSegment}
|
||||
</if>
|
||||
</select>
|
||||
|
||||
<select id="selectList" resultMap="BaseResultMap">
|
||||
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM Z_SFC_HOLD_LOG
|
||||
<where>
|
||||
<if test="ew!=null">
|
||||
<if test="ew.entity!=null">
|
||||
<if test="ew.entity.handle!=null">
|
||||
HANDLE=#{ew.entity.handle}
|
||||
</if>
|
||||
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
|
||||
<if test="ew.entity.sfcDispatchBo!=null"> AND SFC_DISPATCH_BO=#{ew.entity.sfcDispatchBo}</if>
|
||||
<if test="ew.entity.sfc!=null"> AND SFC=#{ew.entity.sfc}</if>
|
||||
<if test="ew.entity.stepId!=null"> AND STEP_ID=#{ew.entity.stepId}</if>
|
||||
<if test="ew.entity.operation!=null"> AND OPERATION=#{ew.entity.operation}</if>
|
||||
<if test="ew.entity.holdDuration!=null"> AND HOLD_DURATION=#{ew.entity.holdDuration}</if>
|
||||
<if test="ew.entity.type!=null"> AND TYPE=#{ew.entity.type}</if>
|
||||
<if test="ew.entity.createUser!=null"> AND CREATE_USER=#{ew.entity.createUser}</if>
|
||||
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
|
||||
</if>
|
||||
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
|
||||
${ew.sqlSegment}
|
||||
</if>
|
||||
</if>
|
||||
</where>
|
||||
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
|
||||
${ew.sqlSegment}
|
||||
</if>
|
||||
</select>
|
||||
|
||||
<select id="selectMaps" resultType="HashMap">
|
||||
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM Z_SFC_HOLD_LOG
|
||||
<where>
|
||||
<if test="ew!=null">
|
||||
<if test="ew.entity!=null">
|
||||
<if test="ew.entity.handle!=null">
|
||||
HANDLE=#{ew.entity.handle}
|
||||
</if>
|
||||
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
|
||||
<if test="ew.entity.sfcDispatchBo!=null"> AND SFC_DISPATCH_BO=#{ew.entity.sfcDispatchBo}</if>
|
||||
<if test="ew.entity.sfc!=null"> AND SFC=#{ew.entity.sfc}</if>
|
||||
<if test="ew.entity.stepId!=null"> AND STEP_ID=#{ew.entity.stepId}</if>
|
||||
<if test="ew.entity.operation!=null"> AND OPERATION=#{ew.entity.operation}</if>
|
||||
<if test="ew.entity.holdDuration!=null"> AND HOLD_DURATION=#{ew.entity.holdDuration}</if>
|
||||
<if test="ew.entity.type!=null"> AND TYPE=#{ew.entity.type}</if>
|
||||
<if test="ew.entity.createUser!=null"> AND CREATE_USER=#{ew.entity.createUser}</if>
|
||||
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
|
||||
</if>
|
||||
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
|
||||
${ew.sqlSegment}
|
||||
</if>
|
||||
</if>
|
||||
</where>
|
||||
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
|
||||
${ew.sqlSegment}
|
||||
</if>
|
||||
</select>
|
||||
|
||||
<select id="selectObjs" resultType="Object">
|
||||
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM Z_SFC_HOLD_LOG
|
||||
<where>
|
||||
<if test="ew!=null">
|
||||
<if test="ew.entity!=null">
|
||||
<if test="ew.entity.handle!=null">
|
||||
HANDLE=#{ew.entity.handle}
|
||||
</if>
|
||||
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
|
||||
<if test="ew.entity.sfcDispatchBo!=null"> AND SFC_DISPATCH_BO=#{ew.entity.sfcDispatchBo}</if>
|
||||
<if test="ew.entity.sfc!=null"> AND SFC=#{ew.entity.sfc}</if>
|
||||
<if test="ew.entity.stepId!=null"> AND STEP_ID=#{ew.entity.stepId}</if>
|
||||
<if test="ew.entity.operation!=null"> AND OPERATION=#{ew.entity.operation}</if>
|
||||
<if test="ew.entity.holdDuration!=null"> AND HOLD_DURATION=#{ew.entity.holdDuration}</if>
|
||||
<if test="ew.entity.type!=null"> AND TYPE=#{ew.entity.type}</if>
|
||||
<if test="ew.entity.createUser!=null"> AND CREATE_USER=#{ew.entity.createUser}</if>
|
||||
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
|
||||
</if>
|
||||
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
|
||||
${ew.sqlSegment}
|
||||
</if>
|
||||
</if>
|
||||
</where>
|
||||
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
|
||||
${ew.sqlSegment}
|
||||
</if>
|
||||
</select>
|
||||
|
||||
<select id="selectPage" resultMap="BaseResultMap">
|
||||
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM Z_SFC_HOLD_LOG
|
||||
<where>
|
||||
<if test="ew!=null">
|
||||
<if test="ew.entity!=null">
|
||||
<if test="ew.entity.handle!=null">
|
||||
HANDLE=#{ew.entity.handle}
|
||||
</if>
|
||||
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
|
||||
<if test="ew.entity.sfcDispatchBo!=null"> AND SFC_DISPATCH_BO=#{ew.entity.sfcDispatchBo}</if>
|
||||
<if test="ew.entity.sfc!=null"> AND SFC=#{ew.entity.sfc}</if>
|
||||
<if test="ew.entity.stepId!=null"> AND STEP_ID=#{ew.entity.stepId}</if>
|
||||
<if test="ew.entity.operation!=null"> AND OPERATION=#{ew.entity.operation}</if>
|
||||
<if test="ew.entity.holdDuration!=null"> AND HOLD_DURATION=#{ew.entity.holdDuration}</if>
|
||||
<if test="ew.entity.type!=null"> AND TYPE=#{ew.entity.type}</if>
|
||||
<if test="ew.entity.createUser!=null"> AND CREATE_USER=#{ew.entity.createUser}</if>
|
||||
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
|
||||
</if>
|
||||
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
|
||||
${ew.sqlSegment}
|
||||
</if>
|
||||
</if>
|
||||
</where>
|
||||
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
|
||||
${ew.sqlSegment}
|
||||
</if>
|
||||
</select>
|
||||
|
||||
<select id="selectMapsPage" resultType="HashMap">
|
||||
SELECT <choose><when test="ew != null and ew.sqlSelect != null">${ew.sqlSelect}</when><otherwise><include refid="Base_Column_List"></include></otherwise></choose> FROM Z_SFC_HOLD_LOG
|
||||
<where>
|
||||
<if test="ew!=null">
|
||||
<if test="ew.entity!=null">
|
||||
<if test="ew.entity.handle!=null">
|
||||
HANDLE=#{ew.entity.handle}
|
||||
</if>
|
||||
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
|
||||
<if test="ew.entity.sfcDispatchBo!=null"> AND SFC_DISPATCH_BO=#{ew.entity.sfcDispatchBo}</if>
|
||||
<if test="ew.entity.sfc!=null"> AND SFC=#{ew.entity.sfc}</if>
|
||||
<if test="ew.entity.stepId!=null"> AND STEP_ID=#{ew.entity.stepId}</if>
|
||||
<if test="ew.entity.operation!=null"> AND OPERATION=#{ew.entity.operation}</if>
|
||||
<if test="ew.entity.holdDuration!=null"> AND HOLD_DURATION=#{ew.entity.holdDuration}</if>
|
||||
<if test="ew.entity.type!=null"> AND TYPE=#{ew.entity.type}</if>
|
||||
<if test="ew.entity.createUser!=null"> AND CREATE_USER=#{ew.entity.createUser}</if>
|
||||
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
|
||||
</if>
|
||||
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
|
||||
${ew.sqlSegment}
|
||||
</if>
|
||||
</if>
|
||||
</where>
|
||||
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
|
||||
${ew.sqlSegment}
|
||||
</if>
|
||||
</select>
|
||||
|
||||
<insert id="insert" parameterType="com.foreverwin.mesnac.production.model.SfcHoldLog">
|
||||
INSERT INTO Z_SFC_HOLD_LOG
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
HANDLE,
|
||||
<if test="site!=null">SITE,</if>
|
||||
<if test="sfcDispatchBo!=null">SFC_DISPATCH_BO,</if>
|
||||
<if test="sfc!=null">SFC,</if>
|
||||
<if test="stepId!=null">STEP_ID,</if>
|
||||
<if test="operation!=null">OPERATION,</if>
|
||||
<if test="holdDuration!=null">HOLD_DURATION,</if>
|
||||
<if test="type!=null">TYPE,</if>
|
||||
<if test="createUser!=null">CREATE_USER,</if>
|
||||
<if test="createdDateTime!=null">CREATED_DATE_TIME,</if>
|
||||
</trim> VALUES
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
#{handle},
|
||||
<if test="site!=null">#{site},</if>
|
||||
<if test="sfcDispatchBo!=null">#{sfcDispatchBo},</if>
|
||||
<if test="sfc!=null">#{sfc},</if>
|
||||
<if test="stepId!=null">#{stepId},</if>
|
||||
<if test="operation!=null">#{operation},</if>
|
||||
<if test="holdDuration!=null">#{holdDuration},</if>
|
||||
<if test="type!=null">#{type},</if>
|
||||
<if test="createUser!=null">#{createUser},</if>
|
||||
<if test="createdDateTime!=null">#{createdDateTime},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<insert id="insertAllColumn" parameterType="com.foreverwin.mesnac.production.model.SfcHoldLog">
|
||||
INSERT INTO Z_SFC_HOLD_LOG
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<include refid="Base_Column_List"></include>
|
||||
</trim> VALUES
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
#{handle},
|
||||
#{site},
|
||||
#{sfcDispatchBo},
|
||||
#{sfc},
|
||||
#{stepId},
|
||||
#{operation},
|
||||
#{holdDuration},
|
||||
#{type},
|
||||
#{createUser},
|
||||
#{createdDateTime},
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
|
||||
<update id="updateById">
|
||||
UPDATE Z_SFC_HOLD_LOG <trim prefix="SET" suffixOverrides=",">
|
||||
<if test="et.site!=null">SITE=#{et.site},</if>
|
||||
<if test="et.sfcDispatchBo!=null">SFC_DISPATCH_BO=#{et.sfcDispatchBo},</if>
|
||||
<if test="et.sfc!=null">SFC=#{et.sfc},</if>
|
||||
<if test="et.stepId!=null">STEP_ID=#{et.stepId},</if>
|
||||
<if test="et.operation!=null">OPERATION=#{et.operation},</if>
|
||||
<if test="et.holdDuration!=null">HOLD_DURATION=#{et.holdDuration},</if>
|
||||
<if test="et.type!=null">TYPE=#{et.type},</if>
|
||||
<if test="et.createUser!=null">CREATE_USER=#{et.createUser},</if>
|
||||
<if test="et.createdDateTime!=null">CREATED_DATE_TIME=#{et.createdDateTime},</if>
|
||||
</trim> WHERE HANDLE=#{et.handle} <if test="et instanceof java.util.Map"><if test="et.MP_OPTLOCK_VERSION_ORIGINAL!=null">and ${et.MP_OPTLOCK_VERSION_COLUMN}=#{et.MP_OPTLOCK_VERSION_ORIGINAL}</if></if>
|
||||
</update>
|
||||
|
||||
|
||||
<update id="updateAllColumnById">
|
||||
UPDATE Z_SFC_HOLD_LOG <trim prefix="SET" suffixOverrides=",">
|
||||
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},
|
||||
</trim> WHERE HANDLE=#{et.handle} <if test="et instanceof java.util.Map"><if test="et.MP_OPTLOCK_VERSION_ORIGINAL!=null">and ${et.MP_OPTLOCK_VERSION_COLUMN}=#{et.MP_OPTLOCK_VERSION_ORIGINAL}</if></if>
|
||||
</update>
|
||||
|
||||
|
||||
<update id="update">
|
||||
UPDATE Z_SFC_HOLD_LOG <trim prefix="SET" suffixOverrides=",">
|
||||
<if test="et.site!=null">SITE=#{et.site},</if>
|
||||
<if test="et.sfcDispatchBo!=null">SFC_DISPATCH_BO=#{et.sfcDispatchBo},</if>
|
||||
<if test="et.sfc!=null">SFC=#{et.sfc},</if>
|
||||
<if test="et.stepId!=null">STEP_ID=#{et.stepId},</if>
|
||||
<if test="et.operation!=null">OPERATION=#{et.operation},</if>
|
||||
<if test="et.holdDuration!=null">HOLD_DURATION=#{et.holdDuration},</if>
|
||||
<if test="et.type!=null">TYPE=#{et.type},</if>
|
||||
<if test="et.createUser!=null">CREATE_USER=#{et.createUser},</if>
|
||||
<if test="et.createdDateTime!=null">CREATED_DATE_TIME=#{et.createdDateTime},</if>
|
||||
</trim>
|
||||
<where>
|
||||
<if test="ew!=null">
|
||||
<if test="ew.entity!=null">
|
||||
HANDLE=#{ew.entity.handle}
|
||||
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
|
||||
<if test="ew.entity.sfcDispatchBo!=null"> AND SFC_DISPATCH_BO=#{ew.entity.sfcDispatchBo}</if>
|
||||
<if test="ew.entity.sfc!=null"> AND SFC=#{ew.entity.sfc}</if>
|
||||
<if test="ew.entity.stepId!=null"> AND STEP_ID=#{ew.entity.stepId}</if>
|
||||
<if test="ew.entity.operation!=null"> AND OPERATION=#{ew.entity.operation}</if>
|
||||
<if test="ew.entity.holdDuration!=null"> AND HOLD_DURATION=#{ew.entity.holdDuration}</if>
|
||||
<if test="ew.entity.type!=null"> AND TYPE=#{ew.entity.type}</if>
|
||||
<if test="ew.entity.createUser!=null"> AND CREATE_USER=#{ew.entity.createUser}</if>
|
||||
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
|
||||
</if>
|
||||
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
|
||||
${ew.sqlSegment}
|
||||
</if>
|
||||
</if>
|
||||
</where>
|
||||
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
|
||||
${ew.sqlSegment}
|
||||
</if>
|
||||
</update>
|
||||
|
||||
<delete id="deleteById">
|
||||
DELETE FROM Z_SFC_HOLD_LOG WHERE HANDLE=#{handle}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteByMap">
|
||||
DELETE FROM Z_SFC_HOLD_LOG
|
||||
<if test="cm!=null and !cm.isEmpty">
|
||||
<where>
|
||||
<foreach collection="cm.keys" item="k" separator="AND">
|
||||
<if test="cm[k] != null">
|
||||
${k} = #{cm[${k}]}
|
||||
</if>
|
||||
</foreach>
|
||||
</where>
|
||||
</if>
|
||||
</delete>
|
||||
|
||||
<delete id="delete">
|
||||
DELETE FROM Z_SFC_HOLD_LOG
|
||||
<where>
|
||||
<if test="ew!=null">
|
||||
<if test="ew.entity!=null">
|
||||
<if test="ew.entity.handle!=null">
|
||||
HANDLE=#{ew.entity.handle}
|
||||
</if>
|
||||
<if test="ew.entity.site!=null"> AND SITE=#{ew.entity.site}</if>
|
||||
<if test="ew.entity.sfcDispatchBo!=null"> AND SFC_DISPATCH_BO=#{ew.entity.sfcDispatchBo}</if>
|
||||
<if test="ew.entity.sfc!=null"> AND SFC=#{ew.entity.sfc}</if>
|
||||
<if test="ew.entity.stepId!=null"> AND STEP_ID=#{ew.entity.stepId}</if>
|
||||
<if test="ew.entity.operation!=null"> AND OPERATION=#{ew.entity.operation}</if>
|
||||
<if test="ew.entity.holdDuration!=null"> AND HOLD_DURATION=#{ew.entity.holdDuration}</if>
|
||||
<if test="ew.entity.type!=null"> AND TYPE=#{ew.entity.type}</if>
|
||||
<if test="ew.entity.createUser!=null"> AND CREATE_USER=#{ew.entity.createUser}</if>
|
||||
<if test="ew.entity.createdDateTime!=null"> AND CREATED_DATE_TIME=#{ew.entity.createdDateTime}</if>
|
||||
</if>
|
||||
<if test="ew!=null and ew.sqlSegment!=null and ew.nonEmptyOfWhere">
|
||||
${ew.sqlSegment}
|
||||
</if>
|
||||
</if>
|
||||
</where>
|
||||
<if test="ew!=null and ew.sqlSegment!=null and ew.emptyOfWhere">
|
||||
${ew.sqlSegment}
|
||||
</if>
|
||||
</delete>
|
||||
|
||||
<delete id="deleteBatchIds">
|
||||
DELETE FROM Z_SFC_HOLD_LOG WHERE HANDLE IN (
|
||||
<foreach item="item" index="index" collection="coll" separator=",">#{item}
|
||||
</foreach>)
|
||||
</delete>
|
||||
<!-- BaseMapper标准查询/修改/删除 -->
|
||||
|
||||
</mapper>
|
Loading…
Reference in New Issue