1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| <?xml version="1.0" encoding="UTF-8"?>
| <CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
| <fullName>OPDManager__c</fullName>
| <description>if(SalesManagerSubmit__c != OPDPlan__r.SalesManager__c,'',OPDPlan__r.SalesManager_Txt__c)</description>
| <externalId>false</externalId>
| <formula>IF(TEXT(OPDPlan__r.OPDType__c)='学会'
| ,''
| ,IF(AND(!ISBLANK(Old_Rental_Apply__c),ISBLANK(OriginalOpdPlanApplication__c))
| ,OPDManagerText__c
| ,IF(!ISBLANK(OPDManagerApprover__c)
| ,OPDManagerApprover__c,
| IF(OR( AND(!ISBLANK(Request_demo_day__c), Request_demo_day__c > DATE(2022,10,12)),DATEVALUE(CreatedDate) > DATE(2022,10,12)) ,OPDManagerApprover__c,
| IF(OR( AND(!ISBLANK(Request_demo_day__c), Request_demo_day__c > DATE(2022,02,24)),DATEVALUE(CreatedDate) > DATE(2022,02,24)),
| IF(AND( !ISBLANK(SalesManagerSubmit__c),SalesManagerSubmit__c == OPDPlan__r.SalesManager_Txt__c),OPDPlan__r.SalesManager_Txt__c,'')
| ,IF(SalesManager__c == OPDPlan__r.SalesManager__c,OPDPlan__r.SalesManager_Txt__c,'')
| )
| )
| )
| )
| )</formula>
| <formulaTreatBlanksAs>BlankAsZero</formulaTreatBlanksAs>
| <label>OPD计划审批CL6 经理级</label>
| <required>false</required>
| <trackHistory>false</trackHistory>
| <trackTrending>false</trackTrending>
| <type>Text</type>
| <unique>false</unique>
| </CustomField>
|
|