binxie
2024-01-20 e0de9222da210f9c8eb1a9f5400f936a14923e11
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" encoding="UTF-8"?>
<ValidationRule xmlns="http://soap.sforce.com/2006/04/metadata">
    <fullName>OCM_expected_data_check</fullName>
    <active>true</active>
    <description>OCM预测签约日”和“预测发货日”增加判断,当更新这两个日期时要求更新的日期不小于 今天。如果不满足条件提醒。</description>
    <errorConditionFormula>(ISCHANGED(Close_Forecasted_Date__c) &amp;&amp; 
NOT(ISBLANK(Close_Forecasted_Date__c)) &amp;&amp; 
Close_Forecasted_Date__c &lt; TODAY()) || 
(ISCHANGED(CloseDate) &amp;&amp; 
NOT(ISBLANK(CloseDate)) &amp;&amp; 
CloseDate &lt; TODAY())</errorConditionFormula>
    <errorMessage>OCSM预测签约日或者预测发货日不能小于今天</errorMessage>
</ValidationRule>