From 01f207d979d6be17c8cdec293feab48828c0ec3e Mon Sep 17 00:00:00 2001 From: 黄千龙 <huangqianlong@prec-tech.com> Date: 星期五, 08 四月 2022 14:22:52 +0800 Subject: [PATCH] Merge branch 'master' of http://47.92.229.245:8089/r/OlyMEBG --- force-app/main/default/classes/ContactTriggerHandler.cls | 113 ++++++++++++++++++++++++++++++++++---------------------- 1 files changed, 68 insertions(+), 45 deletions(-) diff --git a/force-app/main/default/classes/ContactTriggerHandler.cls b/force-app/main/default/classes/ContactTriggerHandler.cls index 706b3c3..43a4497 100644 --- a/force-app/main/default/classes/ContactTriggerHandler.cls +++ b/force-app/main/default/classes/ContactTriggerHandler.cls @@ -26,8 +26,8 @@ syncToAgencyContact(); updateDealerNum(); sendToComPlat(); - } + protected override void beforeUpdate() { // 鏈嶅姟鎶�甯� 2018/12/24 Start UpdateProcessingWork(); @@ -223,19 +223,19 @@ //鏇存柊缁忛攢鍟嗙敤鎴蜂汉鏁板瓧娈� 绮剧悽鎶�鏈� pk 2021-08-26 end // 鎵嬫満鍙峰幓閲嶅強瑙勫垯楠岃瘉 鍙婃柊澧炲鎴蜂汉鍛橀噸鍚嶉獙璇� - public void mobileNumberVerification(){ + public void mobileNumberVerification(){ Pattern pattern = Pattern.compile('^(13[0-9]|14[01456879]|15[0-35-9]|16[2567]|17[0-8]|18[0-9]|19[0-35-9])\\d{8}$'); Map<String, Map<String,Contact>> accountContactMap = new Map<String, Map<String,Contact>>(); Set<Id> accountIdSet = new Set<Id>(); //鐢ㄦ埛瀵硅薄涓婃壘瀵瑰簲鐨勮仈绯讳汉 - List<User> userList=[select ID,ContactID from User where ContactID != null]; - Map<String,User> userMap= new Map<String,User>(); - if (userList.size()>0){ - for(User us1: userList){ - userMap.put(us1.ContactId, us1); - } - } + // List<User> userList=[select ID,ContactID from User where ContactID != null]; + // Map<String,User> userMap= new Map<String,User>(); + // if (userList.size()>0){ + // for(User us1: userList){ + // userMap.put(us1.ContactId, us1); + // } + // } //鏌ユ壘鑱旂郴浜哄璞′笂瀵瑰簲鐨勬湁鏁堝鎴凤紱鍖婚櫌鐩存帴浣跨敤鏈夋晥/鏃犳晥瀛楁銆佺粡閿�鍟嗕娇鐢ㄦ湁鏁�/鏃犳晥鍏紡瀛楁 List<String> accIdList = new List<String>(); Map<String,String> accMap= new Map<String,String>(); @@ -256,32 +256,38 @@ } } } - for (Contact contactnew: newList) { - // 鎵嬫満鍙� 鏈夊�� 骞朵笖 鑱旂郴浜烘湁鏁� 鑱旂郴浜虹殑瀹㈡埛鏈夋晥 鏃犲閮ㄥ叧鑱旂敤鎴� 杩涜鎵嬫満鍙风爜楠岃瘉 - if (String.isNotBlank(contactnew.MobilePhone) && ('鏈夋晥'.equals(contactnew.Isactive__c) ||'鏈夊姽'.equals(contactnew.Isactive__c)) - && '鏈夊姽'.equals(accMap.get(contactnew.AccountId)) - && !userMap.containsKey(contactnew.Id) - ) { - Matcher isMobilePhone = pattern.matcher(contactnew.MobilePhone); - if (isMobilePhone.matches()) { - // 灏嗘墜鏈哄彿 璧嬪�肩粰 鎵嬫満鍙峰敮涓�瀛楁 - contactnew.UniqueNumber__c = contactnew.MobilePhone; - } else { - // 鎵嬫満鍙峰敮涓�瀛楁娓呯┖ - contactnew.UniqueNumber__c = null; - } - } else { - // 鎵嬫満鍙� 鏃犲�� 鎴栬�� 鑱旂郴浜轰笉鏄湁鏁� 鎵嬫満鍙峰敮涓�瀛楁娓呯┖ - contactnew.UniqueNumber__c = null; + //鎵嬫満鍙峰敮涓�鏍¢獙-鍖婚櫌涓嬫柊寤哄鎴蜂汉鍛樻牎楠屼娇鐢ㄥ姞瀵嗘墜鏈哄彿,缁忛攢鍟嗕娇鐢ㄦ櫘閫氭墜鏈哄彿 thh 20220328 start + ID DoctorRecordTypeId = Schema.SObjectType.Contact.getRecordTypeInfosByDeveloperName().get('Doctor').getRecordTypeId(); + ID AgencyRecordTypeId = Schema.SObjectType.Contact.getRecordTypeInfosByDeveloperName().get('Agency').getRecordTypeId(); + for (Contact contactnew : newList) { + // 鎵嬫満鍙锋湁鍊煎苟涓旇仈绯讳汉鏈夋晥锛岃仈绯讳汉鐨勫鎴锋湁鏁堬紝杩涜鎵嬫満鍙风爜楠岃瘉 + if (('鏈夋晥'.equals(contactnew.Isactive__c) || '鏈夊姽'.equals(contactnew.Isactive__c)) + && ('鏈夊姽'.equals(accMap.get(contactnew.AccountId)) || '鏈夋晥'.equals(accMap.get(contactnew.AccountId)))) { + if(AgencyRecordTypeId.equals(contactnew.RecordTypeId)){ + if(String.isNotBlank(contactnew.MobilePhone)){ + Matcher isMobilePhone = pattern.matcher(contactnew.MobilePhone); + if (isMobilePhone.matches()) { + contactnew.UniqueNumber__c = contactnew.MobilePhone; + } else { + // 鎵嬫満鍙峰敮涓�瀛楁娓呯┖ + contactnew.UniqueNumber__c = null; + } + } else { + contactnew.UniqueNumber__c = null; + } + } else if(DoctorRecordTypeId.equals(contactnew.RecordTypeId)){ + if(String.isNotBlank(contactnew.MobilePhone_Encrypted__c)){ + contactnew.UniqueNumber__c = contactnew.MobilePhone_Encrypted__c; + } else { + contactnew.UniqueNumber__c = null; + } + } } - - - if (Trigger.isInsert) { - accountIdSet.add(contactnew.AccountId); - + accountIdSet.add(contactnew.AccountId); } } + //鎵嬫満鍙峰敮涓�鏍¢獙-鍖婚櫌涓嬫柊寤哄鎴蜂汉鍛樻牎楠屼娇鐢ㄥ姞瀵嗘墜鏈哄彿,缁忛攢鍟嗕娇鐢ㄦ櫘閫氭墜鏈哄彿 thh 20220328 end // 鏂板鑱旂郴浜烘椂锛� if (accountIdSet.size() > 0) { List<Contact> contactList = [SELECT Id,AccountId,FullName__c,LastName,FirstName,Account.Name,CManageCode__c,IsFromSPO__c, @@ -295,6 +301,9 @@ String firstNameStr = String.isNotBlank(contact.FirstName) ? contact.FirstName:''; String contactFullName = lastNameStr + firstNameStr; contactFullName = contact.LastName_Encrypted__c;// 20220314 PI鏀归�� by Bright + if(string.isBlank(contactFullName)){ + continue; + } String accountId = String.valueOf(contact.AccountId).SubString(0,15); Map<String,Contact> contactFullNameMap = new Map<String,Contact>(); if (accountContactMap.containsKey(accountId)) { @@ -331,17 +340,14 @@ } } - - } - public static Map<Id,Id> NFM606_IdMap = new Map<Id,Id>(); + // 606鎺ュ彛璋冪敤闂淇 thh 20220330 start private void sendToComPlat() { List<Id> contactIdList = new List<Id>(); - List<String> interfaceUserUpsertContact = new List<String>(); + List<String> interfaceUserUpsertContact = new List<String>(); for (Contact local: newList) { - Contact old = null; if (Trigger.isUpdate) { old = oldMap.get(local.Id); @@ -368,12 +374,17 @@ || old.ContactType__c != local.ContactType__c//浜哄憳绫诲瀷 ) { - if (!local.IsFromSPO__c && !'01210000000QtkyAAC'.equals(local.RecordTypeId)) { - + //鑾峰彇瀹㈡埛浜哄憳鐨勮褰曠被鍨婭D thh 20220330 start + ID InternalStaffRecordTypeId = Schema.SObjectType.Contact.getRecordTypeInfosByDeveloperName().get('Internal_staff').getRecordTypeId(); + ID DoctorRecordTypeId = Schema.SObjectType.Contact.getRecordTypeInfosByDeveloperName().get('Doctor').getRecordTypeId(); + ID AgencyRecordTypeId = Schema.SObjectType.Contact.getRecordTypeInfosByDeveloperName().get('Agency').getRecordTypeId(); + //鑾峰彇瀹㈡埛浜哄憳鐨勮褰曠被鍨婭D thh 20220330 end + if (!local.IsFromSPO__c && !InternalStaffRecordTypeId.equals(local.RecordTypeId)) { + // 鍖婚櫌 瀹㈡埛浜哄憳 缁熶竴骞冲彴缂栫爜鏈夊�� 鍙戦�� PO - if ('01210000000QfWdAAK'.equals(local.RecordTypeId) && String.isNotBlank(local.UnifiedI_Contact_ID__c)) { + if (DoctorRecordTypeId.equals(local.RecordTypeId) && String.isNotBlank(local.UnifiedI_Contact_ID__c)) { if (!NFM606_IdMap.containsKey(local.Id)) { - if(UserInfo.getProfileId().equals(System.Label.ProfileId_SystemAdmin)){ + if(UserInfo.getUserId().equals(System.Label.interfaceUserID)){ interfaceUserUpsertContact.add(local.Id); } else { contactIdList.add(local.Id); @@ -382,9 +393,9 @@ } } // 缁忛攢鍟� 瀹㈡埛浜哄憳 鎵嬫満鍙风爜鏈夊�� 鍙戦�� PO - if ('01210000000QfWiAAK'.equals(local.RecordTypeId) && String.isNotBlank(local.MobilePhone)) { + if (AgencyRecordTypeId.equals(local.RecordTypeId) && String.isNotBlank(local.MobilePhone)) { if (!NFM606_IdMap.containsKey(local.Id)) { - if(UserInfo.getProfileId().equals(System.Label.ProfileId_SystemAdmin)){ + if(UserInfo.getUserId().equals(System.Label.interfaceUserID)){ interfaceUserUpsertContact.add(local.Id); } else { contactIdList.add(local.Id); @@ -396,17 +407,29 @@ } } - + //606鏍囪 if(!System.Test.isRunningTest()){ // NFM606Controller.executeNotFuture('', contactIdList); if (contactIdList.size() > 0) { - NFM606Controller.callout('', contactIdList); + // NFM606Controller.callout('', contactIdList); + //娣诲姞future 鍒ゆ柇 add for pipl sushanhu 20220317 start + // if (!(System.isFuture()||System.isBatch())) { + NFM606Controller.callout('', contactIdList); + // } else{ + // NFM606Controller.executeNotFuture('', contactIdList); + // } + //娣诲姞future 鍒ゆ柇 add for pipl sushanhu 20220317 end } if (interfaceUserUpsertContact.size() > 0) { NFM606Controller.executeNotFuture('', interfaceUserUpsertContact); + //娣诲姞future 鍒ゆ柇 add for pipl sushanhu 20220316 start + // if (!(System.isFuture()||System.isBatch())) { + // NFM606Controller.executeNotFuture('', interfaceUserUpsertContact); + // } + //娣诲姞future 鍒ゆ柇 add for pipl sushanhu 20220316 end } } - } + // 606鎺ュ彛璋冪敤闂淇 thh 20220330 end } \ No newline at end of file -- Gitblit v1.9.1