| 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
29
30
31
32
33
34
35
 | | <?xml version="1.0" encoding="UTF-8"?> |  | <CustomField xmlns="http://soap.sforce.com/2006/04/metadata"> |  |     <fullName>WinnerAmount__c</fullName> |  |     <description>WinnerAmount1__c+ WinnerAmount2__c    + WinnerAmount3__c     + WinnerAmount4__c    +WinnerAmount5__c</description> |  |     <externalId>false</externalId> |  |     <formula>if(isblank(WinnerAmount1__c), 0, |  | if(isnumber(WinnerAmount1__c), VALUE(WinnerAmount1__c), |  | if(CONTAINS(WinnerAmount1__c, ','), VALUE(SUBSTITUTE(WinnerAmount1__c, ',', '')), 0) |  | )) + |  | if(isblank(WinnerAmount2__c), 0, |  | if(isnumber(WinnerAmount2__c), VALUE(WinnerAmount2__c), |  | if(CONTAINS(WinnerAmount2__c, ','), VALUE(SUBSTITUTE(WinnerAmount2__c, ',', '')), 0) |  | )) + |  | if(isblank(WinnerAmount3__c), 0, |  | if(isnumber(WinnerAmount3__c), VALUE(WinnerAmount3__c), |  | if(CONTAINS(WinnerAmount3__c, ','), VALUE(SUBSTITUTE(WinnerAmount3__c, ',', '')), 0) |  | )) + |  | if(isblank(WinnerAmount4__c), 0, |  | if(isnumber(WinnerAmount4__c), VALUE(WinnerAmount4__c), |  | if(CONTAINS(WinnerAmount4__c, ','), VALUE(SUBSTITUTE(WinnerAmount4__c, ',', '')), 0) |  | )) + |  | if(isblank(WinnerAmount5__c), 0, |  | if(isnumber(WinnerAmount5__c), VALUE(WinnerAmount5__c), |  | if(CONTAINS(WinnerAmount5__c, ','), VALUE(SUBSTITUTE(WinnerAmount5__c, ',', '')), 0) |  | ))</formula> |  |     <formulaTreatBlanksAs>BlankAsZero</formulaTreatBlanksAs> |  |     <label>中标金额</label> |  |     <precision>18</precision> |  |     <required>false</required> |  |     <scale>2</scale> |  |     <trackHistory>false</trackHistory> |  |     <trackTrending>false</trackTrending> |  |     <type>Number</type> |  |     <unique>false</unique> |  | </CustomField> | 
 |