1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  | <?xml version="1.0" encoding="UTF-8"?> 
 |  <CustomField xmlns="http://soap.sforce.com/2006/04/metadata"> 
 |      <fullName>Status_With_Check__c</fullName> 
 |      <description>删除批准代理的条件 2014年3月18日 
 |    
 |  Case(Status__c 
 |    ,"作成中", "草案中" 
 |    ,"申請中", IF(And(Count_of_Event__c > 0, Count_of_Event__c = Count_Ministercheck_of_Event__c +     Count_Managercheck_of_Event__c), "批准(代理)", "申请中") 
 |    ,"非承認", "不批准" 
 |    ,"承認","批准" 
 |    ,Text(Status__c) 
 |  )</description> 
 |      <externalId>false</externalId> 
 |      <formula>Case(Status__c 
 |    ,"作成中", "草案中" 
 |    ,"申請中", IF(And(Count_of_Event_All__c> 0, Count_of_Event_All__c = Count_Ministercheck_of_Event__c + Count_Managercheck_of_Event__c), "批准", "申请中") 
 |    ,"非承認", "不批准" 
 |    ,"承認","批准" 
 |    ,Text(Status__c) 
 |  )</formula> 
 |      <label>日报状态(含代理)</label> 
 |      <required>false</required> 
 |      <trackHistory>false</trackHistory> 
 |      <trackTrending>false</trackTrending> 
 |      <type>Text</type> 
 |      <unique>false</unique> 
 |  </CustomField> 
 |  
  |