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