1
2
3
4
5
6
7
8
9
10
11
12
13
14
| <?xml version="1.0" encoding="UTF-8"?>
| <CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
| <fullName>Contract_Quote_Decide_Flag__c</fullName>
| <externalId>false</externalId>
| <formula>IF(AND(Contract_Decide_Start_Date__c <= Today(), Today() <= Contract_Decide_End_Date__c),
| IMAGE('/img/checkbox_checked.gif', '可'),
| ''
| )</formula>
| <label>可以做报价</label>
| <required>false</required>
| <trackHistory>false</trackHistory>
| <type>Text</type>
| <unique>false</unique>
| </CustomField>
|
|