<?xml version="1.0" encoding="UTF-8"?>
|
<ValidationRule xmlns="http://soap.sforce.com/2006/04/metadata">
|
<fullName>Contract_Start_Date_GT_CreateDate</fullName>
|
<active>true</active>
|
<description>合同开始日要在CreateDate后</description>
|
<errorConditionFormula>((IsNew()
|
&& Contract_Start_Date__c < Today()
|
&& Not(IsPickval(Process_Status__c, "申请中"))
|
&& Not(IsPickval(Process_Status__c, "批准"))
|
)
|
||
|
(Not(IsChanged(IsSyncing__c))
|
&& Contract_Start_Date__c < Datevalue(CreatedDate)
|
))</errorConditionFormula>
|
<errorDisplayField>Contract_Start_Date__c</errorDisplayField>
|
<errorMessage>合同开始日要在制定日后</errorMessage>
|
</ValidationRule>
|