Li Jun
2022-04-25 784f9cec56eef3c7ac0ba02de98fdbf341c6a7b3
1
2
3
4
5
6
7
8
9
10
<?xml version="1.0" encoding="UTF-8"?>
<ValidationRule xmlns="http://soap.sforce.com/2006/04/metadata">
    <fullName>need_discount_price_Greaterthan_Zero</fullName>
    <active>true</active>
    <errorConditionFormula>ISCHANGED(Request_amount_after_discount__c) &amp;&amp; 
(Request_amount_after_discount__c &lt; 0 || 
Request_amount_after_discount__c &gt;= ListPrice__c)</errorConditionFormula>
    <errorDisplayField>Request_amount_after_discount__c</errorDisplayField>
    <errorMessage>希望减价后金额不能小于0或者大于等于修理报价金额</errorMessage>
</ValidationRule>