1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| <?xml version="1.0" encoding="UTF-8"?>
| <CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
| <fullName>Contract_Status__c</fullName>
| <externalId>false</externalId>
| <formula>IF(AND(Not(Isblank(Contract_Start_Date__c)), Not(Isblank(Contract_End_Date__c))),
| IF(AND(Contract_Start_Date__c <= Today(), Today() <= Contract_End_Date__c),
| '使用中',
| '已终止'
| ),
| ''
| )</formula>
| <label>合同状态</label>
| <required>false</required>
| <trackHistory>false</trackHistory>
| <type>Text</type>
| <unique>false</unique>
| </CustomField>
|
|