1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| <?xml version="1.0" encoding="UTF-8"?>
| <CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
| <fullName>Is_Validity_Today__c</fullName>
| <externalId>false</externalId>
| <formula>IF(!ISNULL(ProductionDate__c) && !ISBLANK(Validity_F__c),
| IF( TODAY() <= ( ADDMONTHS(ProductionDate__c, VALUE(Validity_F__c) * 12 )),
| '是',
| '否'),
| '-'
| )</formula>
| <label>是否在有效期内</label>
| <required>false</required>
| <trackHistory>false</trackHistory>
| <type>Text</type>
| <unique>false</unique>
| </CustomField>
|
|