binxie
2024-01-20 e0de9222da210f9c8eb1a9f5400f936a14923e11
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>Opportunity_File_Closing_Bid_Date_Check</fullName>
    <active>true</active>
    <description>A,B,C,D,E附件一般只会上传其中一种,如果上传A || B时,填写的中标日不能晚于上传附件日期</description>
    <errorConditionFormula>NOT(ISNULL(Last_opportunity_file__c)) &amp;&amp;
(Last_opportunity_file_stage__c = &apos;A&apos; || Last_opportunity_file_stage__c = &apos;B&apos;) &amp;&amp; NOT(ISNULL(Closing_Bid_Date__c)) &amp;&amp; Closing_Bid_Date__c &gt; DATEVALUE(Last_opportunity_file_time__c)</errorConditionFormula>
    <errorDisplayField>Closing_Bid_Date__c</errorDisplayField>
    <errorMessage>13.中标日不能晚于上传附件日期</errorMessage>
</ValidationRule>