GWY
2022-04-27 12b7399736e90d33bfe0c2d29917d6f075246e00
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
<?xml version="1.0" encoding="UTF-8"?>
<Workflow xmlns="http://soap.sforce.com/2006/04/metadata">
    <alerts>
        <fullName>Order_Shippment_Email</fullName>
        <description>订单发货通知</description>
        <protected>false</protected>
        <recipients>
            <field>OrderCreatedbyText__c</field>
            <type>userLookup</type>
        </recipients>
        <senderType>CurrentUser</senderType>
        <template>unfiled$public/SSBGOrderShipment</template>
    </alerts>
    <rules>
        <fullName>发货通知收件人</fullName>
        <actions>
            <name>Order_Shippment_Email</name>
            <type>Alert</type>
        </actions>
        <active>true</active>
        <criteriaItems>
            <field>Delivery__c.Delivery_Status__c</field>
            <operation>equals</operation>
            <value>部分发货,全部发货</value>
        </criteriaItems>
        <triggerType>onCreateOnly</triggerType>
    </rules>
</Workflow>