binxie
2024-01-16 4d3febe8045eb0fa0283af3c53b0c48344b8664d
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
37
38
39
40
41
<?xml version="1.0" encoding="UTF-8"?>
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata">
    <fullName>ProjectStatus1__c</fullName>
    <externalId>false</externalId>
    <formula>IF(NOT(ISNULL(CompletionDate__c)),
    &apos;5.结束&apos;,
    IF(
        
            NOT(ISNULL(RelatedInquiryDate__c)) ||
            NOT(ISNULL(InquiryPreliminaryReviewDate__c))||
            NOT(ISNULL(InquiryShipmentDate__c))||
            NOT(ISNULL(LostDate__c))||
            NOT(ISNULL(CancelDay__c))
        ,
        &apos;4.关联询价&apos;,
        IF(
            
                NOT(ISNULL(VisitingDay__c)) ||
                NOT(ISNULL(Follow_up_Day__c))||
                NOT(ISNULL(AwarenessDay__c))||
                NOT(ISNULL(DoNotknowtheday__c)),
            &apos;3.担当确认&apos;,
            IF(
                NOT(ISNULL(Customer_association_date__c)),
                &apos;2.关联医院&apos;,
                IF(
                    NOT(ISNULL(CreatedDate)),
                    &apos;1.未跟进&apos;,
                    &apos;&apos;
                )
            )
        )
    )
)</formula>
    <label>内部状态1</label>
    <required>false</required>
    <trackHistory>false</trackHistory>
    <trackTrending>false</trackTrending>
    <type>Text</type>
    <unique>false</unique>
</CustomField>