| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 | | <?xml version="1.0" encoding="UTF-8"?> |  | <CustomField xmlns="http://soap.sforce.com/2006/04/metadata"> |  |     <fullName>Opportunity2__c</fullName> |  |     <description>询价=Opportunity__c</description> |  |     <externalId>false</externalId> |  |     <formula>Opp_Actual__c + Forecast_Amount_All_withouttax_F__c +  |  | IF(  |  | AND(StageName_Text__c = "引合",  |  | Opportunity__r.Close_Forecasted_Date__c < IF(Month(Today()) < 4, Date(Year(Today()), 4, 1), Date(Year(Today())+1, 4, 1))  |  | ),  |  | CASE(Opportunity__r.Competitor__c,  |  | "A",0.8,  |  | "B",0.5,  |  | "C",0.3,  |  | 0) *OPP__c |  | ,0)</formula> |  |     <formulaTreatBlanksAs>BlankAsZero</formulaTreatBlanksAs> |  |     <label>4.发货+注残+询价(不含税)</label> |  |     <precision>18</precision> |  |     <required>false</required> |  |     <scale>2</scale> |  |     <trackTrending>false</trackTrending> |  |     <type>Currency</type> |  | </CustomField> | 
 |