From 02ddc35714cbd1688b7cb057f770f1410de79dab Mon Sep 17 00:00:00 2001
From: buli <137736985@qq.com>
Date: 星期五, 11 三月 2022 12:19:33 +0800
Subject: [PATCH] PIPL Updated Code 20220311
---
force-app/main/default/classes/CM_SearchContact.cls | 66 ++++++++++++++++++++++++++++-----
1 files changed, 56 insertions(+), 10 deletions(-)
diff --git a/force-app/main/default/classes/CM_SearchContact.cls b/force-app/main/default/classes/CM_SearchContact.cls
index 850d3a2..7dfbdba 100644
--- a/force-app/main/default/classes/CM_SearchContact.cls
+++ b/force-app/main/default/classes/CM_SearchContact.cls
@@ -11,6 +11,10 @@
private Integer i = 0;
// SWAG-BB44G7 鎵�鍦ㄥ尰闄d end
private String nowValue;
+ public String staticResource {get; set;}
+ public String contactAWSIds {set;get;}
+ public String contactsInfo {set;get;}
+ public String awsDataIdArray {set;get;}
public CM_SearchContact() {
openLine = Apexpages.currentPage().getParameters().get('line');
@@ -28,6 +32,26 @@
}
// SWAG-BB44G7 妫�绱㈡墍鍦ㄥ尰闄d end
nowValue = Apexpages.currentPage().getParameters().get('now');
+
+ //2022/02/15 寮犲崕寤� PI PL start
+ //1. Query Contact by accountId
+ List<Contact> conList = new List<Contact>();
+ system.debug('Account Id from Front-end:'+accountId);
+ if(String.isNotBlank(accountId) && String.isNotEmpty(accountId)){
+ conList = new List<Contact>([select Id,AWS_Data_Id__c from Contact where AccountId=:accountId and AWS_Data_Id__c!='']);
+ }
+ //2. Prepare the Contact Info
+ Map<String,Contact> awsIdToContactMap = new Map<String,Contact>();
+ List<String> conAWSIds = new List<String>();
+ for(Contact con:conList){
+ conAWSIds.add(con.AWS_Data_Id__c);
+ awsIdToContactMap.put(con.AWS_Data_Id__c,con);
+ }
+ //conAWSIds.add('943114607025717249');
+ contactsInfo = JSON.serialize(awsIdToContactMap);
+ contactAWSIds = JSON.serialize(conAWSIds);
+ staticResource = JSON.serialize(PIHelper.getPIIntegrationInfo('Contact'));
+ //2022/02/15 寮犲崕寤� PI PL end
}
public void init() {
@@ -50,9 +74,9 @@
public PageReference searchContact() {
- String searchStr = 'select Id, Name, Department__c, Type__c, AccountName__c, Supplement__c, Phone,accountid ';
+ String searchStr = 'select Id, Name, Department__c, Type__c, AccountName__c, Supplement__c, Phone,accountid,AWS_Data_Id__c';
searchStr += ' from Contact ';
- searchStr += ' where Isactive__c = \'鏈夋晥\' ';
+ searchStr += ' where Isactive__c = \'鏈夋晥\' and AWS_Data_Id__c!=\'\' ';
// SWAG-BB44G7 妫�绱㈡墍鍦ㄥ尰闄㈢殑瀹㈡埛浜哄憳 start
if(i == 1 ){
searchStr += ' and Account.parent.parentid = :HPId ';
@@ -60,14 +84,31 @@
if(i == 2){
searchStr += ' and AccountId = :HPId ';
}
- // searchStr += ' and Account.parent.parentid = :HPId ';
+ //searchStr += ' and Account.parent.parentid = :HPId ';
// SWAG-BB44G7 妫�绱㈡墍鍦ㄥ尰闄㈢殑瀹㈡埛浜哄憳 end
- if (searchCon.Search_LastName__c != null && searchCon.Search_LastName__c != '') {
- searchStr += ' and LastName like \'%' + searchCon.Search_LastName__c + '%\'';
+
+ //2022/02/15 寮犲崕寤� 妫�绱� start
+ // if (searchCon.Search_LastName__c != null && searchCon.Search_LastName__c != '') {
+ // searchStr += ' and LastName like \'%' + searchCon.Search_LastName__c + '%\'';
+ // }
+ // if (searchCon.Search_FirstName__c != null && searchCon.Search_FirstName__c != '') {
+ // searchStr += ' and FirstName like \'%' + searchCon.Search_FirstName__c + '%\'';
+ // }
+ System.debug('awsDataIdArray = ' + awsDataIdArray);
+ if (awsDataIdArray != null && awsDataIdArray != '') {
+ String[] arr = awsDataIdArray.split(',');
+ System.debug('arr = ' + arr);
+ String awsDataIdSql = '';
+ for(String s : arr){
+ System.debug('s = ' + s);
+ awsDataIdSql = awsDataIdSql + ',' + '\'' + s+'\'';
+ }
+ awsDataIdSql = awsDataIdSql.substring(1);
+ System.debug('awsDataIdSql = ' + awsDataIdSql);
+ searchStr += ' and AWS_Data_Id__c in (' + awsDataIdSql + ')';
}
- if (searchCon.Search_FirstName__c != null && searchCon.Search_FirstName__c != '') {
- searchStr += ' and FirstName like \'%' + searchCon.Search_FirstName__c + '%\'';
- }
+
+ //2022/02/15 寮犲崕寤� 妫�绱� end
system.debug('=====searchStr:' + searchStr);
List<Contact> searchResult = Database.query(searchStr);
@@ -87,8 +128,8 @@
public PageReference editContact() {
if (conId != null && conId != '') {
- newCon = [select Id, Name, Department__c, Type__c, Search_LastName__c, Search_FirstName__c, Phone, Supplement__c,
- FirstName, LastName
+ newCon = [select Id, Name, Department__c, Type__c, Search_LastName__c, Search_FirstName__c, Phone, Supplement__c,LastName_Encrypted__c,Phone_Encrypted__c,
+ FirstName, LastName,AWS_Data_Id__c
from Contact where Id = :conId];
newCon.Search_LastName__c = newCon.LastName;
newCon.Search_FirstName__c = newCon.FirstName;
@@ -120,6 +161,11 @@
return null;
}
+ public PageReference clearLineInfoList() {
+ lineInfoList = new List<LineInfo>();
+ return null;
+ }
+
class LineInfo {
public Integer lineNo { get; set; }
public Contact con { get; set; }
--
Gitblit v1.9.1