1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
| <?xml version="1.0" encoding="UTF-8"?>
| <CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
| <fullName>FALSE_Order__c</fullName>
| <externalId>false</externalId>
| <formula>IF(mid(ContractNO__c,1,5) = "false","FALSE",
|
| IF(mid(ContractNO__c,3,2) = "HK",
| IF(mid(ContractNO__c,6,5) = "FALSE",mid(ContractNO__c,6,5),
| IF(
| OR(
| mid(ContractNO__c,6,2) = "GI",mid(ContractNO__c,6,2) = "ET",mid(ContractNO__c,6,2) = "BF",mid(ContractNO__c,6,2) = "GS"),
|
| IF(mid(ContractNO__c,9,5)="FALSE","FALSE",""),
| IF(mid(ContractNO__c,10,5)="FALSE","FALSE","")
|
|
| )),
|
| IF(mid(ContractNO__c,4,5) = "FALSE",mid(ContractNO__c,4,5),
| IF(
| OR(
| mid(ContractNO__c,4,2) = "GI",mid(ContractNO__c,4,2) = "ET",mid(ContractNO__c,4,2) = "BF",mid(ContractNO__c,4,2) = "GS"),
|
| IF(mid(ContractNO__c,7,5)="FALSE","FALSE",""),
| IF(mid(ContractNO__c,8,5)="FALSE","FALSE","")
|
|
| ))))</formula>
| <formulaTreatBlanksAs>BlankAsZero</formulaTreatBlanksAs>
| <label>FALSE订单</label>
| <required>false</required>
| <trackHistory>false</trackHistory>
| <trackTrending>false</trackTrending>
| <type>Text</type>
| <unique>false</unique>
| </CustomField>
|
|