|
Author: ashish
Date: Sat Jan 29 10:22:13 2011 New Revision: 1064993 URL: http://svn.apache.org/viewvc?rev=1064993&view=rev Log: Bug fix. My recent commit r1064953 was creating problem while running test case. Thanks Divesh for providing the fix. Modified: ofbiz/trunk/applications/order/servicedef/services.xml ofbiz/trunk/applications/order/servicedef/services_quote.xml ofbiz/trunk/applications/order/servicedef/services_return.xml ofbiz/trunk/applications/product/servicedef/services_shipment.xml Modified: ofbiz/trunk/applications/order/servicedef/services.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/servicedef/services.xml?rev=1064993&r1=1064992&r2=1064993&view=diff ============================================================================== --- ofbiz/trunk/applications/order/servicedef/services.xml (original) +++ ofbiz/trunk/applications/order/servicedef/services.xml Sat Jan 29 10:22:13 2011 @@ -44,6 +44,7 @@ under the License. <attribute name="messageWrapper" type="org.ofbiz.service.mail.MimeMessageWrapper" mode="OUT" optional="true"/> <attribute name="orderId" type="String" mode="OUT" optional="true"/> <attribute name="subject" type="String" mode="OUT" optional="true"/> + <attribute name="communicationEventId" type="String" mode="OUT" optional="true"/> </service> <service name="sendOrderConfirmation" engine="java" require-new-transaction="true" max-retry="3" location="org.ofbiz.order.order.OrderServices" invoke="sendOrderConfirmNotification"> Modified: ofbiz/trunk/applications/order/servicedef/services_quote.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/servicedef/services_quote.xml?rev=1064993&r1=1064992&r2=1064993&view=diff ============================================================================== --- ofbiz/trunk/applications/order/servicedef/services_quote.xml (original) +++ ofbiz/trunk/applications/order/servicedef/services_quote.xml Sat Jan 29 10:22:13 2011 @@ -234,6 +234,7 @@ under the License. <attribute name="body" type="String" mode="OUT" optional="true"/> <attribute name="subject" type="String" mode="OUT" optional="true"/> <attribute name="messageWrapper" type="org.ofbiz.service.mail.MimeMessageWrapper" mode="OUT" optional="true"/> + <attribute name="communicationEventId" type="String" mode="OUT" optional="true"/> </service> <service name="storeQuote" engine="java" default-entity-name="Quote" validate="true" auth="true" location="org.ofbiz.order.quote.QuoteServices" invoke="storeQuote"> Modified: ofbiz/trunk/applications/order/servicedef/services_return.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/servicedef/services_return.xml?rev=1064993&r1=1064992&r2=1064993&view=diff ============================================================================== --- ofbiz/trunk/applications/order/servicedef/services_return.xml (original) +++ ofbiz/trunk/applications/order/servicedef/services_return.xml Sat Jan 29 10:22:13 2011 @@ -197,16 +197,19 @@ under the License. location="org.ofbiz.order.order.OrderReturnServices" invoke="sendReturnAcceptNotification"> <description>Send a notification that a return has been accepted</description> <attribute name="returnId" type="String" mode="IN" optional="false"/> + <attribute name="communicationEventId" type="String" mode="OUT" optional="true"/> </service> <service name="sendReturnCompleteNotification" engine="java" max-retry="3" location="org.ofbiz.order.order.OrderReturnServices" invoke="sendReturnCompleteNotification"> <description>Send a notification that a return has been completed</description> <attribute name="returnId" type="String" mode="IN" optional="false"/> + <attribute name="communicationEventId" type="String" mode="OUT" optional="true"/> </service> <service name="sendReturnCancelNotification" engine="java" max-retry="3" location="org.ofbiz.order.order.OrderReturnServices" invoke="sendReturnCancelNotification"> <description>Send a notification that a return has been cancelled</description> <attribute name="returnId" type="String" mode="IN" optional="false"/> + <attribute name="communicationEventId" type="String" mode="OUT" optional="true"/> </service> <service name="autoCancelReplacementOrders" engine="java" max-retry="3" transaction-timeout="36000" location="org.ofbiz.order.order.OrderReturnServices" invoke="autoCancelReplacementOrders"> Modified: ofbiz/trunk/applications/product/servicedef/services_shipment.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/servicedef/services_shipment.xml?rev=1064993&r1=1064992&r2=1064993&view=diff ============================================================================== --- ofbiz/trunk/applications/product/servicedef/services_shipment.xml (original) +++ ofbiz/trunk/applications/product/servicedef/services_shipment.xml Sat Jan 29 10:22:13 2011 @@ -952,6 +952,7 @@ under the License. <attribute name="subject" type="String" mode="OUT" optional="true"/> <attribute name="orderId" type="String" mode="OUT" optional="true"/> <attribute name="messageWrapper" type="org.ofbiz.service.mail.MimeMessageWrapper" mode="OUT" optional="true"/> + <attribute name="communicationEventId" type="String" mode="OUT" optional="true"/> </service> <service name="updateIssuanceShipmentAndPoOnReceiveInventory" engine="simple" location="component://product/script/org/ofbiz/shipment/receipt/ShipmentReceiptServices.xml" invoke="updateIssuanceShipmentAndPoOnReceiveInventory"> |
| Free forum by Nabble | Edit this page |
