From f5a94e721ae5a26f817f0df75065b64f1f192eb3 Mon Sep 17 00:00:00 2001 From: Li Jun <buli@deloitte.com.cn> Date: 星期一, 28 三月 2022 21:43:51 +0800 Subject: [PATCH] PIPLFunctionDeploy0328 --- force-app/main/default/pages/ViewEventDecryptInfo.page | 11 ++++++++--- 1 files changed, 8 insertions(+), 3 deletions(-) diff --git a/force-app/main/default/pages/ViewEventDecryptInfo.page b/force-app/main/default/pages/ViewEventDecryptInfo.page index b2b5c2c..686da95 100644 --- a/force-app/main/default/pages/ViewEventDecryptInfo.page +++ b/force-app/main/default/pages/ViewEventDecryptInfo.page @@ -6,9 +6,14 @@ <apex:pageblock id="pageBlock"> <apex:pageBlockSection showHeader="false" title="" collapsible="true" columns="2" id="pageBlockSection"> <!--Each section has layoutFields, let's iterate them as well--> - <apex:repeat value="{!layoutEncryptedAPIList}" var="encryptedAPI"> + <!-- <apex:repeat value="{!layoutEncryptedAPIList}" var="encryptedAPI"> <apex:outputField html-data-id="{!encryptedAPI}" title="{!ApiPrefix}{!encryptedAPI}" value="{!Event[encryptedAPI]}" /> - </apex:repeat> + </apex:repeat> --> + <apex:outputField html-data-id="Visitor1__c" title="{!ApiPrefix}Visitor1__c" value="{!Event['Visitor1__c']}" /> + <apex:outputField html-data-id="Visitor2__c" title="{!ApiPrefix}Visitor2__c" value="{!Event['Visitor2__c']}" /> + <apex:outputField html-data-id="Visitor3__c" title="{!ApiPrefix}Visitor3__c" value="{!Event['Visitor3__c']}" /> + <apex:outputField html-data-id="Visitor4__c" title="{!ApiPrefix}Visitor4__c" value="{!Event['Visitor4__c']}" /> + <apex:outputField html-data-id="Visitor5__c" title="{!ApiPrefix}Visitor5__c" value="{!Event['Visitor5__c']}" /> </apex:pageBlockSection> <script> // var config = { @@ -18,7 +23,7 @@ // AWSToSobjectNonEncryptedMap:{!AWSToSobjectNonEncryptedMapJson}, // AWSToSobjectEncryptedMap:{!AWSToSobjectEncryptedMapJson} // }; - AWSService.sfSessionId = '{!GETSESSIONID()}'; + var staticResources = JSON.parse('{!staticResources}'); var contactAWSIds = JSON.parse('{!contactAWSIds}'); //AWS ContactId var sfIdToContactInfo = {}; -- Gitblit v1.9.1