binxie
2024-01-16 4d3febe8045eb0fa0283af3c53b0c48344b8664d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
    <fullName>Conform_to_the_Adjust__c</fullName>
    <description>IF(Practical_Pricing__c&lt;0,&apos;1.实际降价&apos;,IF(Practical_Pricing__c&lt;= 5 &amp;&amp; Practical_Pricing__c &gt;= 0,&apos;2.实际维持&apos;,IF(Practical_Pricing__c&gt;5,&apos;3.实际涨价&apos;,&apos; &apos;)))</description>
    <externalId>false</externalId>
    <formula>IF(isBlank(LastMContractNo__c),null,
  IF(AND(Practical_Pricing__c&gt;=Adjustment_ratio_Lower__c,Practical_Pricing__c&lt;=Adjustment_ratio_Upper__c),
     &quot;1.价格调整符合标准&quot;,
     IF(AND( Estimate_Cost_formula__c&gt;= Adjustment_Lower_price__c*0.8, Estimate_Cost_formula__c&lt; Adjustment_Lower_price__c),
        &quot;2.低于标准最低调价幅度,但在8折以内&quot;,
        IF( Estimate_Cost_formula__c&lt; Adjustment_Lower_price__c*0.8,
            &quot;3.低于标准最低调价幅度,且超过8折&quot;,
            IF(AND( Estimate_Cost_formula__c&gt;Adjustment_Upper_price__c, Estimate_Cost_formula__c&lt;=Adjustment_Upper_price__c*1.2),
               &quot;4.高于标准最高调价幅度,但在20%以内&quot;,
               &quot;5.高于标准最高调价幅度,且超过20%&quot;)))))</formula>
    <formulaTreatBlanksAs>BlankAsZero</formulaTreatBlanksAs>
    <label>是否符合标准价格调整幅度</label>
    <required>false</required>
    <trackTrending>false</trackTrending>
    <type>Text</type>
    <unique>false</unique>
</CustomField>