| 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>Price_N__c</fullName> |  |     <externalId>false</externalId> |  |     <formula>if(isblank(Price__c), 0, |  | if(isnumber(Price__c), VALUE(Price__c), |  | if(CONTAINS(Price__c, ','), VALUE(SUBSTITUTE(Price__c, ',', '')), 0) |  | ))</formula> |  |     <label>单价(数字)</label> |  |     <precision>18</precision> |  |     <required>false</required> |  |     <scale>2</scale> |  |     <trackTrending>false</trackTrending> |  |     <type>Number</type> |  |     <unique>false</unique> |  | </CustomField> | 
 |