Compare commits

...

3 Commits

4 changed files with 96 additions and 7 deletions

View File

@ -537,7 +537,12 @@ public class DealWithMapping extends ToolUtil {
* @param mainMap
* @param detailMap
* @param mappingDetail
* @return
*
* <h1>:</h1>
* <p>
* v2.0 xuanran.wang
* {?requestid}requestid ?
* <p>
*/
private Object normalValueDeal(Map<String, Object> mainMap, Map<String, Object> detailMap, MappingDetail mappingDetail) {
@ -563,7 +568,19 @@ public class DealWithMapping extends ToolUtil {
break;
// 默认值
case DEFAULT_VALUE: {
value = valueContext;
FieldMessage fieldMassage = mappingDetail.getFieldMassage();
String workFlowVal = "";
if(fieldMassage != null){
String fieldName = fieldMassage.getFieldName().toLowerCase();
if ("1".equals(childSource)) {
workFlowVal = Util.null2String(detailMap.get(fieldName));
} else if ("0".equals(childSource)) {
workFlowVal = Util.null2String(mainMap.get(fieldName));
}
}
value = Util.null2String(valueContext)
.replace("{?requestid}", String.valueOf(mainMap.get("requestid")))
.replace("?", workFlowVal);
}
break;
// 当前时间
@ -778,7 +795,12 @@ public class DealWithMapping extends ToolUtil {
* @param detailMap
* @param mappingDetail
* @param relationRs
* @return
*
* <h1>:</h1>
* <p>
* v2.0 xuanran.wang
* {?requestid}requestid ?
* <p>
*/
private Object normalValueDeal(Map<String, Object> mainMap, Map<String, Object> detailMap, RecordSet relationRs, MappingDetail mappingDetail) {
String paramType = mappingDetail.getParamType();
@ -810,7 +832,24 @@ public class DealWithMapping extends ToolUtil {
break;
// 默认值
case DEFAULT_VALUE: {
value = valueContext;
FieldMessage fieldMassage = mappingDetail.getFieldMassage();
String workFlowVal = "";
if(fieldMassage != null){
String fieldName = fieldMassage.getFieldName().toLowerCase();
if ("1".equals(childSource)) {
workFlowVal = Util.null2String(detailMap.get(fieldName));
} else if ("0".equals(childSource)) {
workFlowVal = Util.null2String(mainMap.get(fieldName));
} else {
workFlowVal = Util.null2String(relationRs.getString(fieldName));
}
if ("rootNode".equals(mappingDetail.getBelongTo()) && "2".equals(childSource)) {
workFlowVal = Util.null2String(tempRs.getString(fieldName));
}
}
value = Util.null2String(valueContext)
.replace("{?requestid}", String.valueOf(mainMap.get("requestid")))
.replace("?", workFlowVal);
}
break;
// 当前时间

View File

@ -45,7 +45,7 @@ public class PushSealTaskAction extends CusBaseAction {
}
}catch (Exception e){
trans.rollback();
throw new CustomerException(e.getMessage());
throw new CustomerException(Util.logStr("执行提交方法异常:{}", e.getMessage()));
}
trans.commit();
}

View File

@ -1,8 +1,17 @@
package weaver.xuanran.wang.schroeder.cus_field_value;
import aiyh.utils.Util;
import aiyh.utils.excention.CustomerException;
import com.alibaba.fastjson.JSONObject;
import org.apache.commons.collections.MapUtils;
import org.apache.commons.lang3.StringUtils;
import org.apache.log4j.Logger;
import weaver.conn.RecordSet;
import weaver.xiao.commons.config.interfacies.CusInterfaceGetValue;
import weaver.zwl.common.ToolUtil;
import java.util.Map;
import java.util.*;
import java.util.stream.Collectors;
/**
* <h1></h1>
@ -11,12 +20,52 @@ import java.util.Map;
* @Date 2022/12/2 16:10
*/
public class PushSealTaskSealValue implements CusInterfaceGetValue {
private final ToolUtil toolUtil = new ToolUtil();
private final Logger logger = Util.getLogger();
@Override
public Object execute(Map<String, Object> mainMap, Map<String, Object> detailMap, String currentValue, Map<String, String> pathParam) {
logger.info(Util.logStr("路径参数:[{}]", JSONObject.toJSONString(pathParam)));
// 接口字段
String sealSnField = pathParam.get("sealSnField");
String sealNumField = pathParam.get("sealNumField");
return null;
// 表单字段
String workFlowSealNumField = pathParam.get("workFlowSealNumField");
String workFlowSealSnField = pathParam.get("workFlowSealSnField");
// 自定义sql业务印章类型
String sealSnCusSql = pathParam.get("sealSnCusSql");
// 使用次数
String sealNumCusSql = pathParam.get("sealNumCusSql");
// 非空校验
if(checkBlank(sealSnField, sealNumField, sealSnCusSql, sealNumCusSql, workFlowSealNumField, workFlowSealSnField)){
throw new CustomerException(Util.logStr("自定义类路径中必要参数为空,请检查!当前pathParam : {}", JSONObject.toJSONString(pathParam)));
}
// 表单印章使用类型值
String sealSnVal = Util.null2String(String.valueOf(detailMap.get(sealSnField)),"");
// 如果为空返回空集合
if(StringUtils.isBlank(sealSnVal)){
return Collections.emptyList();
}
ArrayList<Map<String, Object>> list = new ArrayList<>();
logger.info(Util.logStr("当前值 : {}", currentValue));
int detailId = -1;
if(MapUtils.isNotEmpty(detailMap)){
detailId = Util.getIntValue(String.valueOf(detailMap.get("id")), -1);
}
for (String val : sealSnVal.split(",")) {
// 印章类型转换执行自定义sql
String inSealVal = Util.null2DefaultStr(toolUtil.getValueByChangeRule(sealSnCusSql, val, String.valueOf(mainMap.get("requestid")), detailId),"");
String inSealNumVal = Util.null2DefaultStr(toolUtil.getValueByChangeRule(sealNumCusSql, val, String.valueOf(mainMap.get("requestid")), detailId),"");
HashMap<String, Object> map = new HashMap<>();
map.put(sealSnField, inSealVal);
map.put(sealNumField, inSealNumVal);
list.add(map);
}
return list;
}
public boolean checkBlank(String ... args){
return Arrays.stream(args).noneMatch(StringUtils::isBlank);
}
}

View File

@ -93,6 +93,7 @@ public class SchroederQRCodeService {
log.info(Util.logStr("this response is [{}]", responeVo.getEntityString()));
try {
response = responeVo.getEntityMap();
log.info(Util.logStr("接口响应:{}", JSONObject.toJSONString(response)));
} catch (JsonProcessingException e) {
log.error(Util.logStr("push data error, can not parse response to map" +
"this response is [{}], url is [{}]request params is [{}] request heard is [{}];",