From 14dbce6c82b3e0a9560add3bc5d4669144d512de Mon Sep 17 00:00:00 2001 From: IT-xiaoXiong <774495953@qq.com> Date: Thu, 18 Nov 2021 18:12:43 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B5=81=E7=A8=8B=E8=BD=AC?= =?UTF-8?q?=E5=A4=96=E9=83=A8=E7=94=A8=E6=88=B7=E6=88=B7=E7=9A=84=E8=81=94?= =?UTF-8?q?=E7=B3=BB=E4=BA=BA=E5=A7=93=E5=90=8D=E5=92=8C=E5=A4=96=E9=83=A8?= =?UTF-8?q?=E5=AE=A2=E6=88=B7=E5=A7=93=E5=90=8D=E7=9A=84=20bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../aiyh_pcn/workflow_to_customer/config/CRM_Config.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/weaver/aiyh_pcn/workflow_to_customer/config/CRM_Config.java b/weaver/aiyh_pcn/workflow_to_customer/config/CRM_Config.java index 379aefb..fb001b4 100644 --- a/weaver/aiyh_pcn/workflow_to_customer/config/CRM_Config.java +++ b/weaver/aiyh_pcn/workflow_to_customer/config/CRM_Config.java @@ -179,12 +179,15 @@ public class CRM_Config extends ToolUtil { } } + this.writeErrorLog("configList: "+configList.toString()); + this.writeErrorLog("configList: "+configMap.toString()); // 获取客户基本信息 this.configResult.put("CRM_CustomerInfo",this.getCRM_CustomerInfoSqlMapList(configList,configMap)); - + this.writeErrorLog("configList: "+this.configResult.toString()); // 判断是否需要创建外部用户 if (this.mainResult.getIsOutUser() == 0) { // 需要创建外部用户,获取外部用户字段映射信息 + this.configResult.put("CRM_CustomerContacter",this.getCRM_CustomerContacterSqlMapList(configList,configMap)); this.configResult.put("hrmResource",this.getHrmResourceSqlMapList(configList,configMap)); }else if(this.mainResult.getIsOutUser() == 1){ // 不需要创建外部用户,但是需要创建联系人,获取联系人字段映射信息 @@ -247,6 +250,8 @@ public class CRM_Config extends ToolUtil { } public List> getSqlMapList(List configList, Set set){ + this.writeErrorLog("getSqlMapList: configList: " + configList.toString()); + this.writeErrorLog("getSqlMapList: set: " + set.toString()); if(Objects.isNull(configList) || configList.size() == 0 || Objects.isNull(set) || set.size() == 0){ this.writeErrorLog("table mapping error,error args is configList = [" + configList + "] and set = [" + set + "]"); return null;