| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | | <?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(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,09,29)),DATEVALUE(CreatedDate) > DATE(2022,09,29)) ,OPDManagerApprover__c, |  |         if( SalesManagerSubmit__c == OPDPlan__r.SalesManager_Txt__c ||( ISBLANK(Old_Rental_Apply__c) &&  SalesManager__c == OPDPlan__r.SalesManager__c) ,OPDPlan__r.SalesManager_Txt__c,'') |  |     ) |  |     ) |  | )</formula> |  |     <label>OPD计划审批CL6 经理级</label> |  |     <required>false</required> |  |     <trackHistory>false</trackHistory> |  |     <trackTrending>false</trackTrending> |  |     <type>Text</type> |  |     <unique>false</unique> |  | </CustomField> | 
 |