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>IS_Extend_Gurantee__c</fullName>
| <description>20221110 兼容服务市场修改
| IF((Product2.Extend_new_product_gurantee__c==true && Asset_OwnerNew__c <> "奥林巴斯")
| ,IF(AND(FirstApproveDate__c >= Product2.Extend_Gurantee_Start__c,FirstApproveDate__c < Product2.Extend_Gurantee_End__c)
| ,TRUE
| ,FALSE
| )
| ,FALSE
| )</description>
| <externalId>false</externalId>
| <formula>IF(( Asset_OwnerNew__c <> "奥林巴斯")
| ,IF(AND(FirstApproveDate__c >= Product2.Extend_Gurantee_Start__c,FirstApproveDate__c < Product2.Extend_Gurantee_End__c)
| ,TRUE
| ,FALSE
| )
| ,FALSE
| )</formula>
| <label>是否服务多年保修</label>
| <trackHistory>false</trackHistory>
| <type>Checkbox</type>
| </CustomField>
|
|