1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| <?xml version="1.0" encoding="UTF-8"?>
| <CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
| <fullName>ApplyList_Link__c</fullName>
| <externalId>false</externalId>
| <formula>IF(ISBLANK(ApplyList__c)
| ,IF(AND(Product2.HomeBuy__c,TEXT(Product2.ApplyList__c)='无'),'不要','')
| ,IF( ApplyList__c == '不要'
| ,'不要'
| ,IF(AND(CONTAINS(ApplyList__c, '预计'),!Product2.HomeBuy__c)
| ,ApplyList__c
| ,IF(!CONTAINS(ApplyList__c, '预计'),HYPERLINK(ApplyList__c, '查看报关单'),'')
| )
| )
| )</formula>
| <formulaTreatBlanksAs>BlankAsZero</formulaTreatBlanksAs>
| <label>报关单</label>
| <required>false</required>
| <trackHistory>false</trackHistory>
| <type>Text</type>
| <unique>false</unique>
| </CustomField>
|
|