<?xml version="1.0" encoding="UTF-8"?> 
 | 
<CustomField xmlns="http://soap.sforce.com/2006/04/metadata"> 
 | 
    <fullName>UQueueShippmentDate__c</fullName> 
 | 
    <externalId>false</externalId> 
 | 
    <formula>IF(!ISBLANK(Asset__c), 
 | 
    IF( 
 | 
        AND( 
 | 
        !ISBLANK(Asset__r.Pre_Reserve_RAES_Detail__c), 
 | 
        !ISBLANK(Rental_Apply_Equipment_Set__r.QueueDetail__c), 
 | 
        LEFT(Asset__r.Pre_Reserve_RAES_Detail__c,15) = LEFT(Rental_Apply_Equipment_Set__r.QueueDetail__c,15) 
 | 
        ) 
 | 
    , 
 | 
    IF( 
 | 
        AND( 
 | 
        !ISBLANK(Asset__r.Pre_Reserve_RAES_Detail__r.NextShippmentDate__c) , 
 | 
        Rental_Apply_Equipment_Set__r.QueueShippmentDate__c != Asset__r.Pre_Reserve_RAES_Detail__r.NextShippmentDate__c 
 | 
        ) 
 | 
        ,Asset__r.Pre_Reserve_RAES_Detail__r.NextShippmentDate__c 
 | 
        ,null)     
 | 
    ,null) 
 | 
,null)</formula> 
 | 
    <label>更新排队预计</label> 
 | 
    <required>false</required> 
 | 
    <trackHistory>false</trackHistory> 
 | 
    <trackTrending>false</trackTrending> 
 | 
    <type>Date</type> 
 | 
</CustomField> 
 |