| <?xml version="1.0" encoding="UTF-8"?> | 
| <CustomField xmlns="http://soap.sforce.com/2006/04/metadata"> | 
|     <fullName>Report_Deadline__c</fullName> | 
|     <description>2014年3月1日,提出时间修改到12点 | 
|   02:30:00 改到 04:00:00 | 
|   | 
| IF(ISPICKVAL(Reporter__r.Province__c , "新疆自治区"),  | 
|   | 
| if (  | 
| isblank( Reported_Date__c),  | 
| null,  | 
| case(  | 
| MOD( Reported_Date__c - DATE( 1900, 1, 7), 7 ) ,  | 
| 5, datetimevalue( text(year(Reported_Date__c)) & '-' & text(month(Reported_Date__c)) & '-' & text(day(Reported_Date__c)) & ' 02:30:00') + 3,  | 
| 6, datetimevalue( text(year(Reported_Date__c)) & '-' & text(month(Reported_Date__c)) & '-' & text(day(Reported_Date__c)) & ' 02:30:00') + 2,  | 
| datetimevalue( text(year(Reported_Date__c)) & '-' & text(month(Reported_Date__c)) & '-' & text(day(Reported_Date__c)) & ' 02:30:00') + 1  | 
| )  | 
| )</description> | 
|     <externalId>false</externalId> | 
|     <formula>IF(ISPICKVAL(Reporter__r.Province__c , "新疆自治区"),  | 
| IF(!ISNULL(Closest_Work_Day__c),datetimevalue( text(year(Closest_Work_Day__c)) & '-' & text(month(Closest_Work_Day__c)) & '-' & text(day(Closest_Work_Day__c)) & ' 6:00:00'), null), | 
| IF(!ISNULL(Closest_Work_Day__c),datetimevalue( text(year(Closest_Work_Day__c)) & '-' & text(month(Closest_Work_Day__c)) & '-' & text(day(Closest_Work_Day__c)) & ' 4:00:00'), null))</formula> | 
|     <label>提出期限</label> | 
|     <required>false</required> | 
|     <trackHistory>false</trackHistory> | 
|     <trackTrending>false</trackTrending> | 
|     <type>DateTime</type> | 
| </CustomField> |