| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | | <?xml version="1.0" encoding="UTF-8"?> |  | <CustomField xmlns="http://soap.sforce.com/2006/04/metadata"> |  |     <fullName>If_NextMonth_Plan__c</fullName> |  |     <externalId>false</externalId> |  |     <formula>IF( |  | AND(text(Status__c)="计划中", |  |     OPDPlan_ImplementDate__c >= if(MONTH(today()) != 12,DATE(YEAR(today()), MONTH(today()) + 1, 1) ,DATE(YEAR(today()+1), 1, 1) ), |  |     OPDPlan_ImplementDate__c <= if(MONTH(today()) != 12,if(MONTH(today()) != 11,DATE(YEAR(today()), MONTH(today()) + 2, 1) - 1 ,DATE(YEAR(today()), 12, 31) ) ,DATE(YEAR(today()+1), 1, 31) ) ), 1, 0)</formula> |  |     <formulaTreatBlanksAs>BlankAsZero</formulaTreatBlanksAs> |  |     <label>是否下月计划(公式)</label> |  |     <precision>18</precision> |  |     <required>false</required> |  |     <scale>0</scale> |  |     <trackHistory>false</trackHistory> |  |     <trackTrending>false</trackTrending> |  |     <type>Number</type> |  |     <unique>false</unique> |  | </CustomField> | 
 |