From 9a717144ef086a92a34adfc0763dfa9f6cb4b0ba Mon Sep 17 00:00:00 2001
From: Li Jun <buli@deloitte.com.cn>
Date: 星期六, 12 三月 2022 16:54:21 +0800
Subject: [PATCH] Merge PIPL Function code 20220311

---
 force-app/main/default/classes/WeeklyReportCmp.cls |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/force-app/main/default/classes/WeeklyReportCmp.cls b/force-app/main/default/classes/WeeklyReportCmp.cls
index c2caf98..5197381 100644
--- a/force-app/main/default/classes/WeeklyReportCmp.cls
+++ b/force-app/main/default/classes/WeeklyReportCmp.cls
@@ -6,6 +6,7 @@
     @AuraEnabled public List<Map<String,String>> doctorList{get;set;}
     // PIPL update Yin Mingjie 21/02/2022 start
     @AuraEnabled public Map<String,String> awsurl{get;set;}
+    @AuraEnabled public Map<String,String> contactawsurl{get;set;}
     // PIPL update Yin Mingjie 21/02/2022 end
     public WeeklyReportCmp() {
     }
@@ -78,6 +79,9 @@
         Map<String,String> space = new Map<String,String>();
         space.put('label', '');
         space.put('value', '');
+        // PIPL update Yin Mingjie 21/02/2022 start
+        space.put('awsid', '');
+        // PIPL update Yin Mingjie 21/02/2022 end
         space.put('selected', 'true');
         tmp.add(space);
         
@@ -87,6 +91,9 @@
             Map<String,String> om = new Map<String,String>();
             om.put('label', var.Name);
             om.put('value', var.Id);
+            // PIPL update Yin Mingjie 21/02/2022 start
+            om.put('awsid', var.AWS_Data_Id__c);
+            // PIPL update Yin Mingjie 21/02/2022 end
             om.put('selected', 'false');
             tmp.add(om);
         }
@@ -149,6 +156,7 @@
         //System.debug('allselectlist is ' + this.allselectlist);
 
         this.awsurl = getAwsurl('Agency_Contact__c');// 20220222 PI鏀归�� by Bright
+        this.contactawsurl = getAwsurl('Contact');// 20220222 PI鏀归�� by Bright
     }
     
     

--
Gitblit v1.9.1