blob: 9c60336ee7537167319779214eed12f5a00f0c83 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<service-eca xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/service-eca.xsd">
<!-- send a note when a communicationevent is created for a certain loginId when an
existing comm event's status changes into status: entered-->
<eca service="setCommunicationEventStatus" event="commit">
<condition field-name="statusId" operator="equals" value="COM_ENTERED"/>
<set field-name="entityName" value="CommunicationEvent"/>
<set field-name="entityNameId" env-name="communicationEventId"/>
<action service="createSystemInfoNote" mode="sync"/>
</eca>
<!-- send a note when a communicationevent is created for a certain loginId
with the status entered -->
<eca service="createCommunicationEvent" event="commit">
<condition field-name="statusId" operator="equals" value="COM_ENTERED"/>
<set field-name="entityName" value="CommunicationEvent"/>
<set field-name="entityNameId" env-name="communicationEventId"/>
<action service="createSystemInfoNote" mode="sync"/>
</eca>
<!-- send a system note to all Customer request participants (excluding the originator)
when a note is added to a particular customer request.-->
<eca service="createCustRequestItemNote" event="commit">
<set field-name="entityName" value="CustRequestItemNote"/>
<set field-name="entityNameId" env-name="noteId"/>
<action service="createSystemInfoNote" mode="sync"/>
</eca>
</service-eca>