Merge remote-tracking branch 'origin/master'

master
zpl 4 years ago
commit d123c530a4

@ -185,6 +185,12 @@ public class AbnormalBillDisposeDto extends AbnormalBillDispose {
*/
private String ncCodeDescription;
private String workCenterDescription;
private String shutDown;
private String operationDescription;
public String getAbnormalNo() {
return abnormalNo;
}
@ -464,4 +470,28 @@ public class AbnormalBillDisposeDto extends AbnormalBillDispose {
public void setProgram(String program) {
this.program = program;
}
public String getWorkCenterDescription() {
return workCenterDescription;
}
public void setWorkCenterDescription(String workCenterDescription) {
this.workCenterDescription = workCenterDescription;
}
public String getShutDown() {
return shutDown;
}
public void setShutDown(String shutDown) {
this.shutDown = shutDown;
}
public String getOperationDescription() {
return operationDescription;
}
public void setOperationDescription(String operationDescription) {
this.operationDescription = operationDescription;
}
}

@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.foreverwin.mesnac.anomaly.dto.AbnormalBillDto;
import com.foreverwin.mesnac.anomaly.model.AbnormalBill;
import com.foreverwin.mesnac.common.dto.ScrapDto;
import com.foreverwin.mesnac.meapi.model.UserGroup;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
@ -21,7 +22,8 @@ import java.util.List;
public interface AbnormalBillMapper extends BaseMapper<AbnormalBill> {
List<AbnormalBillDto> backLog(@Param("abnormalBill")AbnormalBillDto abnormalBillDto, @Param("language")String language);
List<AbnormalBillDto> backLog(@Param("abnormalBill")AbnormalBillDto abnormalBillDto, @Param("language")String language,
@Param("userGroupList")List<UserGroup> userGroupList);
/**
*

@ -236,6 +236,8 @@ public class AbnormalBill extends Model<AbnormalBill> {
public String getHandle() {
return handle;
}
@ -580,7 +582,7 @@ public class AbnormalBill extends Model<AbnormalBill> {
this.fileNum = fileNum;
}
public static final String HANDLE = "HANDLE";
public static final String HANDLE = "HANDLE";
public static final String SITE = "SITE";

@ -10,6 +10,7 @@ import com.foreverwin.mesnac.anomaly.mapper.AbnormalBillDisposeMapper;
import com.foreverwin.mesnac.anomaly.mapper.AbnormalBillMapper;
import com.foreverwin.mesnac.anomaly.model.*;
import com.foreverwin.mesnac.anomaly.service.*;
import com.foreverwin.mesnac.common.enums.AnomalyConstant;
import com.foreverwin.mesnac.common.constant.Constants;
import com.foreverwin.mesnac.common.dto.ScrapDto;
import com.foreverwin.mesnac.common.dto.UsrDto;
@ -320,8 +321,18 @@ public class AbnormalBillServiceImpl extends ServiceImpl<AbnormalBillMapper, Abn
@Override
public List<AbnormalBillDto> backLog(AbnormalBillDto abnormalBillDto) {
String user = CommonMethods.getUser();
String site = CommonMethods.getSite();
List<UserGroup> userGroupList = userGroupMapper.findUserGroupListByUser(site, user);
//判断该用户组中有没有administrator,如果有的话就等于null
for (UserGroup userGroup : userGroupList){
if("ADMINISTRATORS".equals(userGroup.getUserGroup())){
userGroupList = null;
break;
}
}
String language = LocaleContextHolder.getLocale().getLanguage();
return abnormalBillMapper.backLog(abnormalBillDto, language);
return abnormalBillMapper.backLog(abnormalBillDto, language,userGroupList);
}
@Override
@ -439,8 +450,9 @@ public class AbnormalBillServiceImpl extends ServiceImpl<AbnormalBillMapper, Abn
nwaUserService.checkUserGroup(site,abnormalBillDispose.getDutySendUserGroup());
this.saveOrUpdate(abnormalBill);
this.anomalyCreatedAndSendMessage(abnormalBillMapper.selectById(abnormalBill.getHandle()),abnormalBillDispose);
abnormalBillDisposeService.saveOrUpdate(abnormalBillDispose);
this.anomalyCreatedAndSendMessage(abnormalBillMapper.selectById(abnormalBill.getHandle()),abnormalBillDispose);
}
@ -906,17 +918,6 @@ public class AbnormalBillServiceImpl extends ServiceImpl<AbnormalBillMapper, Abn
abnormalMessage.setMessageType(abnormalBill.getMessageType());
// //根据异常的类型找到消息的类型
// switch (abnormalMessage.getType()){
// case "Z"://质量异常
// abnormalMessage.setMessageType(Constants.ABNORMAL_MESSAGE_QUALITY);
// break;
// case "Q"://其他异常
// abnormalMessage.setMessageType(Constants.ABNORMAL_MESSAGE_OTHER);
// break;
// case "S"://设备异常
// abnormalMessage.setMessageType(Constants.ABNORMAL_MESSAGE_RESOURCE);
// break;
// }
//设置发送的用户组
@ -1022,9 +1023,9 @@ public class AbnormalBillServiceImpl extends ServiceImpl<AbnormalBillMapper, Abn
for (int i = 0; i < nwaUsers.size(); i++) {
if(i == (nwaUsers.size() - 1)){
sendUsers.append(nwaUsers.get(i));
sendUsers.append(nwaUsers.get(i).getUserName());
}else{
sendUsers.append(nwaUsers.get(i)).append("|");
sendUsers.append(nwaUsers.get(i).getUserName()).append("|");
}
}
activeMQUtil.wechatSendMessage(sendUsers.toString(),abnormalMessage.getContent());
@ -1046,45 +1047,47 @@ public class AbnormalBillServiceImpl extends ServiceImpl<AbnormalBillMapper, Abn
throw new BaseException("异常提报时找不到要发送的消息类型");
}
//查处所有要替换的消息内容
AbnormalBillDisposeDto messageContent = abnormalBillDisposeMapper.findAllByAbnormalNo(abnormalBill, locale);
//格式化消息
String body = sendMessageType.getBody();
String messageBody = sendMessageType.getBody();
//替换消息类型中的参数
Map<String, String> messageMap = new HashMap<>();
//根据车间找到对应车间的描述
// WorkCenter workCenter = workCenterMapper.findWorkCenterDescriptionByWorkCenter(site, abnormalBill.getWorkCenter(), locale);
// //根据资源找到对应的产线的描述
// WorkCenter line = null;
// if(StringUtil.isBlank(abnormalBill.getResrce())){
// line = workCenterMapper.findWorkCenterDescriptionByResrce(HandleEnum.RESOURCE.getHandle(site, abnormalBill.getResrce()), locale);
// }
//
// //项目号
// ShopOrderDto projectNo = shopOrderMapper.findByShopOrderBo(HandleEnum.SHOP_ORDER.getHandle(site, abnormalBill.getShopOrder()));
// //物料
// Item _item = itemMapper.selectById(locale, abnormalBill.getItemBo());
// String item = "";
// if(_item != null){
// item = _item.getItem() + "/" + _item.getDescription();
// }
// if(workCenter != null && !StringUtil.isBlank(workCenter.getDescription())){
// messageMap.put("WORKCENTER",workCenter.getDescription());
// }
// if(line != null && !StringUtil.isBlank(line.getDescription())){
// messageMap.put("WORKCENTER_LIN",line.getDescription());
// }
// if(projectNo != null && !StringUtil.isBlank(projectNo.getItemNumber())){
// messageMap.put("PROJECT",projectNo.getItemNumber());
// }
// if(!StringUtil.isBlank(abnormalBill.getWorkCenter())){
// messageMap.put("SHOPORDER",abnormalBill.getWorkCenter());
// }
// messageMap.put("ITEM",item);
messageMap.put("abnormalNo",messageContent.getAbnormalNo());
messageMap.put("status", AnomalyConstant.Status.msg(messageContent.getStatus()));
messageMap.put("item",messageContent.getItem());
messageMap.put("description",messageContent.getItemDescription());
messageMap.put("type",AnomalyConstant.Type.msg(messageContent.getType()));
messageMap.put("sfc",messageContent.getSfc());
messageMap.put("shopOrder",messageContent.getShopOrder());
messageMap.put("workCenter",messageContent.getWorkCenterDescription());
messageMap.put("resrce",messageContent.getResrceDescription());
messageMap.put("workOrder",messageContent.getWorkOrder());
messageMap.put("pbDescription",messageContent.getPbDescription());
messageMap.put("ncQty",messageContent.getNcQty());
messageMap.put("pbGrade",messageContent.getPbGrade());
messageMap.put("pbUser",messageContent.getPbUser());
messageMap.put("pbQty",messageContent.getPbQty());
messageMap.put("discover",AnomalyConstant.Discover.msg(messageContent.getDiscover()));
messageMap.put("entityLocation",messageContent.getEntityLocation());
messageMap.put("reportFrom",AnomalyConstant.ReportFrom.msg(messageContent.getReportFrom()));
messageMap.put("operation",messageContent.getOperationDescription());
messageMap.put("reportSendUserGroup",messageContent.getReportSendUserGroup());
if(StringUtil.isBlank(messageContent.getNcCode()) || "/,".equals(messageContent.getNcCode())){
messageMap.put("ncCode","");
}else{
String ncCode = messageContent.getNcCode().substring(0,messageContent.getNcCode().length() - 1);
messageMap.put("ncCode",ncCode);
}
if(StringUtil.isBlank(messageContent.getNcCodeDescription()) || "/,".equals(messageContent.getNcCodeDescription())){
messageMap.put("ncCodeDescription","");
}else{
String ncCodeDescription = messageContent.getNcCodeDescription().substring(0,messageContent.getNcCodeDescription().length() - 1);
messageMap.put("ncCodeDescription",ncCodeDescription);
}
messageMap.put("shutDown",AnomalyConstant.ShutDown.msg(messageContent.getShutDown()));
//格式化之后的消息
return StringUtils.format(body, messageMap);
return StringUtils.format(messageBody, messageMap);
}
@Override

@ -61,6 +61,7 @@ public class AnomalyJobServiceImpl implements AnomalyJobService {
QueryWrapper<Message> abnormalMessageQueryWrapper = new QueryWrapper<>();
abnormalMessageQueryWrapper.eq("STATUS","N");
abnormalMessageQueryWrapper.lt("UP_DATE_TIME",now);
AbnormalBill abnormalBill = new AbnormalBill();
List<Message> abnormalMessages = messageMapper.selectList(abnormalMessageQueryWrapper);
for(Message _abnormalMessage : abnormalMessages){
String uuid = UUID.randomUUID().toString();
@ -89,8 +90,7 @@ public class AnomalyJobServiceImpl implements AnomalyJobService {
abnormalMessage.setUpUser(null);
}
AbnormalBill abnormalBill = abnormalBillMapper.selectById(abnormalMessage.getObjectBo());
abnormalBill.setHandle(abnormalMessage.getMessageType());
String message = abnormalBillService.formatMessage(abnormalBill,abnormalMessage.getMessageType(),site);
abnormalMessage.setContent(message+"It's Job send");

@ -68,9 +68,12 @@
<result column="RESRCE_DESCRIPTION" property="resrceDescription"/>
<result column="FULL_NAME" property="fullName"/>
<result column="OPERATION" property="operation"/>
<result column="OPERATION_DESCRIPTION" property="operationDescription"/>
<result column="REPORT_SEND_USER_GROUP" property="reportSendUserGroup"/>
<result column="CORRECTION" property="correction"/>
<result column="PROGRAM" property="program"/>
<result column="WORK_CENTER_DESCRIPTION" property="workCenterDescription"/>
<result column="SHUT_DOWN" property="shutDown" />
</resultMap>
@ -703,27 +706,34 @@
SELECT ZAB.ABNORMAL_NO ABNORMAL_NO ,ZAB.STATUS STATUS,I.ITEM ITEM,IT.DESCRIPTION ITEM_DESCRIPTION,
ZAB."TYPE" "TYPE" ,ZAB.SFC SFC,ZAB.MESSAGE_TYPE MESSAGE_TYPE,ZAB.SHOP_ORDER SHOP_ORDER,
ZAB.WORK_CENTER WORK_CENTER,ZAB.RESRCE RESRCE, WORKORDER.VALUE WORK_ORDER,ITEMNUMBER.VALUE ITEM_NUMBER,
PRODUCTCATEGORY.VALUE PRODUCT_CATEGORY,listagg(NG.DESCRIPTION || '/'||NCT.DESCRIPTION || ',') within GROUP(ORDER BY zab.ABNORMAL_NO) NC_CODE_DESCRIPTION,
PRODUCTCATEGORY.VALUE PRODUCT_CATEGORY,
listagg(NG.DESCRIPTION || '/'||NCT.DESCRIPTION || ',') within GROUP(ORDER BY zab.ABNORMAL_NO) NC_CODE_DESCRIPTION,
ZAB.PB_DESCRIPTION PB_DESCRIPTION ,ZAB.NC_QTY NC_QTY,
ZAB.PB_GRADE PB_GRADE ,NWA.FULL_NAME PB_USER ,ZAB.PB_QTY PB_QTY ,ZAB.DISCOVER DISCOVER ,
NWA2.FULL_NAME INSPECTOR ,ZAB.ENTITY_LOCATION ENTITY_LOCATION ,ZAB.REPORT_FROM REPORT_FROM ,SUBSTR(ZAB.OBJECT_BO,INSTR(ZAB.OBJECT_BO,',')+1) OBJECT_BO,
ZAB.PB_PHOTOSHOP PB_PHOTOSHOP,ZABD.DUTY_CAUSE_DESCRIPTION DUTY_CAUSE_DESCRIPTION,ZABD.DUTY_CAUSE_TYPE DUTY_CAUSE_TYPE,ZABD.DUTY_DEPART DUTY_DEPART,
ZABD.DUTY_SEND_USER_GROUP DUTY_SEND_USER_GROUP,ZABD.DUTY_TYPE DUTY_TYPE,ZABD.PRINCIPAL_USER PRINCIPAL_USER,ZABD.ABNORMAL_METHOD ABNORMAL_METHOD,
R.ROUTER ROUTER,ZABD.RESOLVE_SHOP_ORDER RESOLVE_SHOP_ORDER,ZABD.RESOLVE_REMARK RESOLVE_REMARK,ZABD.RESOLVE_SEND_USER_GROUP RESOLVE_SEND_USER_GROUP,
ZABD.ABNORMAL_REASON ABNORMAL_REASON,ZABD.BEFORE_MEASURE BEFORE_MEASURE,"MAP".VALUE "MAP",listagg(ZANC.NC_CODE_GROUP || '/'||ZANC.NC_CODE || ',') within GROUP(ORDER BY zab.ABNORMAL_NO) NC_CODE,
ZABD.ABNORMAL_REASON ABNORMAL_REASON,ZABD.BEFORE_MEASURE BEFORE_MEASURE,"MAP".VALUE "MAP",
listagg(ZANC.NC_CODE_GROUP || '/'||ZANC.NC_CODE || ',') within GROUP(ORDER BY zab.ABNORMAL_NO) NC_CODE,
ZABD.ROUTER_BO ROUTER_BO,ZAB.OPERATION OPERATION,I.HANDLE ITEM_BO,ZAB.REPORT_SEND_USER_GROUP REPORT_SEND_USER_GROUP,
ZAB.CORRECTION CORRECTION,ZAB.PROGRAM PROGRAM
ZAB.CORRECTION CORRECTION,ZAB.PROGRAM PROGRAM,WCT.DESCRIPTION WORK_CENTER_DESCRIPTION,ZAB.SHUT_DOWN SHUT_DOWN,
RS.DESCRIPTION RESRCE_DESCRIPTION,OT.DESCRIPTION OPERATION_DESCRIPTION
FROM Z_ABNORMAL_BILL ZAB
LEFT JOIN Z_ABNORMAL_BILL_DISPOSE ZABD ON ZAB.HANDLE = ZABD.ABNORMAL_BILL_BO
INNER JOIN ITEM I ON I.HANDLE = ZAB.ITEM_BO
LEFT JOIN ITEM_T IT ON IT.ITEM_BO = I.HANDLE AND IT.LOCALE = #{locale}
INNER JOIN SHOP_ORDER SO ON SO.SHOP_ORDER = ZAB.SHOP_ORDER AND SO.SITE = ZAB.SITE
LEFT JOIN RESRCE RS ON RS.RESRCE = ZAB.RESRCE AND RS.SITE = ZAB.SITE
LEFT JOIN OPERATION O ON O.OPERATION = ZAB.OPERATION AND O.SITE = ZAB.SITE AND O.CURRENT_REVISION = 'true'
LEFT JOIN OPERATION_T OT ON O.HANDLE = OT.OPERATION_BO AND OT.LOCALE = #{locale}
LEFT JOIN CUSTOM_FIELDS WORKORDER ON WORKORDER.HANDLE = SO.HANDLE AND WORKORDER."ATTRIBUTE" = 'WORK_ORDER'
LEFT JOIN CUSTOM_FIELDS ITEMNUMBER ON ITEMNUMBER.HANDLE = SO.HANDLE AND ITEMNUMBER."ATTRIBUTE" = 'ITEM_NUMBER'
LEFT JOIN CUSTOM_FIELDS PRODUCTCATEGORY ON PRODUCTCATEGORY.HANDLE = SO.HANDLE AND PRODUCTCATEGORY."ATTRIBUTE" = 'PRODUCT_CATEGORY'
LEFT JOIN CUSTOM_FIELDS "MAP" ON "MAP".HANDLE = SO.HANDLE AND "MAP"."ATTRIBUTE" = 'MAP'
LEFT JOIN Z_ABNORMAL_NC_CODE ZANC ON ZAB.HANDLE = ZANC.ABNORMAL_BILL_BO
LEFT JOIN NC_CODE_T NCT ON ('NCCodeBO:' || ZAB.SITE || ',' || ZANC.NC_CODE) = NCT.NC_CODE_BO AND NCT.LOCALE = #{locale}
LEFT JOIN WORK_CENTER_T WCT ON ('WorkCenterBO:' || ZAB.SITE || ',' || ZAB.WORK_CENTER) = WCT.WORK_CENTER_BO AND WCT.LOCALE = #{locale}
LEFT JOIN Z_NWA_USER NWA ON NWA.USER_NAME = ZAB.PB_USER AND NWA.SITE = ZAB.SITE
LEFT JOIN Z_NWA_USER NWA2 ON NWA2.USER_NAME = ZAB.INSPECTOR AND NWA2.SITE = ZAB.SITE
LEFT JOIN NC_GROUP NG ON NG.NC_GROUP = ZANC.NC_CODE_GROUP AND NG.SITE = ZAB.SITE
@ -749,7 +759,8 @@
ZABD.DUTY_SEND_USER_GROUP ,ZABD.DUTY_TYPE ,ZABD.PRINCIPAL_USER ,ZABD.ABNORMAL_METHOD ,
R.ROUTER ,ZABD.RESOLVE_SHOP_ORDER ,ZABD.RESOLVE_REMARK ,ZABD.RESOLVE_SEND_USER_GROUP ,
ZABD.ABNORMAL_REASON ,ZABD.BEFORE_MEASURE ,"MAP".VALUE,ZABD.ROUTER_BO,ZAB.OPERATION,I.HANDLE,
ZAB.REPORT_SEND_USER_GROUP,ZAB.CORRECTION,ZAB.PROGRAM
ZAB.REPORT_SEND_USER_GROUP,ZAB.CORRECTION,ZAB.PROGRAM,WCT.DESCRIPTION,ZAB.SHUT_DOWN,RS.DESCRIPTION,
OT.DESCRIPTION
</select>

@ -919,6 +919,7 @@
ZAB.NC_CODE NC_CODE,ZAB.PB_DESCRIPTION PB_DESCRIPTION,
SUBSTR(LISTAGG(NCT.DESCRIPTION || ',') WITHIN GROUP(ORDER BY ZAB.ABNORMAL_NO),0,LENGTH(LISTAGG(NCT.DESCRIPTION || ',') WITHIN GROUP(ORDER BY ZAB.ABNORMAL_NO))-1) NC_CODE_DESCRIPTION
FROM Z_ABNORMAL_BILL ZAB
LEFT JOIN Z_ABNORMAL_BILL_DISPOSE ZABD ON ZABD.ABNORMAL_BILL_BO = ZAB.HANDLE
LEFT JOIN ITEM I ON ZAB.ITEM_BO = I.HANDLE
LEFT JOIN ITEM_T IT ON I.HANDLE = IT.ITEM_BO AND IT.LOCALE = #{language}
LEFT JOIN Z_NWA_USER ZNU ON ZNU.USER_NAME = ZAB.CREATED_USER AND ZNU.SITE = ZAB.SITE
@ -961,6 +962,37 @@
<if test="abnormalBill.workOrder != null and abnormalBill.workOrder != ''">
AND CF.VALUE LIKE '%${abnormalBill.workOrder}%'
</if>
<choose>
<when test="userGroupList != null and userGroupList.size != 0">
AND (ZAB.REPORT_SEND_USER_GROUP IN
<foreach item="item" index="index" collection="userGroupList" separator="," open="(" close=")">
UPPER(#{item.userGroup})
</foreach>
OR
ZAB.CANCEL_SEND_USER_GROUP IN
<foreach item="item" index="index" collection="userGroupList" separator="," open="(" close=")">
UPPER(#{item.userGroup})
</foreach>
OR
ZABD.DUTY_SEND_USER_GROUP IN
<foreach item="item" index="index" collection="userGroupList" separator="," open="(" close=")">
UPPER(#{item.userGroup})
</foreach>
OR
ZABD.RESOLVE_SEND_USER_GROUP IN
<foreach item="item" index="index" collection="userGroupList" separator="," open="(" close=")">
UPPER(#{item.userGroup})
</foreach>)
</when>
<otherwise>
<if test="userGroupList == null">
</if>
<if test="userGroupList != null and userGroupList.size == 0">
AND 1 == 2
</if>
</otherwise>
</choose>
</if>
</where>
GROUP BY zab.ABNORMAL_NO,zab.STATUS,it.DESCRIPTION,zab.CREATED_DATE_TIME,zab.RESPONSE_DATE_TIME,

@ -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: 20201013 4:18:54
* @version V1.0
*
* @History
* 20201013 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: 20201015 1:16:55
* @version V1.0
*
* @History
* 20201015 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: 20201015 2:29:25
* @version V1.0
*
* @History
* 20201015 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: 20201013 3:33:42
* @version V1.0
*
* @History
* 20201013 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,186 @@
package com.foreverwin.mesnac.common.model;
import java.util.Date;
import java.util.List;
/**
*
* @Title: CustomReportSearchCondition.java
* @Package com.knsdev.service.domain
* @Description:
* @author: Andy
* @date: 20201013 3:43:41
* @version V1.0
*
* @History
* 20201013 3:43:41 Andy add
*
* FDS
* ME-111-
*/
public class CustomReportSearchConditionConfig {
private Integer seq;
private String conditionName;
private String conditionField;
//栏位类别 弹出框DAILOG|输入框(TEXT)|日期输入框(DATETEXT)|复选框(CHECKBOX)
private String fieldType;
//弹出复选框数据获取SQL
private String dailogCheckboxSQL;
//REQ(必填)|NO_REQ(非必填)|GROUP_REQ(组合必填)
private String requiredType;
private Integer rowID;
private Integer columnID;
private Integer columnWidthPercent;
//自定义报表 Load后需赋上初值
private List<String> fieldValueList;
//增加insert所需字段
private String site;
private String customReportMainModelBo;
private Date modifyDateTime;
private String modifyUser;
private String handle;
public Integer getSeq() {
return seq;
}
public void setSeq(Integer seq) {
this.seq = seq;
}
public Integer getRowID() {
return rowID;
}
public void setRowID(Integer rowID) {
this.rowID = rowID;
}
public Integer getColumnID() {
return columnID;
}
public void setColumnID(Integer columnID) {
this.columnID = columnID;
}
public String getHandle() {
return handle;
}
public void setHandle(String handle) {
this.handle = handle;
}
public String getSite() {
return site;
}
public void setSite(String site) {
this.site = site;
}
public String getCustomReportMainModelBo() {
return customReportMainModelBo;
}
public void setCustomReportMainModelBo(String customReportMainModelBo) {
this.customReportMainModelBo = customReportMainModelBo;
}
/*public String getModifyDateTime() {
return modifyDateTime;
}
public void setModifyDateTime(String modifyDateTime) {
this.modifyDateTime = modifyDateTime;
}*/
public Date getModifyDateTime() {
return modifyDateTime;
}
public void setModifyDateTime(Date modifyDateTime) {
this.modifyDateTime = modifyDateTime;
}
public String getModifyUser() {
return modifyUser;
}
public void setModifyUser(String modifyUser) {
this.modifyUser = modifyUser;
}
/*public String getSeq() {
return seq;
}
public void setSeq(String seq) {
this.seq = seq;
}*/
public String getConditionName() {
return conditionName;
}
public void setConditionName(String conditionName) {
this.conditionName = conditionName;
}
public String getConditionField() {
return conditionField;
}
public void setConditionField(String conditionField) {
this.conditionField = conditionField;
}
public String getFieldType() {
return fieldType;
}
public void setFieldType(String fieldType) {
this.fieldType = fieldType;
}
public String getDailogCheckboxSQL() {
return dailogCheckboxSQL;
}
public void setDailogCheckboxSQL(String dailogCheckboxSQL) {
this.dailogCheckboxSQL = dailogCheckboxSQL;
}
public String getRequiredType() {
return requiredType;
}
public void setRequiredType(String requiredType) {
this.requiredType = requiredType;
}
/*public String getRowID() {
return rowID;
}
public void setRowID(String rowID) {
this.rowID = rowID;
}
public String getColumnID() {
return columnID;
}
public void setColumnID(String columnID) {
this.columnID = columnID;
}*/
/*public String getColumnWidthPercent() {
return columnWidthPercent;
}
public void setColumnWidthPercent(String columnWidthPercent) {
this.columnWidthPercent = columnWidthPercent;
}*/
public Integer getColumnWidthPercent() {
return columnWidthPercent;
}
public void setColumnWidthPercent(Integer columnWidthPercent) {
this.columnWidthPercent = columnWidthPercent;
}
public List<String> getFieldValueList() {
return fieldValueList;
}
public void setFieldValueList(List<String> fieldValueList) {
this.fieldValueList = fieldValueList;
}
}

@ -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: 20201016 9:42:01
* @version V1.0
*
* @History
* 20201016 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: 20201016 9:45:03
* @version V1.0
*
* @History
* 20201016 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: 20201014 9:48:58
* @version V1.0
*
* @History
* 20201014 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: 20201015 1:20:01
* @version V1.0
*
* @History
* 20201015 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,301 @@
package com.foreverwin.mesnac.common.service.impl;
import com.foreverwin.mesnac.common.mapper.CustomReportConfigMapper;
import com.foreverwin.mesnac.common.model.*;
import com.foreverwin.mesnac.common.service.CustomReportConfigInterface;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.text.SimpleDateFormat;
import java.time.LocalDateTime;
import java.util.*;
/**
*
* @Title: CustomReportConfigImpl.java
* @Package com.knsdev.service.impl
* @Description: Interface
* @author: Andy
* @date: 20201014 9:57:38
* @version V1.0
*
* @History
* 20201014 9:57:38 Andy add
*
*/
@Service
public class CustomReportConfigImpl implements CustomReportConfigInterface {
@Autowired
private CustomReportConfigMapper customReportConfigMapper;
@Override
public CustomReportConfig Query(String reportid) throws Exception {
//2020-11-6 andy, 因所有的 site共用配置所以此处site直接给*
String site="*";
CustomReportConfig config=new CustomReportConfig();
String mainHandle="CustomReportBO:"+site+","+reportid;
Map<String, Object> param = new HashMap<String, Object>();
param.put("SITE", site);
param.put("REPORT_ID", reportid);
//自定义报表_主要模块 数据
List<CustomReportMainmodel> map = customReportConfigMapper.selectMain( site,reportid );
if(map.size()<1)
{
throw new RuntimeException("查询无资料");
} else
{
//获取 Z_CUSTOM_REPORT_MAINMODEL 表中相关字段
config.setHandle(map.get(0).getHandle()==null?"":map.get(0).getHandle().toString());
config.setSite(site);
config.setReportID(reportid);
config.setReportTitle(map.get(0).getReportTitle()==null?"":map.get(0).getReportTitle().toString().trim());
config.setReportDESC(map.get(0).getReportDesc()==null?"":map.get(0).getReportDesc().toString().trim());
config.setConditionSQLConfig(map.get(0).getConditionSqlConfig()==null?"":map.get(0).getConditionSqlConfig().toString().trim());
config.setDisplayType(map.get(0).getDisplayType()==null?"":map.get(0).getDisplayType().toString().trim());
config.setTimeRefresh(map.get(0).getTimeRefresh()==null?"0":map.get(0).getTimeRefresh().toString());
config.setBackgroundColor(map.get(0).getBackgroundColor()==null?"":map.get(0).getBackgroundColor().toString().trim());
config.setFontColor(map.get(0).getFontColor()==null?"":map.get(0).getFontColor().toString().trim());
config.setPageSize(map.get(0).getPageSize()==null?"0":map.get(0).getPageSize().toString());
config.setUser(map.get(0).getModifyUser()==null?"":map.get(0).getModifyUser().toString().trim());//map.get(0).get("USER")
}
//自定义报表_检索条件配置 数据
List<CustomReportSearchConditionConfig> conditionConfigList=new ArrayList<CustomReportSearchConditionConfig>();
List<CustomReportSearchConditionConfig> searchConditionMap = customReportConfigMapper.selectSearchConditionConfig( mainHandle );
for(int i=0;i<searchConditionMap.size();i++)
{
CustomReportSearchConditionConfig searchConditionConfig=new CustomReportSearchConditionConfig();
searchConditionConfig.setSeq(searchConditionMap.get(i).getSeq()==null?0:searchConditionMap.get(i).getSeq());
searchConditionConfig.setConditionName(searchConditionMap.get(i).getConditionName()==null?"":searchConditionMap.get(i).getConditionName().toString());
searchConditionConfig.setConditionField(searchConditionMap.get(i).getConditionField()==null?"":searchConditionMap.get(i).getConditionField().toString());
searchConditionConfig.setFieldType(searchConditionMap.get(i).getFieldType()==null?"":searchConditionMap.get(i).getFieldType().toString());
searchConditionConfig.setDailogCheckboxSQL(searchConditionMap.get(i).getDailogCheckboxSQL()==null?"":searchConditionMap.get(i).getDailogCheckboxSQL().toString());
searchConditionConfig.setRequiredType(searchConditionMap.get(i).getRequiredType()==null?"":searchConditionMap.get(i).getRequiredType().toString());
searchConditionConfig.setRowID(searchConditionMap.get(i).getRowID()==null?1:searchConditionMap.get(i).getRowID());
searchConditionConfig.setColumnID(searchConditionMap.get(i).getColumnID()==null?1:searchConditionMap.get(i).getColumnID());
searchConditionConfig.setColumnWidthPercent(searchConditionMap.get(i).getColumnWidthPercent()==null?1:searchConditionMap.get(i).getColumnWidthPercent());
conditionConfigList.add(searchConditionConfig);
}
config.setSearchConditionConfigList(conditionConfigList);
//自定义报表_检索条件动态SQL配置
List<CustomReportSearchConditionDynSQLConfig> dynSQLConfigList=new ArrayList<CustomReportSearchConditionDynSQLConfig>();
List<CustomReportSearchConditionDynSQLConfig> dynSqlConfigMap = customReportConfigMapper.selectDynSqlConfig( mainHandle );
for(int i=0;i<dynSqlConfigMap.size();i++)
{
CustomReportSearchConditionDynSQLConfig dynSQLConfig=new CustomReportSearchConditionDynSQLConfig();
dynSQLConfig.setSeq(dynSqlConfigMap.get(i).getSeq()==null?"0":dynSqlConfigMap.get(i).getSeq().toString());
dynSQLConfig.setDynConditionReplaceField(dynSqlConfigMap.get(i).getDynConditionReplaceField()==null?"":dynSqlConfigMap.get(i).getDynConditionReplaceField().toString());
dynSQLConfig.setDynamicConditionSQL(dynSqlConfigMap.get(i).getDynamicConditionSQL()==null?"":dynSqlConfigMap.get(i).getDynamicConditionSQL().toString());
dynSQLConfig.setConditionField(dynSqlConfigMap.get(i).getConditionField()==null?"":dynSqlConfigMap.get(i).getConditionField().toString());
dynSQLConfigList.add(dynSQLConfig);
}
config.setSearchConditionDynSQLConfigList(dynSQLConfigList);
//自定义报表_检索结果列配置
List<CustomReportSearchResultColumnConfig> resultColumnConfigList=new ArrayList<CustomReportSearchResultColumnConfig>();
List<CustomReportSearchResultColumnConfig> resultColumnMap = customReportConfigMapper.selectResultColumnConfig( mainHandle );
for(int i=0;i<resultColumnMap.size();i++)
{
CustomReportSearchResultColumnConfig resultColumnConfig=new CustomReportSearchResultColumnConfig();
resultColumnConfig.setSeq(resultColumnMap.get(i).getSeq()==null?"0":resultColumnMap.get(i).getSeq().toString());
resultColumnConfig.setColumnField(resultColumnMap.get(i).getColumnField()==null?"":resultColumnMap.get(i).getColumnField().toString());
resultColumnConfig.setColumnName(resultColumnMap.get(i).getColumnName()==null?"":resultColumnMap.get(i).getColumnName().toString().trim());
resultColumnConfig.setColumnWidthPercent(resultColumnMap.get(i).getColumnWidthPercent()==null?"1":resultColumnMap.get(i).getColumnWidthPercent().toString().trim());
resultColumnConfigList.add(resultColumnConfig);
}
config.setSearchResultColumnList(resultColumnConfigList);
return config;
}
/* (non-Javadoc)
* @see com.knsdev.service.CustomReportConfigInterface#Save(com.knsdev.service.domain.CustomReportConfig)
*/
@Override
public void Save(CustomReportConfig config) throws Exception {
//2020-11-6 andy, 因所有的 site共用配置所以此处site直接给*
//String site=config.getSite().trim();
String site="*";
String reportID=config.getReportID().trim();
if(site.length()<1 || reportID.length()<1)
{
//70501.simple=站点、报表作业编号均不能为空
//throw Exceptions.convert(new BasicBOBeanException(70501,new Data()));
throw new RuntimeException("站点、报表作业编号均不能为空");
}
//1.删除 资料
Delete(site, reportID);
LocalDateTime dateTime = LocalDateTime.now();
String user=config.getUser();
String customReportBO="CustomReportBO:"+site+","+reportID;
//2.保存资料至 Z_CUSTOM_REPORT_SEARCHCONDITION_CONFIG
List<CustomReportSearchConditionConfig> configList=config.getSearchConditionConfigList();
if(configList!=null && configList.size() > 0) {
CustomReportSearchConditionConfig customReportSearchConditionConfig = new CustomReportSearchConditionConfig();
customReportSearchConditionConfig.setSite( site );
customReportSearchConditionConfig.setCustomReportMainModelBo( customReportBO );
customReportSearchConditionConfig.setModifyDateTime( new Date() );
customReportSearchConditionConfig.setModifyUser( user );
for(int i=0;i<configList.size();i++)
{
customReportSearchConditionConfig.setHandle( "CustomReportSearchConditonBO:"+UUID.randomUUID().toString() );
customReportSearchConditionConfig.setSeq( configList.get(i).getSeq()==null?0:configList.get(i).getSeq() );
customReportSearchConditionConfig.setConditionName( configList.get(i).getConditionName()==null?"":configList.get(i).getConditionName().trim() );
customReportSearchConditionConfig.setConditionField( configList.get(i).getConditionField()==null?"":configList.get(i).getConditionField().trim() );
customReportSearchConditionConfig.setFieldType( configList.get(i).getFieldType()==null?"":configList.get(i).getFieldType().trim() );
customReportSearchConditionConfig.setDailogCheckboxSQL( configList.get(i).getDailogCheckboxSQL()==null?"":configList.get(i).getDailogCheckboxSQL().trim() );
customReportSearchConditionConfig.setRequiredType( configList.get(i).getRequiredType()==null?"":configList.get(i).getRequiredType().trim() );
customReportSearchConditionConfig.setRowID( configList.get(i).getRowID()==null?1:configList.get(i).getRowID() );
customReportSearchConditionConfig.setColumnID( configList.get(i).getColumnID()==null?1:configList.get(i).getColumnID() );
customReportSearchConditionConfig.setColumnWidthPercent( configList.get(i).getColumnWidthPercent()==null?1:configList.get(i).getColumnWidthPercent() );
customReportConfigMapper.insertSearchConditionConfig( customReportSearchConditionConfig );
}
}
//3.保存资料至 Z_CUSTOM_REPORT_SEARCHCONDITION_DYNSQL_CONFIG
List<CustomReportSearchConditionDynSQLConfig> searchConditionDynSQLConfigList=config.getSearchConditionDynSQLConfigList();
if(searchConditionDynSQLConfigList!=null && searchConditionDynSQLConfigList.size() > 0) {
CustomReportSearchConditionDynSQLConfig customReportSearchConditionDynSQLConfig = new CustomReportSearchConditionDynSQLConfig();
customReportSearchConditionDynSQLConfig.setSite( site );
customReportSearchConditionDynSQLConfig.setCustomReportMainModelBo( customReportBO );
customReportSearchConditionDynSQLConfig.setModifyDateTime( dateTime );
customReportSearchConditionDynSQLConfig.setModifyUser( user );
for(int i=0;i<searchConditionDynSQLConfigList.size();i++)
{
customReportSearchConditionDynSQLConfig.setHandle( "CustomReportSearchConditonDynSQLBO:"+UUID.randomUUID().toString() );
customReportSearchConditionDynSQLConfig.setSeq( searchConditionDynSQLConfigList.get(i).getSeq()==null?"0":searchConditionDynSQLConfigList.get(i).getSeq().trim() );
customReportSearchConditionDynSQLConfig.setDynConditionReplaceField( searchConditionDynSQLConfigList.get(i).getDynConditionReplaceField()==null?"":searchConditionDynSQLConfigList.get(i).getDynConditionReplaceField().trim() );
customReportSearchConditionDynSQLConfig.setDynamicConditionSQL( searchConditionDynSQLConfigList.get(i).getDynamicConditionSQL()==null?"":searchConditionDynSQLConfigList.get(i).getDynamicConditionSQL().trim() );
customReportSearchConditionDynSQLConfig.setConditionField( searchConditionDynSQLConfigList.get(i).getConditionField()==null?"":searchConditionDynSQLConfigList.get(i).getConditionField().trim() );
customReportConfigMapper.insertDynSqlConfig( customReportSearchConditionDynSQLConfig );
}
}
//4.保存资料至 Z_CUSTOM_REPORT_SEARCHRESULT_COLUMN_CONFIG
List<CustomReportSearchResultColumnConfig> searchResultColumnList=config.getSearchResultColumnList();
if(searchResultColumnList!=null && searchResultColumnList.size() > 0) {
CustomReportSearchResultColumnConfig customReportSearchResultColumnConfig = new CustomReportSearchResultColumnConfig();
customReportSearchResultColumnConfig.setSite( site );
customReportSearchResultColumnConfig.setCustomReportMainModelBo( customReportBO );
customReportSearchResultColumnConfig.setModifyDateTime( dateTime );
customReportSearchResultColumnConfig.setModifyUser( user );
for(int i=0;i<searchResultColumnList.size();i++)
{
customReportSearchResultColumnConfig.setHandle( "CustomReportSearchResultColumnBO"+UUID.randomUUID().toString() );
customReportSearchResultColumnConfig.setSeq( searchResultColumnList.get(i).getSeq()==null?"0":searchResultColumnList.get(i).getSeq().trim() );
customReportSearchResultColumnConfig.setColumnField( searchResultColumnList.get(i).getColumnField()==null?"":searchResultColumnList.get(i).getColumnField().trim());
customReportSearchResultColumnConfig.setColumnName( searchResultColumnList.get(i).getColumnName()==null?"":searchResultColumnList.get(i).getColumnName().trim() );
customReportSearchResultColumnConfig.setColumnWidthPercent( searchResultColumnList.get(i).getColumnWidthPercent()==null?"1":searchResultColumnList.get(i).getColumnWidthPercent().trim() );
customReportConfigMapper.insertResultColumnConfig( customReportSearchResultColumnConfig );
}
}
//5.保存资料至 Z_CUSTOM_REPORT_MAINMODEL
CustomReportMainmodel customReportMainmodel = new CustomReportMainmodel();
customReportMainmodel.setHandle( customReportBO );
customReportMainmodel.setSite( site );
customReportMainmodel.setReportId( reportID );
customReportMainmodel.setReportTitle( config.getReportTitle().trim() );
customReportMainmodel.setReportDesc( config.getReportDESC().trim() );
customReportMainmodel.setConditionSqlConfig( config.getConditionSQLConfig().trim() );
customReportMainmodel.setDisplayType( config.getDisplayType().trim() );
customReportMainmodel.setTimeRefresh( config.getTimeRefresh().trim().length()<1?0:Integer.parseInt( config.getTimeRefresh().trim()) );
customReportMainmodel.setBackgroundColor( config.getBackgroundColor().trim() );
customReportMainmodel.setFontColor( config.getFontColor().trim() );
customReportMainmodel.setPageSize( config.getPageSize().trim().length()<1?0:Integer.parseInt( config.getPageSize().trim() ) );
customReportMainmodel.setModifyDateTime( dateTime );
customReportMainmodel.setModifyUser( user );
customReportConfigMapper.insertInsertMainmodel( customReportMainmodel );
}
/* (non-Javadoc)
* @see com.knsdev.service.CustomReportConfigInterface#Delete(java.lang.String, java.lang.String)
*/
@Override
public void Delete(String site, String reportid) throws Exception {
site="*";
String handle="CustomReportBO:"+site+","+reportid;
//删除 Z_CUSTOM_REPORT_SEARCHCONDITION_CONFIG 数据
customReportConfigMapper.deleteSearchConditionConfig(handle);
//删除 Z_CUSTOM_REPORT_SEARCHCONDITION_DYNSQL_CONFIG 数据
customReportConfigMapper.deleteDynSqlConfig( handle );
//删除 Z_CUSTOM_REPORT_SEARCHRESULT_COLUMN_CONFIG 数据
customReportConfigMapper.deleteResultColumnConfig( handle );
//删除 Z_CUSTOM_REPORT_MAINMODEL 数据
customReportConfigMapper.deleteMainmodel( handle );
}
/* (non-Javadoc)
* @see com.knsdev.service.CustomReportConfigInterface#GetReportIDList(java.lang.String)
*/
@Override
public List<CustomReport> GetReportIDList(String site) throws Exception {
List<CustomReport> customReportList=null;
site="*";
Map<String, Object> param = new HashMap<String, Object>();
param.put("SITE", site);
//List<Map<String,Object>> map=logicService.executeQuery(site, REPORTID_DIALOG_SQL, param);
List<CustomReportMainmodel> map = customReportConfigMapper.selectReportIdDialog( site );
if(map.size()>0)
{
customReportList=new ArrayList<CustomReport>();
CustomReport cr=null;
for(int i=0;i<map.size();i++)
{
cr=new CustomReport();
cr.setReportID(map.get(i).getReportId().trim());
cr.setReportDESC(map.get(i).getReportTitle()==null?"":map.get(i).getReportTitle().trim());
customReportList.add(cr);
}
}else
{
throw new RuntimeException("没有报表作业编号信息");
}
return customReportList;
}
}

@ -0,0 +1,295 @@
package com.foreverwin.mesnac.common.service.impl;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import com.alibaba.fastjson.JSONObject;
import com.foreverwin.mesnac.common.mapper.CustomReportConfigMapper;
import com.foreverwin.mesnac.common.mapper.CustomReportMapper;
import com.foreverwin.mesnac.common.model.*;
import com.foreverwin.mesnac.common.service.CustomReportInterface;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
/**
*
* @Title: CustomReportImpl.java
* @Package com.knsdev.service.impl
* @Description:
* @author: Andy
* @date: 20201015 1:21:56
* @version V1.0
*
* @History
* 20201015 1:21:56 Andy add
*
*/
@Service
public class CustomReportImpl implements CustomReportInterface {
@Autowired
private CustomReportConfigMapper customReportConfigMapper;
@Autowired
private CustomReportMapper customReportMapper;
@Override
public CustomReportConfig Load(String site, String reportid) throws Exception {
CustomReportConfig config=new CustomReportConfig();
//2020-11-6 andy, 因所有的 site共用配置所以此处site直接给*
//String mainHandle="CustomReportBO:"+site+","+reportid;
String mainHandle="CustomReportBO:*,"+reportid;
Map<String, Object> param = new HashMap<String, Object>();
param.put("SITE", "*");
param.put("REPORT_ID", reportid);
//2020-11-6 andy, 因所有的 site共用配置所以此处site直接给*
//自定义报表_主要模块 数据
//List<Map<String,Object>> map=logicService.executeQuery(site, QUERY_MAIN_SQL, param);
//List<Map<String,Object>> map=logicService.executeQuery("*", QUERY_MAIN_SQL, param);
List<CustomReportMainmodel> map = customReportConfigMapper.selectMain("*", reportid);
if(map.size()<1)
{
//40025.simple = 查询无资料
//throw Exceptions.convert(new BasicBOBeanException(40025,new Data()));
throw new RuntimeException("查询无资料");
}else
{
if(map.get(0).getConditionSqlConfig()==null || map.get(0).getConditionSqlConfig().trim().length()<1)
{
//70502.simple=请在检索语句配置栏填写 SQL语句
//throw Exceptions.convert(new BasicBOBeanException(70502,new Data()));
throw new RuntimeException("请在检索语句配置栏填写 SQL语句 ");
}
//获取 Z_CUSTOM_REPORT_MAINMODEL 表中相关字段
config.setHandle(map.get(0).getHandle()==null?"":map.get(0).getHandle());
config.setSite(site);
config.setReportID(reportid);
config.setReportTitle(map.get(0).getReportTitle()==null?"":map.get(0).getReportTitle().trim());
config.setReportDESC(map.get(0).getReportDesc()==null?"":map.get(0).getReportDesc().toString().trim());
config.setConditionSQLConfig(map.get(0).getConditionSqlConfig()==null?"":map.get(0).getConditionSqlConfig().toString().trim());
config.setDisplayType(map.get(0).getDisplayType()==null?"":map.get(0).getDisplayType().toString().trim());
config.setTimeRefresh(map.get(0).getTimeRefresh()==null?"0":map.get(0).getTimeRefresh().toString());
config.setBackgroundColor(map.get(0).getBackgroundColor()==null?"":map.get(0).getBackgroundColor().toString().trim());
config.setFontColor(map.get(0).getFontColor()==null?"":map.get(0).getFontColor().toString().trim());
config.setPageSize(map.get(0).getPageSize()==null?"0":map.get(0).getPageSize().toString());
config.setUser(map.get(0).getModifyUser()==null?"":map.get(0).getModifyUser().toString().trim());
}
param=null;
//自定义报表_检索条件配置 数据
List<CustomReportSearchConditionConfig> conditionConfigList=new ArrayList<CustomReportSearchConditionConfig>();
param=new HashMap<String, Object>();
param.put("MAINHANDLE", mainHandle);
//map=logicService.executeQuery(site, QUERY_SEARCHCONDITIONCONFIG_SQL, param);
List<CustomReportSearchConditionConfig> searchConditionMap = customReportConfigMapper.selectSearchConditionConfig( mainHandle );
for(int i=0;i<searchConditionMap.size();i++)
{
CustomReportSearchConditionConfig searchConditionConfig=new CustomReportSearchConditionConfig();
searchConditionConfig.setSeq(searchConditionMap.get(i).getSeq()==null?0:searchConditionMap.get(i).getSeq());
searchConditionConfig.setConditionName(searchConditionMap.get(i).getConditionName()==null?"":searchConditionMap.get(i).getConditionName().toString());
searchConditionConfig.setConditionField(searchConditionMap.get(i).getConditionField()==null?"":searchConditionMap.get(i).getConditionField().toString());
searchConditionConfig.setFieldType(searchConditionMap.get(i).getFieldType()==null?"":searchConditionMap.get(i).getFieldType().toString());
searchConditionConfig.setDailogCheckboxSQL(searchConditionMap.get(i).getDailogCheckboxSQL()==null?"":searchConditionMap.get(i).getDailogCheckboxSQL().toString());
searchConditionConfig.setRequiredType(searchConditionMap.get(i).getRequiredType()==null?"":searchConditionMap.get(i).getRequiredType().toString());
searchConditionConfig.setRowID(searchConditionMap.get(i).getRowID()==null?1:searchConditionMap.get(i).getRowID());
searchConditionConfig.setColumnID(searchConditionMap.get(i).getColumnID()==null?1:searchConditionMap.get(i).getColumnID());
searchConditionConfig.setColumnWidthPercent(searchConditionMap.get(i).getColumnWidthPercent()==null?1:searchConditionMap.get(i).getColumnWidthPercent());
conditionConfigList.add(searchConditionConfig);
}
//更新检索条件栏位的值
int k=0;
for(CustomReportSearchConditionConfig searchConditionConfig:conditionConfigList)
{
if(searchConditionConfig.getDailogCheckboxSQL().trim().isEmpty())
{
conditionConfigList.get(k).setFieldValueList(new ArrayList());
}else
{
//当 弹出复选框数据获取SQL 有值时依SQL获取相应的字段值列表
//List<Map<String, Object>> result=logicService.executeQuery(site, searchConditionConfig.getDailogCheckboxSQL().trim(), new HashMap<String,Object>());
List<Map<String, Object>> result = customReportMapper.executeSqlQuery( searchConditionConfig.getDailogCheckboxSQL().trim() );
if(result.size()>0)
{
List<String> lst=new ArrayList<String>();
for(Map<String,Object> m:result)
{
for(String key:m.keySet())
{
lst.add(m.get(key).toString());
}
}
conditionConfigList.get(k).setFieldValueList(lst);
}
}
k++;
}
config.setSearchConditionConfigList(conditionConfigList);
//自定义报表_检索结果列配置
List<CustomReportSearchResultColumnConfig> resultColumnConfigList=new ArrayList<CustomReportSearchResultColumnConfig>();
//map=logicService.executeQuery(site, QUERY_RESULTCOLUMNCONFIG_SQL, param);
List<CustomReportSearchResultColumnConfig> resultColumnMap = customReportConfigMapper.selectResultColumnConfig( mainHandle );
for(int i=0;i<resultColumnMap.size();i++)
{
CustomReportSearchResultColumnConfig resultColumnConfig=new CustomReportSearchResultColumnConfig();
resultColumnConfig.setSeq(resultColumnMap.get(i).getSeq()==null?"0":resultColumnMap.get(i).getSeq().toString());
resultColumnConfig.setColumnField(resultColumnMap.get(i).getColumnField()==null?"":resultColumnMap.get(i).getColumnField().toString().trim());
resultColumnConfig.setColumnName(resultColumnMap.get(i).getColumnName()==null?"":resultColumnMap.get(i).getColumnName().toString().trim());
resultColumnConfig.setColumnWidthPercent(resultColumnMap.get(i).getColumnWidthPercent()==null?"1":resultColumnMap.get(i).getColumnWidthPercent().toString().trim());
resultColumnConfigList.add(resultColumnConfig);
}
config.setSearchResultColumnList(resultColumnConfigList);
param=null;
map=null;
return config;
}
/* (non-Javadoc)
* @see com.knsdev.service.CustomReportInterface#Query(java.lang.String)
*/
@Override
public List<Map<String, Object>> Query(String condition) throws Exception {
JSONObject object = JSONObject.parseObject(condition);
String site=object.getString("site");
String reportID=object.getString("reportID");
if((site==null || site.trim().isEmpty()) || (reportID==null || reportID.trim().isEmpty()))
{
//70501.simple=站点、报表作业编号均不能为空
//throw Exceptions.convert(new BasicBOBeanException(70501,new Data()));
throw new RuntimeException("站点、报表作业编号均不能为空");
}
//1.获取检索语句配置
String querySentence="";
Map<String, Object> param = new HashMap<String, Object>();
param.put("SITE", "*");
param.put("REPORT_ID", reportID);
//List<Map<String,Object>> map=logicService.executeQuery("*", GET_QUERY_SENTENCE_SQL, param);
List<CustomReportMainmodel> map= customReportMapper.selectQuerySentence("*",reportID);
if(map.size()>0)
{
querySentence=map.get(0).getConditionSqlConfig()==null?"":map.get(0).getConditionSqlConfig();
}
if(querySentence.trim().isEmpty())
{
//70502.simple=请在检索语句配置栏填写 SQL语句
//throw Exceptions.convert(new BasicBOBeanException(70502,new Data()));
throw new RuntimeException("请在检索语句配置栏填写 SQL语句");
}
param=null;
//2.依定的规则 检索语句中需替换的内容 以 :开头,所以此处依:先做下判断是否有需替换的内容
if(querySentence.indexOf(":")>1)
{
//处理需替换的数据
//自定义报表_检索条件动态SQL配置
List<CustomReportSearchConditionDynSQLConfig> dynSQLConfigList=new ArrayList<CustomReportSearchConditionDynSQLConfig>();
param = new HashMap<String, Object>();
param.put("MAINHANDLE", "CustomReportBO:*,"+reportID);
//map=logicService.executeQuery(site, QUERY_DYNSQLCONFIG_SQL, param);
List<CustomReportSearchConditionDynSQLConfig> dynSqlConfigMap = customReportConfigMapper.selectDynSqlConfig( "CustomReportBO:*,"+reportID );
for(int i=0;i<dynSqlConfigMap.size();i++)
{
if(dynSqlConfigMap.get(i).getDynConditionReplaceField()==null || dynSqlConfigMap.get(i).getDynConditionReplaceField().trim().isEmpty() || dynSqlConfigMap.get(i).getDynamicConditionSQL()==null || dynSqlConfigMap.get(i).getDynamicConditionSQL().trim().isEmpty() || dynSqlConfigMap.get(i).getConditionField()==null || dynSqlConfigMap.get(i).getConditionField().trim().isEmpty())
{
//70503.simple=自定义报表配置的检索条件动态SQL配置模块 各栏位均需填写有效值
//throw Exceptions.convert(new BasicBOBeanException(70503,new Data()));
throw new RuntimeException("自定义报表配置的检索条件动态SQL配置模块 各栏位均需填写有效值");
}
if(object.getString(dynSqlConfigMap.get(i).toString())==null || object.getString(dynSqlConfigMap.get(i).getConditionField()).isEmpty())
{
//当前台的json格式字串中没有 依赖条件的值时,即表示查询条件中无此项,可直接赋空字串
//queryMap.put(map.get(i).get("DYN_CONDITION_REPLACE_FIELD").toString().trim(), "");
querySentence=querySentence.replaceAll(dynSqlConfigMap.get(i).getDynConditionReplaceField().trim(), " ");
}else
{
// 2020-11-5 andy ,
//因在 检索条件动态SQL配置 时输入的动态条件SQL为 AND SFC=@SFC 或 AND SFC IN(@SFC) 所以跟前台商定 当有多个值时,中间用 , 分隔;后台接收后做处理
String[] vlsp=object.getString(dynSqlConfigMap.get(i).getConditionField().trim()).split(",");
StringBuilder sb=new StringBuilder();
int j=0;
for(int k=0;k<vlsp.length;k++)
{
j++;
if(j<vlsp.length)
{
sb.append("'"+vlsp[k].toString().trim()+"',");
}else
{
sb.append("'"+vlsp[k].toString().trim()+"'");
}
}
querySentence=querySentence.replaceAll(dynSqlConfigMap.get(i).getDynConditionReplaceField().trim(), dynSqlConfigMap.get(i).getDynamicConditionSQL().trim().replace("@"+dynSqlConfigMap.get(i).getConditionField().trim(), sb.toString())
.replace("#"+dynSqlConfigMap.get(i).getConditionField().toString().trim(), "'%"+sb.toString().substring(1, sb.toString().length()-1)+"%'"));
// queryMap.put(map.get(i).get("DYN_CONDITION_REPLACE_FIELD").toString().trim(), map.get(i).get("DYNAMIC_CONDITION_SQL").toString().trim().replace("@"+map.get(i).get("CONDITION_FIELD").toString().trim(), object.optString(map.get(i).get("CONDITION_FIELD").toString().trim())));
}
}
}
//3.执行查询
Map<String,Object> siteParam=new HashMap<String, Object>();
//siteParam.put("SITE", site);
//替换站点 2021/08/19
querySentence = querySentence.replace(":SITE","\'"+site+"\'");
//List<Map<String, Object>> result=logicService.executeQuery(site, querySentence,siteParam);
List<Map<String, Object>> result= customReportMapper.executeSqlQuery( querySentence );
//2020-11-17 andy add;解决value值为null时转json会被移除的问题
for(int i=0;i<result.size();i++)
{
for(Map.Entry<String, Object> entry:result.get(i).entrySet())
{
if(entry.getValue()==null)
{
result.get(i).put(entry.getKey(), " ");
}
}
}
return result;
}
}

@ -21,7 +21,7 @@ public class ActiveMQUtil {
String queue = "send.weChat.notice";
JSONObject jsonObject = new JSONObject();
try{
jsonObject.put("TO_USER", user);
jsonObject.put("TO_USER", "@all");
jsonObject.put("CONTENT",text);
// defaultJmsTemplate.getJmsTemplate().setReceiveTimeout(TimeUnit.SECONDS.toMillis(3));
defaultJmsTemplate.convertAndSend(queue, jsonObject.toString());

@ -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>

@ -9,7 +9,7 @@ spring:
jndi-name: jdbc/jts/wipPool
activemq:
enabled: false
brokerUrl: tcp://121.36.58.109:61616?wireFormat.maxInactivityDuration=0
brokerUrl: tcp://172.16.251.166:61616?wireFormat.maxInactivityDuration=0
password: admin
user: admin
pool:
@ -25,17 +25,18 @@ ws:
pwd: a123456
valid: N
#ftp
ftp:
host:
host: 172.16.251.165
port: 21
username:
password:
#打印服务器配置
#打印服务
print:
server: http://10.10.170.32:8022/print/mesnacprint
#文件模板路径
exportDocument:
filePath: /usr/word/
outputPath: /usr/word/outputWord/

@ -20,7 +20,6 @@ public class TmdMc {
@Test
public void callErpWebService() throws RemoteException {
String shopOrder = "SO20210714";

@ -67,7 +67,7 @@ public class SfcDispatchController {
*/
@ResponseBody
@GetMapping("getSfcDispatch")
public R getSfcDispatch(String workCenter, String dispatchStatus, String item, String itemNumber, String workOrder, String shopOrder,
public R getSfcDispatch(String workCenter, String dispatchStatus, String item, String itemNumber, String workOrder, String shopOrder, String blankingSize,
String resrce, String resourceType, String operation, String operationDescription, String sfc, String component, String componentDescription, String turnOperation,
String isDispatch, String startFromDate_S, String startToDate_S, String completeFromDate_S, String completeToDate_S) {
List<SfcDispatchDto> list;
@ -85,6 +85,7 @@ public class SfcDispatchController {
sfcDispatchDto.setResourceType(resourceType);
sfcDispatchDto.setOperation(operation);
sfcDispatchDto.setSfc(sfc);
sfcDispatchDto.setBlankingSize(blankingSize);
sfcDispatchDto.setComponent(component);
sfcDispatchDto.setComponentDescription(componentDescription);
sfcDispatchDto.setTurnOperation(turnOperation);

@ -391,13 +391,13 @@ public class CallItemServiceImpl extends ServiceImpl<CallItemMapper, CallItem> i
}
if (StringUtil.notBlank(itemGroup) && "GB".equals(itemGroup)) {
if (!blankingSize.contains("*") || blankingSize.split("\\*").length < 2) {
if (!blankingSize.contains("×") || blankingSize.split("×").length < 2) {
callItem.setSizeReqQty(callItem.getRequiredQty());
compQtyMap.put(component, callItem.getRequiredQty());
continue;
}
String []size = blankingSize.split("\\*");
String []size = blankingSize.split("×");
if (size != null && size.length >= 2) {
int sizeLength = size.length;
BigDecimal length = new BigDecimal(size[sizeLength-1]);
@ -410,8 +410,8 @@ public class CallItemServiceImpl extends ServiceImpl<CallItemMapper, CallItem> i
}
} else {
String[] size = new String[1];
if (blankingSize.contains("*")) {
size = blankingSize.split("\\*");
if (blankingSize.contains("×")) {
size = blankingSize.split("×");
} else {
size[0] = blankingSize;
}

@ -740,6 +740,9 @@
<if test="isDispatch != null and isDispatch != ''">
AND SD.IS_DISPATCH = #{isDispatch}
</if>
<if test="blankingSize != null and blankingSize != ''">
AND SD.BLANKING_SIZE LIKE '%'||#{blankingSize}||'%'
</if>
<if test="startFromDate != null">
AND SO.PLANNED_START_DATE >= #{startFromDate}
</if>

@ -482,6 +482,9 @@
<if test="integration.endDateTime != null">
AND REQUEST_DATE_TIME &lt;= #{integration.endDateTime}
</if>
<if test="integration.param != null and integration.param != ''">
AND PARAM LIKE '%${integration.param}%'
</if>
</where>
ORDER BY REQUEST_DATE_TIME DESC
</select>

@ -1,5 +1,7 @@
package com.foreverwin.mesnac.listener.util;
import java.math.BigDecimal;
public class ConstantsUtil {
public static String Y = "Y";
public static String N = "N";

@ -31,4 +31,6 @@ public interface UserGroupMapper extends BaseMapper<UserGroup> {
Integer findUserGroupByUser(@Param("site")String site,@Param("user")String user,@Param("list")List<String> list);
List<UserGroup> findUserGroupListByUser(@Param("site")String site,@Param("user")String user);
}

@ -203,9 +203,16 @@ public class StringUtils {
String key = map.getKey();
String value = map.getValue();
String keyStr = '#' + key + '#';
if (message.contains(keyStr)) {
message = message.replace(keyStr, value);
if(StringUtils.isEmpty(value)){
message = message.replace(keyStr, "");
}else {
message = message.replace(keyStr, value);
}
}
}
return message;

@ -668,7 +668,7 @@
JOIN Z_SFC_DISPATCH zsd ON S.SFC=zsd.SFC AND S.SITE=zsd.SITE
JOIN Z_PROD_READY_TASK zprt ON ZPRT.SFC_DISPATCH_BO=zsd.HANDLE
WHERE S.SITE=#{ew.entity.site} AND ZSD.RESRCE=#{ew.entity.resrce} AND ZSD.DISPATCH_STATUS!='CANCEL' AND ZSD.DISPATCH_STATUS!='COMPLETE'
AND S.STATUS_BO IN ('StatusBO:'||#{ew.entity.site}||',401','StatusBO:'||#{ew.entity.site}||',402','StatusBO:'||#{ew.entity.site}||',403')
AND S.STATUS_BO IN ('StatusBO:'||#{ew.entity.site}||',401','StatusBO:'||#{ew.entity.site}||',402','StatusBO:'||#{ew.entity.site}||',403','StatusBO:'||#{ew.entity.site}||',404')
AND zprt.STATUS='FINISH' AND ZPRT."RESULT"='OK'
</select>

@ -382,5 +382,13 @@
</foreach>
</select>
<select id="findUserGroupListByUser" resultMap="BaseResultMap">
SELECT UG.USER_GROUP
FROM USR U
LEFT JOIN USER_GROUP_MEMBER UGM ON U.HANDLE = UGM.USER_OR_GROUP_GBO
LEFT JOIN USER_GROUP UG ON UG.HANDLE = UGM.USER_GROUP_BO
WHERE U.USER_ID = #{user} AND U.SITE = #{site}
</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));
}
}

@ -16,6 +16,15 @@ public class WorkShopTransferDto extends WorkShopTransfer {
private String status;
private String dispatchNo;
private String resrce;
private String workCenterDesc;
public String getWorkCenterDesc() {
return workCenterDesc;
}
public void setWorkCenterDesc(String workCenterDesc) {
this.workCenterDesc = workCenterDesc;
}
public String getResrce() {
return resrce;

@ -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);
}

@ -126,14 +126,11 @@ public class PodTemplateServiceImpl implements PodTemplateService {
throw new BaseException("产品条码" + sfc + "不存在");
}
String status = StringUtil.trimHandle(sfcById.getStatusBo());
if (!status.equals("403") && !status.equals("401") && !status.equals("402")) {
if (!status.equals("404")&&!status.equals("403") && !status.equals("401") && !status.equals("402")) {
throw new BaseException("产品条码" + sfc + "不在工作中或排队中");
}
//校验产品条码是否在当前工序排队
Operation operationBySfcBo = commonService.getOperationBySfcBo(sfcById.getHandle());
/* if (StringUtil.notBlank(operation)&&!operationBySfcBo.getOperation().equals(operation)){
throw new BaseException("产品条码"+sfc+"在"+operationBySfcBo.getOperation()+"/"+operationBySfcBo.getDescription()+"工序");
}*/
//校验SFC+工序+设备+STEP_ID是否与当前设备确认的派工单匹配
String sfcDispatchStatus = sfcCrossMapper.getSfcDispatch(site, sfc, operationBySfcBo.getOperation(), operationBySfcBo.getStepId(), resrce);
if (StringUtil.isBlank(sfcDispatchStatus)) {

@ -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);
}
}
}

@ -7,10 +7,14 @@ 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.common.util.StringUtil;
import com.foreverwin.mesnac.meapi.dto.RouterStepDto;
import com.foreverwin.mesnac.meapi.dto.SfcDto;
import com.foreverwin.mesnac.meapi.model.Router;
import com.foreverwin.mesnac.meapi.model.WorkCenter;
import com.foreverwin.mesnac.meapi.service.RouterService;
import com.foreverwin.mesnac.meapi.service.RouterStepService;
import com.foreverwin.mesnac.meapi.service.ShopOrderService;
import com.foreverwin.mesnac.meapi.service.WorkCenterService;
import com.foreverwin.mesnac.production.dto.SplitSfcDto;
import com.foreverwin.mesnac.production.mapper.SfcCrossMapper;
import com.foreverwin.mesnac.production.mapper.SplitSfcMapper;
@ -18,6 +22,7 @@ import com.foreverwin.mesnac.production.model.SplitSfc;
import com.foreverwin.mesnac.production.model.StepOperation;
import com.foreverwin.mesnac.production.service.SplitSfcService;
import com.foreverwin.modular.core.exception.BaseException;
import com.foreverwin.modular.core.exception.BusinessException;
import com.foreverwin.modular.core.meext.MEServices;
import com.foreverwin.modular.core.util.CommonMethods;
import com.foreverwin.modular.core.util.FrontPage;
@ -53,10 +58,14 @@ public class SplitSfcServiceImpl extends ServiceImpl<SplitSfcMapper, SplitSfc> i
@Autowired
private SfcDispatchCommonService sfcDispatchCommonService;
@Autowired
private WorkCenterService workCenterService;
@Autowired
private ShopOrderService shopOrderService;
@Autowired
private RouterService routerService;
@Autowired
private RouterStepService routerStepService;
@Autowired
private SfcCrossMapper sfcCrossMapper;
@Override
public IPage<SplitSfc> selectPage(FrontPage<SplitSfc> frontPage, SplitSfc splitSfc) {
@ -122,7 +131,10 @@ public class SplitSfcServiceImpl extends ServiceImpl<SplitSfcMapper, SplitSfc> i
//根据sfc找工单等信息
SfcDto sfcData =getGoodSfcData(sfc);
if (sfcData==null){
throw new BaseException("未找到产品条码信息");
}
String operation = sfcData.getOperation();
SplitSfcRequest splitSfcRequest=new SplitSfcRequest();
try {
SplitSerializeServiceInterface splitService = MEServices.create("com.sap.me.production", "SplitSerializeService",site);
@ -147,9 +159,19 @@ public class SplitSfcServiceImpl extends ServiceImpl<SplitSfcMapper, SplitSfc> i
splitSfc.setCreateUser(CommonMethods.getUser());
splitSfc.setCreatedDateTime(LocalDateTime.now());
save(splitSfc);
String workCenterBo = shopOrderService.getById(HandleEnum.SHOP_ORDER.getHandle(site, sfcData.getShopOrder())).getPlannedWorkCenterBo();
String workCenter = null;
if (operation.contains("_")) {
workCenter = operation.split("_")[0];
} else {
workCenter = operation;
}
String workCenterBo = HandleEnum.WORK_CENTER.getHandle(site, workCenter);
WorkCenter workCenterModel = workCenterService.getById(workCenterBo);
if (workCenterModel == null) {
throw BusinessException.build("生产车间【" +workCenter+ "】不存在");
}
Router routerBySfcBo = routerService.getRouterBySfcBo(HandleEnum.SFC.getHandle(site, sfc));
sfcDispatchCommonService.saveSfcDispatch(site,CommonMethods.getUser(),StringUtil.trimHandle(workCenterBo),newSfc, sfcData.getShopOrder(),routerBySfcBo.getHandle());
sfcDispatchCommonService.saveSfcDispatch(site,CommonMethods.getUser(),workCenter,newSfc, sfcData.getShopOrder(),routerBySfcBo.getHandle());
return splitSfc;
} catch (Exception e) {
ExceptionUtil.throwException(e);
@ -235,8 +257,23 @@ public class SplitSfcServiceImpl extends ServiceImpl<SplitSfcMapper, SplitSfc> i
dispositionSfcsRequest.setDispositionSelection(dispositionSelection);
dispositionSfcsRequest.setProdCtx(new ProductionContext());
ncProductionService.dispositionMultipleSfcs(dispositionSfcsRequest);
String workCenterBo = shopOrderService.getById(HandleEnum.SHOP_ORDER.getHandle(site, sfcData.getShopOrder())).getPlannedWorkCenterBo();
sfcDispatchCommonService.saveSfcDispatch(site,CommonMethods.getUser(),StringUtil.trimHandle(workCenterBo),newSfc, sfcData.getShopOrder(),maxRevisionRouter.getHandle());
String workCenter;
List<RouterStepDto> routerOperationByRouterBo = routerStepService.findRouterOperationByRouterBo(site, routerBo);
if (routerOperationByRouterBo.isEmpty()){
throw new BaseException("处置工艺路线没有步骤");
}
String routerOperation = routerOperationByRouterBo.get(0).getOperation();
if (routerOperation.contains("_")) {
workCenter = routerOperation.split("_")[0];
} else {
workCenter = routerOperation;
}
String workCenterBo = HandleEnum.WORK_CENTER.getHandle(site, workCenter);
WorkCenter workCenterModel = workCenterService.getById(workCenterBo);
if (workCenterModel == null) {
throw BusinessException.build("生产车间【" +workCenter+ "】不存在");
}
sfcDispatchCommonService.saveSfcDispatch(site,CommonMethods.getUser(),workCenter,newSfc, sfcData.getShopOrder(),maxRevisionRouter.getHandle());
}
SplitSfc splitSfc=new SplitSfc();
splitSfc.setHandle(HandleEnum.SPLIT_SFC.getHandle(site,newSfc));

@ -8,8 +8,10 @@ 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.common.util.StringUtil;
import com.foreverwin.mesnac.meapi.mapper.WorkCenterMapper;
import com.foreverwin.mesnac.meapi.model.Operation;
import com.foreverwin.mesnac.meapi.model.Router;
import com.foreverwin.mesnac.meapi.model.WorkCenter;
import com.foreverwin.mesnac.meapi.service.OperationService;
import com.foreverwin.mesnac.meapi.service.RouterService;
import com.foreverwin.mesnac.production.dto.WorkShopTransferDto;
@ -20,6 +22,7 @@ import com.foreverwin.mesnac.production.model.WorkShopTransfer;
import com.foreverwin.mesnac.production.service.SfcCrossService;
import com.foreverwin.mesnac.production.service.WorkShopTransferService;
import com.foreverwin.modular.core.exception.BaseException;
import com.foreverwin.modular.core.exception.BusinessException;
import com.foreverwin.modular.core.util.CommonMethods;
import com.foreverwin.modular.core.util.FrontPage;
import org.springframework.beans.factory.annotation.Autowired;
@ -50,6 +53,8 @@ public class WorkShopTransferServiceImpl extends ServiceImpl<WorkShopTransferMap
@Autowired
private OperationService operationService;
@Autowired
private WorkCenterMapper workCenterMapper;
@Autowired
private SfcCrossService sfcCrossService;
@Autowired
private SfcCrossMapper sfcCrossMapper;
@ -75,18 +80,17 @@ public class WorkShopTransferServiceImpl extends ServiceImpl<WorkShopTransferMap
//条码是否在工作中心下
String site = CommonMethods.getSite();
String sfc = workShopTransfer.getSfc();
String workCenter = workShopTransfer.getWorkCenter();
if (StringUtil.isBlank(sfc)) {
throw new BaseException("产品条码不能为空");
}
String type = workShopTransfer.getType();
WorkShopTransferDto dto = workShopTransferMapper.getSfcData(site, sfc);
if (dto == null) {
throw new BaseException("未找到该产品条码");
}
if (StringUtil.isBlank(dto.getWorkCenter()) || !dto.getWorkCenter().equals(workCenter)) {
throw new BaseException("产品条码不在所选车间");
}
String currentOperation = dto.getOperation();
String operationDesc = dto.getOperationDesc();
//查询上一工序
Router router = routerService.getRouterBySfcBo(HandleEnum.SFC.getHandle(site, sfc));
int seq = 0;
@ -97,11 +101,37 @@ public class WorkShopTransferServiceImpl extends ServiceImpl<WorkShopTransferMap
seq = i;
}
}
if (seq != 0) {
StepOperation stepOperation = stepOperationList.get(seq - 1);
dto.setLastOperation(stepOperation.getOperation());
dto.setLastOperationDesc(stepOperation.getDescription());
String operation = "";
if (type.equals("IN")){
if (stepOperationList.size()!=seq+1){
StepOperation stepOperation = stepOperationList.get(seq + 1);
operation=stepOperation.getOperation();
dto.setOperation(operation);
dto.setOperationDesc(stepOperation.getDescription());
}
dto.setLastOperation(currentOperation);
dto.setLastOperationDesc(operationDesc);
}else {
//转出本工序
operation=dto.getOperation();
if (seq != 0) {
StepOperation stepOperation = stepOperationList.get(seq - 1);
dto.setLastOperation(stepOperation.getOperation());
dto.setLastOperationDesc(stepOperation.getDescription());
}
}
String workCenter;
if (StringUtil.notBlank(operation)&&operation.contains("_")) {
workCenter = operation.split("_")[0];
} else {
workCenter = operation;
}
WorkCenter workCenterModel = workCenterMapper.findWorkCenterDescriptionByWorkCenter(site, workCenter, LocaleContextHolder.getLocale().getLanguage());
if (workCenterModel == null) {
throw BusinessException.build("生产车间【" +workCenter+ "】不存在");
}
dto.setWorkCenterDesc(workCenterModel.getDescription());
dto.setWorkCenter(workCenter);
return dto;
}
@ -121,6 +151,15 @@ public class WorkShopTransferServiceImpl extends ServiceImpl<WorkShopTransferMap
//更改派工单状态
sfcDispatchCommonService.updateSfcDispatchStatus(site, CommonMethods.getUser(), dto.getDispatchNo(), DispatchStatusEnum.START.getCode());
} else {
//查询是否有转出记录
QueryWrapper<WorkShopTransfer> queryWrapper=new QueryWrapper<>();
queryWrapper.eq(WorkShopTransfer.SFC,workShopTransfer.getSfc());
queryWrapper.eq(WorkShopTransfer.STEP_ID,dto.getStepId());
queryWrapper.eq(WorkShopTransfer.TYPE,"OUT");
List<WorkShopTransfer> list = list(queryWrapper);
if (list.isEmpty()){
throw BusinessException.build("没有转出记录");
}
//转入完成
sfcCrossService.completeAction(site, currentRevisionRef.getHandle(), dto.getResrce(), sfcBO, dto.getQty());
//更改派工单状态

@ -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…
Cancel
Save