| | |
| | | public String Request; // 委托事项 |
| | | public String RequestDetail; // 委托事项详细 |
| | | public String ApproverID; // 审核人员员工编码 |
| | | public String ContactWayEncrypted; //联系方式密文 for pi |
| | | //public String ContactWayEncrypted; //联系方式密文 for pi //zhj新方案改造 2022-12-07 |
| | | public String DataId; //AWS 加密凭据 |
| | | public Integer ContactType; //联系方式 1为邮箱 2为电话 |
| | | } |
| | |
| | | |
| | | inquiry.ComPlat_Name__c = geData.Name; //询问单名称 |
| | | inquiry.Inquiry_No__c = geData.InquiryNo; //询问单编码 |
| | | inquiry.Opportunity_Division__c = '询价'; //意向区分 |
| | | // inquiry.Opportunity_Division__c = '询价'; //意向区分 |
| | | inquiry.Status__c = '01.未跟进'; //询问单状态 |
| | | inquiry.Request_Detail__c = geData.RequestDetail; //委托事项详细 |
| | | inquiry.Product1__c = geData.Product; //产品信息 |
| | |
| | | //联系方式的值是否包含@来判断是邮箱还是电话 |
| | | if (geData.ContactType==1) { |
| | | inquiry.Phone__c = ''; //电话 |
| | | inquiry.Phone_Encrypted__c=''; //电话密文 add 20220214 |
| | | //inquiry.Phone_Encrypted__c=''; //电话密文 add 20220214 //zhj新方案改造 2022-12-07 |
| | | inquiry.Email__c = geData.ContactWay; //邮箱 |
| | | inquiry.Email_Encrypted__c =geData.ContactWayEncrypted; //邮箱密文 add 20220214 |
| | | //inquiry.Email_Encrypted__c =geData.ContactWayEncrypted; //邮箱密文 add 20220214 //zhj新方案改造 2022-12-07 |
| | | |
| | | } else { |
| | | inquiry.Phone__c = geData.ContactWay; |
| | | inquiry.Email__c = ''; |
| | | inquiry.Email_Encrypted__c = ''; //邮箱密文 add 20220214 |
| | | inquiry.Phone_Encrypted__c=geData.ContactWayEncrypted; //电话密文 add 20220214 |
| | | //inquiry.Email_Encrypted__c = ''; //邮箱密文 add 20220214 //zhj新方案改造 2022-12-07 |
| | | //inquiry.Phone_Encrypted__c=geData.ContactWayEncrypted; //电话密文 add 20220214 //zhj新方案改造 2022-12-07 |
| | | } |
| | | |
| | | if (String.isNotBlank(inqInfoMap.get(geData.InquiryNo))) { |