| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | | <?xml version="1.0" encoding="UTF-8"?> |  | <CustomField xmlns="http://soap.sforce.com/2006/04/metadata"> |  |     <fullName>TotalPrice_N__c</fullName> |  |     <externalId>false</externalId> |  |     <formula>if(isblank(TotalPrice__c), 0, |  | if(isnumber(TotalPrice__c), VALUE(TotalPrice__c), |  | if(CONTAINS(TotalPrice__c, ','), VALUE(SUBSTITUTE(TotalPrice__c, ',', '')), 0) |  | ))</formula> |  |     <label>本项金额(数字)</label> |  |     <precision>18</precision> |  |     <required>false</required> |  |     <scale>2</scale> |  |     <trackTrending>false</trackTrending> |  |     <type>Number</type> |  |     <unique>false</unique> |  | </CustomField> | 
 |