Li Jun
2022-04-27 f90c63155656928b86f1ce1d91a134de3d12d2b9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
    <fullName>Paid_Percent_quotation__c</fullName>
    <description>IF(AND(NOT(ISNULL(Invoice_Date_formula__c)), 
  NOT(ISNULL(Received_Date__c))), 1, 
  IF ((Billing_Amount__c - BaddebtsAmount__c) = 0, 1,
    Paid_Amount__c / (Billing_Amount__c - BaddebtsAmount__c)
))</description>
    <externalId>false</externalId>
    <formula>IF(AND(NOT(ISNULL(Invoice_Date_formula__c)), 
  NOT(ISNULL(Received_Date__c))), 1, 
  IF ((Discount_Price_formula__c - BaddebtsAmount__c) = 0, 1,
    Paid_Amount__c / (Discount_Price_formula__c - BaddebtsAmount__c)
))</formula>
    <formulaTreatBlanksAs>BlankAsZero</formulaTreatBlanksAs>
    <label>回款比率(%)</label>
    <precision>18</precision>
    <required>false</required>
    <scale>2</scale>
    <trackHistory>false</trackHistory>
    <trackTrending>false</trackTrending>
    <type>Percent</type>
</CustomField>