| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | | <?xml version="1.0" encoding="UTF-8"?> |  | <CustomField xmlns="http://soap.sforce.com/2006/04/metadata"> |  |     <fullName>Estimate_Price_range__c</fullName> |  |     <description>if( ISPICKVAL( New_Contract_Type_TxT__c , '新品合同'),'低于标准价的最低价格' ,)</description> |  |     <externalId>false</externalId> |  |     <formula>if(Submit_quotation_day__c <= DATE(2020,03,31),'', |  | if(Request_quotation_Amount__c <  GuidePrice_Down__c, |  | if( ISPICKVAL( New_Contract_Type_TxT__c , '新品合同'),'低于最低价格' , |  | if( ISPICKVAL( New_Contract_Type_TxT__c , '首签合同'),if(  Consumption_rate_Forecast__c > 1,'低于最低价格,预测消费率在100%以上' ,'低于最低价格,预测消费率在100%以内'),if(Cost_rate_Forecast__c > 1,'低于最低价格,预测成本率在100%以上' ,'低于最低价格,预测成本率在100%以内') |  | )) , |  | if(and( Request_quotation_Amount__c >=  GuidePrice_Down__c,Request_quotation_Amount__c <= GuidePrice_Up__c) ,'标准价格的范围内', |  | if(Request_quotation_Amount__c <= GuidePrice_Up__c * 2 ,'最高价格的200%以内' ,'最高价格的200%以上'))))</formula> |  |     <label>价格范围</label> |  |     <required>false</required> |  |     <trackHistory>false</trackHistory> |  |     <trackTrending>false</trackTrending> |  |     <type>Text</type> |  |     <unique>false</unique> |  | </CustomField> | 
 |