<?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)), 
 | 
    '5.结束', 
 | 
    IF( 
 | 
         
 | 
            NOT(ISNULL(RelatedInquiryDate__c)) || 
 | 
            NOT(ISNULL(InquiryPreliminaryReviewDate__c))|| 
 | 
            NOT(ISNULL(InquiryShipmentDate__c))|| 
 | 
            NOT(ISNULL(LostDate__c))|| 
 | 
            NOT(ISNULL(CancelDay__c)) 
 | 
        , 
 | 
        '4.关联询价', 
 | 
        IF( 
 | 
             
 | 
                NOT(ISNULL(VisitingDay__c)) || 
 | 
                NOT(ISNULL(Follow_up_Day__c))|| 
 | 
                NOT(ISNULL(AwarenessDay__c))|| 
 | 
                NOT(ISNULL(DoNotknowtheday__c)), 
 | 
            '3.担当确认', 
 | 
            IF( 
 | 
                NOT(ISNULL(Customer_association_date__c)), 
 | 
                '2.关联医院', 
 | 
                IF( 
 | 
                    NOT(ISNULL(CreatedDate)), 
 | 
                    '1.未跟进', 
 | 
                    '' 
 | 
                ) 
 | 
            ) 
 | 
        ) 
 | 
    ) 
 | 
)</formula> 
 | 
    <label>内部状态1</label> 
 | 
    <required>false</required> 
 | 
    <trackHistory>false</trackHistory> 
 | 
    <trackTrending>false</trackTrending> 
 | 
    <type>Text</type> 
 | 
    <unique>false</unique> 
 | 
</CustomField> 
 |