1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| <?xml version="1.0" encoding="UTF-8"?>
| <CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
| <fullName>Current_Price_Should__c</fullName>
| <description>IF(Adjustment_ratio_Upper__c <0,"1.应该降价",IF(AND(Adjustment_ratio_Lower__c >=0,Adjustment_ratio_Upper__c <=0.05),"2.应该维持","3.应该涨价"))</description>
| <externalId>false</externalId>
| <formula>if(isBlank(LastMContractNo__c) ,null ,IF(Adjustment_ratio_Upper__c <0,"1.应该降价",
| IF( Adjustment_ratio_Lower__c >0.05,"3.应该涨价","2.应该维持")
| ))</formula>
| <formulaTreatBlanksAs>BlankAsZero</formulaTreatBlanksAs>
| <label>本期价格应该</label>
| <required>false</required>
| <trackTrending>false</trackTrending>
| <type>Text</type>
| <unique>false</unique>
| </CustomField>
|
|