李彤
2022-05-30 115b1ebc6e433315a9835af24d4fe0f90343a3ca
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>Guzhangpaicha_Final_reply_day_F__c</fullName>
    <externalId>false</externalId>
    <formula>IF(Demo_purpose2_T__c == &apos;故障排查&apos;,
  /*RC受理日为空或超过出库后10天*/
    IF(ISBLANK(Rental_Apply__r.RC_Ordered_Date__c)|| Rental_Apply__r.RC_Ordered_Date__c &gt; Bollow_Date_Add_10_WD__c,
      IF(ISBLANK(Rental_Apply__r.RC_Ordered_Date__c) &amp;&amp; TODAY() &lt;= Bollow_Date_Add_10_WD__c,
        Rental_End_Date__c,
        Bollow_Date_Add_10_WD__c),
      /* 在21天内同意维修报价 */
      IF(ISBLANK(Rental_Apply__r.Repair__r.Agreed_Date__c),
          IF(TODAY() &lt;= Rental_Apply__r.Repair__r.Repair_Quotation_date__c + 21,
            Rental_End_Date__c, Rental_Apply__r.Repair__r.Repair_Quotation_date__c + 24
          ),
          IF(Rental_Apply__r.Repair__r.Agreed_Date__c &lt;= Rental_Apply__r.Repair__r.Repair_Quotation_date__c + 21,
            Rental_Apply__r.Repair__r.Repair_Shipped_Date__c + 14, Rental_Apply__r.Repair__r.Repair_Quotation_date__c + 24
          )
      )
    )
,null)</formula>
    <formulaTreatBlanksAs>BlankAsZero</formulaTreatBlanksAs>
    <label>最新预定归还日_故障排查_F</label>
    <required>false</required>
    <trackHistory>false</trackHistory>
    <trackTrending>false</trackTrending>
    <type>Date</type>
</CustomField>