1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  | <?xml version="1.0" encoding="UTF-8"?> 
 |  <ValidationRule xmlns="http://soap.sforce.com/2006/04/metadata"> 
 |      <fullName>Request_information_before_submit</fullName> 
 |      <active>true</active> 
 |      <errorConditionFormula>AND( 
 |   Submit_check_flag__c = true, 
 |   OR( 
 |   ISBLANK(Bid_distributor__c), 
 |   ISBLANK(Product_discription__c), 
 |   ISBLANK(Tedner_date__c), 
 |   ISBLANK(Tender_active_day__c), 
 |   ISBLANK(tender_inactive_date__c), 
 |   ISBLANK(Tender_request_reason__c)))</errorConditionFormula> 
 |      <errorMessage>提交之前,请填写相关申请内容(授权格式,授权经销商,产品配置描述,预计招标时间,授权时间(开始)-(结束),授权申请理由)</errorMessage> 
 |  </ValidationRule> 
 |  
  |