svn commit: r755936 - in /ofbiz/trunk/applications/order/servicedef: services.xml services_opportunity.xml services_quote.xml services_request.xml services_requirement.xml services_return.xml services_shoppinglist.xml services_upgrade.xml

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r755936 - in /ofbiz/trunk/applications/order/servicedef: services.xml services_opportunity.xml services_quote.xml services_request.xml services_requirement.xml services_return.xml services_shoppinglist.xml services_upgrade.xml

jleroux@apache.org
Author: jleroux
Date: Thu Mar 19 11:36:53 2009
New Revision: 755936

URL: http://svn.apache.org/viewvc?rev=755936&view=rev
Log:
order component
Following best practice.
Changed location="org/ofbiz/......... to location="component:// in the service location attribute.

Modified:
    ofbiz/trunk/applications/order/servicedef/services.xml
    ofbiz/trunk/applications/order/servicedef/services_opportunity.xml
    ofbiz/trunk/applications/order/servicedef/services_quote.xml
    ofbiz/trunk/applications/order/servicedef/services_request.xml
    ofbiz/trunk/applications/order/servicedef/services_requirement.xml
    ofbiz/trunk/applications/order/servicedef/services_return.xml
    ofbiz/trunk/applications/order/servicedef/services_shoppinglist.xml
    ofbiz/trunk/applications/order/servicedef/services_upgrade.xml

Modified: ofbiz/trunk/applications/order/servicedef/services.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/servicedef/services.xml?rev=755936&r1=755935&r2=755936&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/servicedef/services.xml (original)
+++ ofbiz/trunk/applications/order/servicedef/services.xml Thu Mar 19 11:36:53 2009
@@ -78,7 +78,7 @@
     </service>
 
     <service name="createOrderNotificationLog" engine="simple"
-            location="org/ofbiz/order/order/OrderSimpleMethods.xml" invoke="createNotificationLog">
+            location="component://order/script/org/ofbiz/order/order/OrderSimpleMethods.xml" invoke="createNotificationLog">
         <description>Logs when a notification was sent</description>
         <attribute name="orderId" type="String" mode="IN" optional="false"/>
         <attribute name="emailType" type="String" mode="IN" optional="false"/>
@@ -164,7 +164,7 @@
     </service>
     
     <service name="createOrderItemBilling" engine="simple"
-            location="org/ofbiz/order/order/OrderSimpleMethods.xml" invoke="createOrderItemBilling">
+            location="component://order/script/org/ofbiz/order/order/OrderSimpleMethods.xml" invoke="createOrderItemBilling">
         <description>Create a new order item billing record</description>
         <attribute name="orderId" type="String" mode="IN" optional="false"/>
         <attribute name="orderItemSeqId" type="String" mode="IN" optional="false"/>
@@ -177,7 +177,7 @@
     </service>
 
     <service name="createOrderAdjustment" default-entity-name="OrderAdjustment" engine="simple"
-            location="org/ofbiz/order/order/OrderSimpleMethods.xml" invoke="createOrderAdjustment">
+            location="component://order/script/org/ofbiz/order/order/OrderSimpleMethods.xml" invoke="createOrderAdjustment">
         <description>Creates a new order adjustment record</description>
         <auto-attributes mode="OUT" include="pk" optional="false"/>
         <auto-attributes mode="IN" include="nonpk" optional="true"/>
@@ -185,21 +185,21 @@
         <override name="orderId" optional="false"/>
     </service>
     <service name="updateOrderAdjustment" default-entity-name="OrderAdjustment" engine="simple"
-        location="org/ofbiz/order/order/OrderSimpleMethods.xml" invoke="updateOrderAdjustment">
+        location="component://order/script/org/ofbiz/order/order/OrderSimpleMethods.xml" invoke="updateOrderAdjustment">
         <description>Update an order adjustment record</description>
         <auto-attributes mode="IN" include="pk" optional="false"/>
         <auto-attributes mode="IN" include="nonpk" optional="true"/>
         <override name="orderId" optional="false"/>
     </service>
     <service name="deleteOrderAdjustment" default-entity-name="OrderAdjustment" engine="simple"
-        location="org/ofbiz/order/order/OrderSimpleMethods.xml" invoke="deleteOrderAdjustment">
+        location="component://order/script/org/ofbiz/order/order/OrderSimpleMethods.xml" invoke="deleteOrderAdjustment">
         <description>Delete an order adjustment record</description>
         <auto-attributes mode="IN" include="pk" optional="false"/>
         <attribute name="orderId" type="String" mode="IN" optional="false"/>  <!-- needed for resetGrandTotal seca -->
     </service>
     
     <service name="createOrderAdjustmentBilling" engine="simple"
-            location="org/ofbiz/order/order/OrderSimpleMethods.xml" invoke="createOrderAdjustmentBilling">
+            location="component://order/script/org/ofbiz/order/order/OrderSimpleMethods.xml" invoke="createOrderAdjustmentBilling">
         <description>Create a new order adjustment billing record</description>
         <attribute name="orderAdjustmentId" type="String" mode="IN" optional="false"/>
         <attribute name="invoiceId" type="String" mode="IN" optional="false"/>
@@ -343,7 +343,7 @@
     </service>
 
     <service name="recreateOrderAdjustments" engine="simple" auth="true"
-            location="org/ofbiz/order/order/OrderServices.xml" invoke="recreateOrderAdjustments">
+            location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="recreateOrderAdjustments">
         <description>Remove all existing order adjustments, recalc them and persist in OrderAdjustment.</description>
         <attribute name="orderId" type="String" mode="IN" optional="false"/>
     </service>
@@ -369,7 +369,7 @@
     </service>
 
     <service name="updateOrderStatusFromReceipt" engine="simple"
-            location="org/ofbiz/order/order/OrderSimpleMethods.xml" invoke="updateOrderStatusFromReceipt">
+            location="component://order/script/org/ofbiz/order/order/OrderSimpleMethods.xml" invoke="updateOrderStatusFromReceipt">
         <description>Updates the (purchase) order/order item status based on receipt</description>
         <attribute name="orderId" type="String" mode="IN" optional="false"/>
         <attribute name="currentStatusId" type="String" mode="OUT" optional="false"/>
@@ -396,7 +396,7 @@
     </service>
 
     <service name="getOrderItemShipGroupEstimatedShipDate" engine="simple"
-            location="org/ofbiz/order/order/OrderServices.xml" invoke="getOrderItemShipGroupEstimatedShipDate" auth="true">
+            location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="getOrderItemShipGroupEstimatedShipDate" auth="true">
         <description>Compute and return the OrderItemShipGroup estimated ship date based on the associated items.</description>
         <attribute name="orderId" type="String" mode="IN" optional="false"/>
         <attribute name="shipGroupSeqId" type="String" mode="IN" optional="false"/>
@@ -439,7 +439,7 @@
     </service>
 
     <service name="updateOrderNote" engine="simple" default-entity-name="OrderHeaderNote"
-            location="org/ofbiz/order/order/OrderServices.xml" invoke="updateOrderNote" auth="true">
+            location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="updateOrderNote" auth="true">
         <description>Toggle Order Note and make it either Public or Private</description>
         <attribute name="orderId" type="String" mode="IN" optional="false"/>
         <attribute name="noteId" type="String" mode="IN" optional="false"/>
@@ -469,7 +469,7 @@
     </service>
     <!-- Order View Services -->
     <service name="getOrderedSummaryInformation" engine="simple"
-            location="org/ofbiz/order/order/OrderServices.xml" invoke="getOrderedSummaryInformation">
+            location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="getOrderedSummaryInformation">
         <description>Get Ordered Summary Information</description>
         <attribute name="partyId" type="String" mode="IN" optional="false"/>
         <attribute name="roleTypeId" type="String" mode="IN" optional="true"/> <!-- defaults to PLACING_CUSTOMER -->
@@ -497,7 +497,7 @@
         <attribute name="shippingAmount" type="BigDecimal" mode="OUT" optional="false"/>
     </service>
     <service name="getOrderStatus" engine="simple" export="true"
-            location="org/ofbiz/order/order/OrderServices.xml" invoke="getOrderStatus" auth="false">
+            location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="getOrderStatus" auth="false">
         <description>Gets the order status</description>
         <attribute name="orderId" type="String" mode="IN" optional="false"/>
         <attribute name="statusId" type="String" mode="OUT" optional="false"/>
@@ -505,27 +505,27 @@
 
     <!-- Order Delivery Services -->
     <service name="createOrderDeliverySchedule" default-entity-name="OrderDeliverySchedule" engine="simple"
-            location="org/ofbiz/order/order/OrderDeliveryServices.xml" invoke="createOrderDeliverySchedule">
+            location="component://order/script/org/ofbiz/order/order/OrderDeliveryServices.xml" invoke="createOrderDeliverySchedule">
         <description>Creates a delivery schedule for the specified order</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
         <override name="orderItemSeqId" optional="true"/>
     </service>
     <service name="updateOrderDeliverySchedule" default-entity-name="OrderDeliverySchedule" engine="simple"
-            location="org/ofbiz/order/order/OrderDeliveryServices.xml" invoke="updateOrderDeliverySchedule">
+            location="component://order/script/org/ofbiz/order/order/OrderDeliveryServices.xml" invoke="updateOrderDeliverySchedule">
         <description>Update an existing delivery schedule for a specified purchase order</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="sendOrderDeliveryScheduleNotification" engine="simple"
-            location="org/ofbiz/order/order/OrderDeliveryServices.xml" invoke="sendOrderDeliveryScheduleNotification">
+            location="component://order/script/org/ofbiz/order/order/OrderDeliveryServices.xml" invoke="sendOrderDeliveryScheduleNotification">
         <description>Send Order Delivery Schedule Notification</description>
         <attribute name="orderId" type="String" mode="IN" optional="false"/>
         <attribute name="orderItemSeqId" type="String" mode="IN" optional="true"/>
     </service>
 
     <service name="checkSupplierRelatedOrderPermission" engine="simple"
-            location="org/ofbiz/order/order/OrderDeliveryServices.xml" invoke="checkSupplierRelatedOrderPermissionService">
+            location="component://order/script/org/ofbiz/order/order/OrderDeliveryServices.xml" invoke="checkSupplierRelatedOrderPermissionService">
         <description>Check Supplier Related Order Permission</description>
         <attribute name="orderId" type="String" mode="IN" optional="false"/>
         <attribute name="checkAction" type="String" mode="IN" optional="true"/>
@@ -552,19 +552,19 @@
 
     <!-- OrderShipment Services -->
     <service name="createOrderShipment" default-entity-name="OrderShipment" engine="simple"
-            location="org/ofbiz/order/order/OrderServices.xml" invoke="createOrderShipment" auth="true">
+            location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="createOrderShipment" auth="true">
         <description>Create OrderShipment</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="updateOrderShipment" default-entity-name="OrderShipment" engine="simple"
-        location="org/ofbiz/order/order/OrderServices.xml" invoke="updateOrderShipment" auth="true">
+        location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="updateOrderShipment" auth="true">
         <description>Update OrderShipment</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="deleteOrderShipment" default-entity-name="OrderShipment" engine="simple"
-            location="org/ofbiz/order/order/OrderServices.xml" invoke="deleteOrderShipment" auth="true">
+            location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="deleteOrderShipment" auth="true">
         <description>Delete OrderShipment</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
@@ -612,7 +612,7 @@
     </service>
 
     <service name="getNextOrderId" engine="simple"
-        location="org/ofbiz/order/order/OrderServices.xml" invoke="getNextOrderId">
+        location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="getNextOrderId">
         <description>Get the Next Order ID According to Settings on the PartyAcctgPreference Entity for the given Party</description>
         <attribute name="partyId" type="String" mode="IN" optional="false"/>
         <attribute name="productStoreId" type="String" mode="IN" optional="true"/>
@@ -621,13 +621,13 @@
 
     <!-- OrderHeader -->
     <service name="createOrderHeader" default-entity-name="OrderHeader" engine="simple"
-            location="org/ofbiz/order/order/OrderServices.xml" invoke="createOrderHeader" auth="true">
+            location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="createOrderHeader" auth="true">
         <description>Create OrderHeader</description>
         <auto-attributes include="pk" mode="INOUT" optional="true"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="updateOrderHeader" default-entity-name="OrderHeader" engine="simple"
-            location="org/ofbiz/order/order/OrderServices.xml" invoke="updateOrderHeader" auth="true">
+            location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="updateOrderHeader" auth="true">
         <description>Update OrderHeader</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
@@ -635,19 +635,19 @@
     
     <!-- CommunicationEvents related to orders -->
     <service name="createCommunicationEventOrder" engine="simple"
-            location="org/ofbiz/order/communication/CommunicationEventServices.xml" invoke="createCommunicationEventOrder" auth="true">
+            location="component://order/script/org/ofbiz/order/communication/CommunicationEventServices.xml" invoke="createCommunicationEventOrder" auth="true">
         <description>Create a Communication Event Order</description>
         <auto-attributes entity-name="CommunicationEventOrder" include="pk" mode="IN" optional="false"/>
     </service>
     <service name="removeCommunicationEventOrder" engine="simple"
-            location="org/ofbiz/order/communication/CommunicationEventServices.xml" invoke="removeCommunicationEventOrder" auth="true">
+            location="component://order/script/org/ofbiz/order/communication/CommunicationEventServices.xml" invoke="removeCommunicationEventOrder" auth="true">
         <description>Remove a Communication Event Order</description>
         <auto-attributes entity-name="CommunicationEventOrder" include="pk" mode="IN" optional="false"/>
     </service>
     
     <!-- Order Shipping and Contacts -->
     <service name="updateOrderItemShipGroup" default-entity-name="OrderItemShipGroup" engine="simple"
-            location="org/ofbiz/order/order/OrderServices.xml" invoke="updateOrderItemShipGroup" auth="true">
+            location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="updateOrderItemShipGroup" auth="true">
         <description>Updates OrderItemShipGroup.  The shipmentMethod field is of the format ${shipmentMethodTypeId}@${carrierPartyId}</description>
         <auto-attributes mode="IN" include="pk" optional="false"/>
         <auto-attributes mode="IN" include="nonpk" optional="true"/>
@@ -657,40 +657,40 @@
     </service>    
     
     <service name="createOrderContactMech" default-entity-name="OrderContactMech" engine="simple"
-            location="org/ofbiz/order/order/OrderServices.xml" invoke="createOrderContactMech" auth="true">
+            location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="createOrderContactMech" auth="true">
         <description>Create Order Contact Mech</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
     
     <service name="updateOrderContactMech" engine="simple"
-            location="org/ofbiz/order/order/OrderServices.xml" invoke="updateOrderContactMech" auth="true" default-entity-name="OrderContactMech">
+            location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="updateOrderContactMech" auth="true" default-entity-name="OrderContactMech">
         <description>Update Order Contact Mech</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <attribute name="oldContactMechId" type="String" mode="IN" optional="true"/>
     </service>    
     
     <service name="removeOrderContactMech" default-entity-name="OrderContactMech" engine="simple"
-        location="org/ofbiz/order/order/OrderServices.xml" invoke="removeOrderContactMech" auth="true">
+        location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="removeOrderContactMech" auth="true">
         <description>Remove Order Contact Mech</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
 
     <!-- OrderTerms -->
     <service name="createOrderTerm" engine="simple"
-            location="org/ofbiz/order/order/OrderServices.xml" invoke="createOrderTerm" auth="true">
+            location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="createOrderTerm" auth="true">
         <description>Create an Order Term</description>
         <auto-attributes entity-name="OrderTerm" include="pk" mode="IN" optional="false"/>
         <auto-attributes entity-name="OrderTerm" include="nonpk" mode="IN" optional="true"/>
         <override name="orderItemSeqId" optional="true"/>
     </service>
     <service name="updateOrderTerm" engine="simple"
-            location="org/ofbiz/order/order/OrderServices.xml" invoke="updateOrderTerm" auth="true">
+            location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="updateOrderTerm" auth="true">
         <description>Update an Order Term</description>
         <auto-attributes entity-name="OrderTerm" include="pk" mode="IN" optional="false"/>
         <auto-attributes entity-name="OrderTerm" include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="removeOrderTerm" engine="simple"
-            location="org/ofbiz/order/order/OrderServices.xml" invoke="removeOrderTerm" auth="true">
+            location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="removeOrderTerm" auth="true">
         <description>Remove an Order Term</description>
         <auto-attributes entity-name="OrderTerm" include="pk" mode="IN" optional="false"/>
     </service>
@@ -702,7 +702,7 @@
     </service>
     
     <service name="addPaymentMethodToOrder" engine="simple"
-            location="org/ofbiz/order/order/OrderServices.xml" invoke="addPaymentMethodToOrder" auth="true">
+            location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="addPaymentMethodToOrder" auth="true">
         <description>Add Payment Method to Order.From this servicewe will call the createOrderPaymentPreference service to create OrderPaymentPreference</description>
         <attribute type="String" mode="IN" name="orderId" optional="false"/>
         <attribute type="String" mode="IN" name="paymentMethodId" optional="false"/>
@@ -819,7 +819,7 @@
     </service>
     
     <service name="checkOrderIsOnBackOrder" engine="simple" auth="false"
-            location="org/ofbiz/order/order/OrderServices.xml" invoke="checkOrderIsOnBackOrder">
+            location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="checkOrderIsOnBackOrder">
         <description>Check if an Order is on Back Order</description>
         <attribute name="orderId" type="String" mode="IN" optional="false"/>
         <attribute name="isBackOrder" type="Boolean" mode="OUT" optional="false"/>      
@@ -856,7 +856,7 @@
     </service>    
     
     <service name="createOrderItemChange" engine="simple" auth="true" default-entity-name="OrderItemChange"
-            location="org/ofbiz/order/order/OrderServices.xml" invoke="createOrderItemChange">
+            location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="createOrderItemChange">
         <description>Creates a new OrderItemChange record</description>
         <auto-attributes mode="OUT" include="pk" optional="false"/>
         <auto-attributes mode="IN" include="nonpk" optional="true"/>
@@ -871,7 +871,7 @@
     </service>
     
     <service name="createUpdateShippingAddress" engine="simple"
-            location="org/ofbiz/order/order/OrderServices.xml" invoke="createUpdateShippingAddress" auth="true">
+            location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="createUpdateShippingAddress" auth="true">
         <description>Creates new shipping address and update existing address</description>
         <attribute name="productStoreId" mode="IN" type="String" optional="true"/>
         <attribute name="setDefaultShipping" mode="IN" type="String" optional="true"/>
@@ -892,7 +892,7 @@
     </service>
 
     <service name="createUpdateBillingAddress" engine="simple"
-            location="org/ofbiz/order/order/OrderServices.xml" invoke="createUpdateBillingAddress" auth="true">
+            location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="createUpdateBillingAddress" auth="true">
         <description>Creates new billing address and update existing address</description>
         <attribute name="productStoreId" mode="IN" type="String" optional="true"/>
         <attribute name="setDefaultBilling" mode="IN" type="String" optional="true"/>
@@ -914,7 +914,7 @@
     </service>
 
     <service name="createUpdateCreditCard" engine="simple" auth="true" default-entity-name="CreditCard"
-            location="org/ofbiz/order/order/OrderServices.xml" invoke="createUpdateCreditCard">
+            location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="createUpdateCreditCard">
         <description>Create/Update credit card</description>
         <attribute name="expMonth" type="String" mode="IN" optional="false"/>
         <attribute name="expYear" type="String" mode="IN" optional="false"/>
@@ -933,7 +933,7 @@
     </service>
 
    <service name="setUnitPriceAsLastPrice" engine="simple"
-            location="org/ofbiz/order/order/OrderServices.xml" invoke="setUnitPriceAsLastPrice" auth="false">
+            location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="setUnitPriceAsLastPrice" auth="false">
         <description>Sets unit price as last price for product</description>
         <attribute name="supplierPartyId" type="String" mode="IN" optional="true"/>
         <attribute name="orderTypeId" type="String" mode="IN" optional="true"/>
@@ -947,7 +947,7 @@
    </service>
 
     <service name="cancelAllBackOrders" engine="simple"
-            location="org/ofbiz/order/order/OrderServices.xml" invoke="cancelAllBackOrders" auth="true">
+            location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="cancelAllBackOrders" auth="true">
         <description>Cancels those back orders from suppliers whose cancel back order date (cancelBackOrderDate) has passed the current date</description>
     </service>
 </services>
\ No newline at end of file

Modified: ofbiz/trunk/applications/order/servicedef/services_opportunity.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/servicedef/services_opportunity.xml?rev=755936&r1=755935&r2=755936&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/servicedef/services_opportunity.xml (original)
+++ ofbiz/trunk/applications/order/servicedef/services_opportunity.xml Thu Mar 19 11:36:53 2009
@@ -24,7 +24,7 @@
     <vendor>OFBiz</vendor>
 
     <service name="createSalesForecast" engine="simple" auth="true" default-entity-name="SalesForecast"
-            location="org/ofbiz/order/opportunity/OpportunityServices.xml" invoke="createSalesForecast">
+            location="component://order/script/org/ofbiz/order/opportunity/OpportunityServices.xml" invoke="createSalesForecast">
        <description>Creates a Sales Forecast for the userLogin. Requires ORDERMGR_4C_CREATE permission.
             This will save the forecast into the history as well. Note that this service does not compute
             the forecast. That must be done in a higher level service.</description>
@@ -36,7 +36,7 @@
     </service>
 
     <service name="updateSalesForecast" engine="simple" auth="true" default-entity-name="SalesForecast"
-            location="org/ofbiz/order/opportunity/OpportunityServices.xml" invoke="updateSalesForecast">
+            location="component://order/script/org/ofbiz/order/opportunity/OpportunityServices.xml" invoke="updateSalesForecast">
        <description>Updates a Sales Forecast and marks it as modified by the userLogin. Requires ORDERMGR_4C_UPDATE
             permission. This will save the current forecast into the history before overwritting it.
             Note that this service does not compute the forecast. That must be done in a higher level service.</description>
@@ -50,20 +50,20 @@
     
      <!-- Sales Forecast Detail -->
     <service name="createSalesForecastDetail" engine="simple" auth="true" default-entity-name="SalesForecastDetail"
-            location="org/ofbiz/order/opportunity/OpportunityServices.xml" invoke="createSalesForecastDetail">
+            location="component://order/script/org/ofbiz/order/opportunity/OpportunityServices.xml" invoke="createSalesForecastDetail">
         <description>Creates a Sales Forecast Detail</description>
         <auto-attributes mode="IN" include="pk" optional="false"/>
         <auto-attributes mode="IN" include="nonpk" optional="true"/>
         <override name="salesForecastDetailId" mode="OUT"/>
     </service>
     <service name="updateSalesForecastDetail" engine="simple" auth="true" default-entity-name="SalesForecastDetail"
-            location="org/ofbiz/order/opportunity/OpportunityServices.xml" invoke="updateSalesForecastDetail">
+            location="component://order/script/org/ofbiz/order/opportunity/OpportunityServices.xml" invoke="updateSalesForecastDetail">
         <description>Updates a Sales Forecast Detail</description>
         <auto-attributes mode="IN" include="pk" optional="false"/>
         <auto-attributes mode="IN" include="nonpk" optional="true"/>
     </service>
     <service name="deleteSalesForecastDetail" engine="simple" default-entity-name="SalesForecastDetail"
-            location="org/ofbiz/order/opportunity/OpportunityServices.xml" invoke="deleteSalesForecastDetail">
+            location="component://order/script/org/ofbiz/order/opportunity/OpportunityServices.xml" invoke="deleteSalesForecastDetail">
         <description>Delete a Sales Forecast Detail</description>
         <auto-attributes mode="IN" include="pk" optional="false"/>
     </service>

Modified: ofbiz/trunk/applications/order/servicedef/services_quote.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/servicedef/services_quote.xml?rev=755936&r1=755935&r2=755936&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/servicedef/services_quote.xml (original)
+++ ofbiz/trunk/applications/order/servicedef/services_quote.xml Thu Mar 19 11:36:53 2009
@@ -26,26 +26,26 @@
     
     <!-- Quote -->
     <service name="getNextQuoteId" engine="simple"
-        location="org/ofbiz/order/quote/QuoteServices.xml" invoke="getNextQuoteId">
+        location="component://order/script/org/ofbiz/order/quote/QuoteServices.xml" invoke="getNextQuoteId">
         <description>Get the Next Quote ID According to Settings on the PartyAcctgPreference Entity for the given Party</description>
         <attribute name="partyId" type="String" mode="IN" optional="false"/>
         <attribute name="quoteId" type="String" mode="OUT" optional="false"/>
     </service>
     
     <service name="createQuote" default-entity-name="Quote" engine="simple"
-                location="org/ofbiz/order/quote/QuoteServices.xml" invoke="createQuote" auth="true">
+                location="component://order/script/org/ofbiz/order/quote/QuoteServices.xml" invoke="createQuote" auth="true">
         <description>Create an Quote</description>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
         <auto-attributes include="pk" mode="OUT" optional="true"/>
     </service>
     <service name="updateQuote" default-entity-name="Quote" engine="simple"
-                location="org/ofbiz/order/quote/QuoteServices.xml" invoke="updateQuote" auth="true">
+                location="component://order/script/org/ofbiz/order/quote/QuoteServices.xml" invoke="updateQuote" auth="true">
         <description>Update a Quote</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="copyQuote" default-entity-name="Quote" engine="simple"
-                location="org/ofbiz/order/quote/QuoteServices.xml" invoke="copyQuote" auth="true">
+                location="component://order/script/org/ofbiz/order/quote/QuoteServices.xml" invoke="copyQuote" auth="true">
         <description>Copy a Quote</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <attribute name="copyQuoteRoles" type="String" mode="IN" optional="true"/>
@@ -55,43 +55,43 @@
         <attribute name="copyQuoteAdjustments" type="String" mode="IN" optional="true"/>
     </service>
     <service name="checkUpdateQuoteStatus" default-entity-name="Quote" engine="simple"
-                location="org/ofbiz/order/quote/QuoteServices.xml" invoke="checkUpdateQuoteStatus" auth="true">
+                location="component://order/script/org/ofbiz/order/quote/QuoteServices.xml" invoke="checkUpdateQuoteStatus" auth="true">
         <description>Set the Quote status to ordered.</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
     <!-- QuoteRole  -->
     <service name="createQuoteRole" default-entity-name="QuoteRole" engine="simple"
-                location="org/ofbiz/order/quote/QuoteServices.xml" invoke="createQuoteRole" auth="true">
+                location="component://order/script/org/ofbiz/order/quote/QuoteServices.xml" invoke="createQuoteRole" auth="true">
         <description>Create a QuoteRole</description>
         <auto-attributes include="pk" mode="INOUT" optional="true"/>
     </service>
     <service name="removeQuoteRole" default-entity-name="QuoteRole" engine="simple"
-                location="org/ofbiz/order/quote/QuoteServices.xml" invoke="removeQuoteRole" auth="true">
+                location="component://order/script/org/ofbiz/order/quote/QuoteServices.xml" invoke="removeQuoteRole" auth="true">
         <description>Remove a QuoteRole</description>
         <auto-attributes include="pk" mode="INOUT" optional="true"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <!-- QuoteItem  -->
     <service name="createQuoteItem" default-entity-name="QuoteItem" engine="simple"
-                location="org/ofbiz/order/quote/QuoteServices.xml" invoke="createQuoteItem" auth="true">
+                location="component://order/script/org/ofbiz/order/quote/QuoteServices.xml" invoke="createQuoteItem" auth="true">
         <description>Create a QuoteItem</description>
         <auto-attributes include="pk" mode="INOUT" optional="true"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="updateQuoteItem" default-entity-name="QuoteItem" engine="simple"
-                location="org/ofbiz/order/quote/QuoteServices.xml" invoke="updateQuoteItem" auth="true">
+                location="component://order/script/org/ofbiz/order/quote/QuoteServices.xml" invoke="updateQuoteItem" auth="true">
         <description>Update a QuoteItem</description>
         <auto-attributes include="pk" mode="IN" optional="true"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="removeQuoteItem" default-entity-name="QuoteItem" engine="simple"
-                location="org/ofbiz/order/quote/QuoteServices.xml" invoke="removeQuoteItem" auth="true">
+                location="component://order/script/org/ofbiz/order/quote/QuoteServices.xml" invoke="removeQuoteItem" auth="true">
         <description>Remove a QuoteItem</description>
         <auto-attributes include="pk" mode="INOUT" optional="true"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="copyQuoteItem" default-entity-name="QuoteItem" engine="simple"
-                location="org/ofbiz/order/quote/QuoteServices.xml" invoke="copyQuoteItem" auth="true">
+                location="component://order/script/org/ofbiz/order/quote/QuoteServices.xml" invoke="copyQuoteItem" auth="true">
         <description>Copy a QuoteItem</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
@@ -101,52 +101,52 @@
     </service>
     <!-- QuoteAttribute  -->
     <service name="createQuoteAttribute" default-entity-name="QuoteAttribute" engine="simple"
-                location="org/ofbiz/order/quote/QuoteServices.xml" invoke="createQuoteAttribute" auth="true">
+                location="component://order/script/org/ofbiz/order/quote/QuoteServices.xml" invoke="createQuoteAttribute" auth="true">
         <description>Create a QuoteAttribute</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="updateQuoteAttribute" default-entity-name="QuoteAttribute" engine="simple"
-                location="org/ofbiz/order/quote/QuoteServices.xml" invoke="updateQuoteAttribute" auth="true">
+                location="component://order/script/org/ofbiz/order/quote/QuoteServices.xml" invoke="updateQuoteAttribute" auth="true">
         <description>Update a QuoteAttribute</description>
         <auto-attributes include="pk" mode="IN" optional="true"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="removeQuoteAttribute" engine="simple" default-entity-name="QuoteAttribute"
-                location="org/ofbiz/order/quote/QuoteServices.xml" invoke="removeQuoteAttribute" auth="true">
+                location="component://order/script/org/ofbiz/order/quote/QuoteServices.xml" invoke="removeQuoteAttribute" auth="true">
         <description>Remove a QuoteAttribute</description>
         <auto-attributes include="pk" mode="IN" optional="true"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <!-- QuoteCoefficient  -->
     <service name="createQuoteCoefficient" default-entity-name="QuoteCoefficient" engine="simple"
-                location="org/ofbiz/order/quote/QuoteServices.xml" invoke="createQuoteCoefficient" auth="true">
+                location="component://order/script/org/ofbiz/order/quote/QuoteServices.xml" invoke="createQuoteCoefficient" auth="true">
         <description>Create a QuoteCoefficient</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="updateQuoteCoefficient" default-entity-name="QuoteCoefficient" engine="simple"
-                location="org/ofbiz/order/quote/QuoteServices.xml" invoke="updateQuoteCoefficient" auth="true">
+                location="component://order/script/org/ofbiz/order/quote/QuoteServices.xml" invoke="updateQuoteCoefficient" auth="true">
         <description>Update a QuoteCoefficient</description>
         <auto-attributes include="pk" mode="IN" optional="true"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="removeQuoteCoefficient" engine="simple" default-entity-name="QuoteCoefficient"
-                location="org/ofbiz/order/quote/QuoteServices.xml" invoke="removeQuoteCoefficient" auth="true">
+                location="component://order/script/org/ofbiz/order/quote/QuoteServices.xml" invoke="removeQuoteCoefficient" auth="true">
         <description>Remove a QuoteCoefficient</description>
         <auto-attributes include="pk" mode="IN" optional="true"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <!-- Specialized Quote services -->
     <service name="createQuoteAndQuoteItemForRequest" engine="simple" default-entity-name="QuoteItem"
-                location="org/ofbiz/order/quote/QuoteServices.xml" invoke="createQuoteAndQuoteItemForRequest" auth="true">
+                location="component://order/script/org/ofbiz/order/quote/QuoteServices.xml" invoke="createQuoteAndQuoteItemForRequest" auth="true">
         <description>Create a new Quote and Quote Item for a CustRequest</description>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
         <auto-attributes include="pk" mode="OUT" optional="true"/>
         <override name="custRequestId" optional="false"/>
     </service>
     <service name="autoUpdateQuotePrice" engine="simple" default-entity-name="QuoteItem"
-                location="org/ofbiz/order/quote/QuoteServices.xml" invoke="autoUpdateQuotePrice" auth="true">
+                location="component://order/script/org/ofbiz/order/quote/QuoteServices.xml" invoke="autoUpdateQuotePrice" auth="true">
         <description>Update the QuoteItem price with the passed value (if present) or automatically from the averageCost</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <attribute name="manualQuoteUnitPrice" type="BigDecimal" mode="IN" optional="true"/>
@@ -155,12 +155,12 @@
         <attribute name="costToPriceMult" type="BigDecimal" mode="IN" optional="true"/>-->
     </service>
     <service name="autoCreateQuoteAdjustments" engine="simple" auth="true"
-            location="org/ofbiz/order/quote/QuoteServices.xml" invoke="autoCreateQuoteAdjustments">
+            location="component://order/script/org/ofbiz/order/quote/QuoteServices.xml" invoke="autoCreateQuoteAdjustments">
         <description>Remove all existing quote adjustments, recalc them and persist in QuoteAdjustment.</description>
         <attribute name="quoteId" type="String" mode="IN" optional="false"/>
     </service>
     <service name="createQuoteAdjustment" default-entity-name="QuoteAdjustment" engine="simple" auth="true"
-            location="org/ofbiz/order/quote/QuoteServices.xml" invoke="createQuoteAdjustment">
+            location="component://order/script/org/ofbiz/order/quote/QuoteServices.xml" invoke="createQuoteAdjustment">
         <description>Creates a new quote adjustment record</description>
         <auto-attributes mode="IN" include="nonpk" optional="true"/>
         <auto-attributes mode="OUT" include="pk" optional="false"/>
@@ -168,19 +168,19 @@
         <override name="quoteId" optional="false"/>
     </service>
     <service name="updateQuoteAdjustment" default-entity-name="QuoteAdjustment" engine="simple"
-                location="org/ofbiz/order/quote/QuoteServices.xml" invoke="updateQuoteAdjustment" auth="true">
+                location="component://order/script/org/ofbiz/order/quote/QuoteServices.xml" invoke="updateQuoteAdjustment" auth="true">
         <description>Update a QuoteAdjustment</description>
         <auto-attributes include="pk" mode="IN" optional="true"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="removeQuoteAdjustment" engine="simple" default-entity-name="QuoteAdjustment"
-                location="org/ofbiz/order/quote/QuoteServices.xml" invoke="removeQuoteAdjustment" auth="true">
+                location="component://order/script/org/ofbiz/order/quote/QuoteServices.xml" invoke="removeQuoteAdjustment" auth="true">
         <description>Remove a QuoteAdjustment</description>
         <auto-attributes include="pk" mode="IN" optional="true"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="createQuoteWorkEffort" default-entity-name="QuoteWorkEffort" engine="simple" auth="true"
-            location="org/ofbiz/order/quote/QuoteServices.xml" invoke="createQuoteWorkEffort">
+            location="component://order/script/org/ofbiz/order/quote/QuoteServices.xml" invoke="createQuoteWorkEffort">
         <description>Creates a new QuoteWorkEffort record and WorkEffort record</description>
         <auto-attributes mode="IN" include="nonpk" optional="true"/>
         <auto-attributes mode="INOUT" include="pk" optional="true"/>
@@ -189,26 +189,26 @@
         <override name="quoteId" optional="false"/>
     </service>
     <service name="deleteQuoteWorkEffort" default-entity-name="QuoteWorkEffort" engine="simple" auth="true"
-            location="org/ofbiz/order/quote/QuoteServices.xml" invoke="deleteQuoteWorkEffort">
+            location="component://order/script/org/ofbiz/order/quote/QuoteServices.xml" invoke="deleteQuoteWorkEffort">
         <description>Creates a new QuoteWorkEffort record</description>
         <auto-attributes mode="IN" include="pk" optional="false"/>
     </service>
     <service name="createQuoteFromCart" engine="simple" auth="true"
-            location="org/ofbiz/order/quote/QuoteServices.xml" invoke="createQuoteFromCart">
+            location="component://order/script/org/ofbiz/order/quote/QuoteServices.xml" invoke="createQuoteFromCart">
         <description>Creates a new quote from a shopping cart</description>
         <attribute name="cart" type="org.ofbiz.order.shoppingcart.ShoppingCart" mode="IN" optional="false"/>
         <attribute name="applyStorePromotions" type="String" mode="IN" optional="true"/>
         <attribute name="quoteId" type="String" mode="OUT" optional="false"/>
     </service>
     <service name="createQuoteFromShoppingList" engine="simple" auth="true"
-            location="org/ofbiz/order/quote/QuoteServices.xml" invoke="createQuoteFromShoppingList">
+            location="component://order/script/org/ofbiz/order/quote/QuoteServices.xml" invoke="createQuoteFromShoppingList">
         <description>Creates a new quote from a shopping list</description>
         <attribute name="shoppingListId" type="String" mode="IN" optional="false"/>
         <attribute name="applyStorePromotions" type="String" mode="IN" optional="true"/>
         <attribute name="quoteId" type="String" mode="OUT" optional="false"/>
     </service>
     <service name="createQuoteFromCustRequest" engine="simple" auth="true"
-            location="org/ofbiz/order/quote/QuoteServices.xml" invoke="createQuoteFromCustRequest">
+            location="component://order/script/org/ofbiz/order/quote/QuoteServices.xml" invoke="createQuoteFromCustRequest">
         <description>Creates a new quote from a customer request</description>
         <attribute name="custRequestId" type="String" mode="IN" optional="false"/>
         <attribute name="quoteTypeId" type="String" mode="IN" optional="true"/>

Modified: ofbiz/trunk/applications/order/servicedef/services_request.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/servicedef/services_request.xml?rev=755936&r1=755935&r2=755936&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/servicedef/services_request.xml (original)
+++ ofbiz/trunk/applications/order/servicedef/services_request.xml Thu Mar 19 11:36:53 2009
@@ -26,7 +26,7 @@
 
     <!-- Customer Request Services -->
     <service name="custRequestPermissionCheck" engine="simple"
-            location="org/ofbiz/order/request/CustRequestServices.xml" invoke="custRequestPermissionCheck">
+            location="component://order/script/org/ofbiz/order/request/CustRequestServices.xml" invoke="custRequestPermissionCheck">
         <description>
             Performs a security check for CustRequest. The user, if enters a request for someone else,
             must have one of the base ORDERMGR_CRQ CRUD+ADMIN permissions.
@@ -35,7 +35,7 @@
         <attribute name="fromPartyId" type="String" mode="IN" optional="true"/>
     </service>
     <service name="createCustRequest" engine="simple" default-entity-name="CustRequest"
-            location="org/ofbiz/order/request/CustRequestServices.xml" invoke="createCustRequest" auth="true">
+            location="component://order/script/org/ofbiz/order/request/CustRequestServices.xml" invoke="createCustRequest" auth="true">
         <description>Create a custRequest record and optionally create a custRequest item.</description>
         <permission-service service-name="custRequestPermissionCheck" main-action="CREATE"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
@@ -44,7 +44,7 @@
         <auto-attributes include="all" mode="IN" entity-name="CustRequestItem" optional="true"/>
     </service>
     <service name="updateCustRequest" engine="simple" default-entity-name="CustRequest"
-            location="org/ofbiz/order/request/CustRequestServices.xml" invoke="updateCustRequest" auth="true">
+            location="component://order/script/org/ofbiz/order/request/CustRequestServices.xml" invoke="updateCustRequest" auth="true">
         <description>Update a custRequest record</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
@@ -52,7 +52,7 @@
     </service>
 
     <service name="createCustRequestAttribute" engine="simple"
-            location="org/ofbiz/order/request/CustRequestServices.xml" invoke="createCustRequestAttribute" auth="true">
+            location="component://order/script/org/ofbiz/order/request/CustRequestServices.xml" invoke="createCustRequestAttribute" auth="true">
         <description>Create CustRequestAttribute record</description>
         <attribute name="custRequestId" type="String" mode="IN" optional="false"/>
         <attribute name="attrName" type="String" mode="IN" optional="false"/>
@@ -60,7 +60,7 @@
     </service>
 
    <service name="updateCustRequestAttribute" engine="simple"
-            location="org/ofbiz/order/request/CustRequestServices.xml" invoke="updateCustRequestAttribute" auth="true">
+            location="component://order/script/org/ofbiz/order/request/CustRequestServices.xml" invoke="updateCustRequestAttribute" auth="true">
         <description>Update CustRequestAttribute record</description>
         <attribute name="custRequestId" type="String" mode="IN" optional="false"/>
         <attribute name="attrName" type="String" mode="IN" optional="false"/>
@@ -68,20 +68,20 @@
     </service>
 
     <service name="createCustRequestItem" engine="simple" default-entity-name="CustRequestItem"
-            location="org/ofbiz/order/request/CustRequestServices.xml" invoke="createCustRequestItem" auth="true">
+            location="component://order/script/org/ofbiz/order/request/CustRequestServices.xml" invoke="createCustRequestItem" auth="true">
         <description>Create a CustRequestItem record</description>
         <auto-attributes include="pk" mode="INOUT" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
         <override name="custRequestItemSeqId" optional="true"/>
     </service>
     <service name="updateCustRequestItem" engine="simple" default-entity-name="CustRequestItem"
-            location="org/ofbiz/order/request/CustRequestServices.xml" invoke="updateCustRequestItem" auth="true">
+            location="component://order/script/org/ofbiz/order/request/CustRequestServices.xml" invoke="updateCustRequestItem" auth="true">
         <description>Update a CustRequestItem record</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="copyCustRequestItem" default-entity-name="CustRequestItem" engine="simple"
-                location="org/ofbiz/order/request/CustRequestServices.xml" invoke="copyCustRequestItem" auth="true">
+                location="component://order/script/org/ofbiz/order/request/CustRequestServices.xml" invoke="copyCustRequestItem" auth="true">
         <description>Copy a CustRequest</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
@@ -91,39 +91,39 @@
     </service>
 
     <service name="createCustRequestParty" engine="simple" default-entity-name="CustRequestParty"
-            location="org/ofbiz/order/request/CustRequestServices.xml" invoke="createCustRequestParty" auth="true">
+            location="component://order/script/org/ofbiz/order/request/CustRequestServices.xml" invoke="createCustRequestParty" auth="true">
         <description>Create a CustRequestParty record</description>
         <auto-attributes mode="IN" include="pk" optional="false"/>
         <auto-attributes mode="IN" include="nonpk" optional="true"/>
         <override name="fromDate" mode="IN" type="Timestamp" optional="true"/>
     </service>
     <service name="updateCustRequestParty" engine="simple" default-entity-name="CustRequestParty"
-            location="org/ofbiz/order/request/CustRequestServices.xml" invoke="updateCustRequestParty" auth="true">
+            location="component://order/script/org/ofbiz/order/request/CustRequestServices.xml" invoke="updateCustRequestParty" auth="true">
         <description>Update CustRequestParty record</description>
         <auto-attributes mode="IN" include="pk" optional="true"/>
         <auto-attributes mode="IN" include="nonpk" optional="true"/>
     </service>
     <service name="deleteCustRequestParty" engine="simple" default-entity-name="CustRequestParty"
-            location="org/ofbiz/order/request/CustRequestServices.xml" invoke="deleteCustRequestParty" auth="true">
+            location="component://order/script/org/ofbiz/order/request/CustRequestServices.xml" invoke="deleteCustRequestParty" auth="true">
         <description>Delete a CustRequestParty record</description>
         <auto-attributes mode="IN" include="pk" optional="false"/>
     </service>
     <service name="createCustRequestNote" engine="simple"
-            location="org/ofbiz/order/request/CustRequestServices.xml" invoke="createCustRequestNote" auth="true">
+            location="component://order/script/org/ofbiz/order/request/CustRequestServices.xml" invoke="createCustRequestNote" auth="true">
         <description>Create a note for a CustRequest</description>
         <attribute name="custRequestId" type="String" mode="IN" optional="false"/>
         <attribute name="noteInfo" type="String" mode="IN" optional="false"/>
         <attribute name="noteId" type="String" mode="OUT" optional="false"/>
     </service>
     <service name="updateCustRequestNote" engine="simple"
-            location="org/ofbiz/order/request/CustRequestServices.xml" invoke="updateCustRequestNote" auth="true">
+            location="component://order/script/org/ofbiz/order/request/CustRequestServices.xml" invoke="updateCustRequestNote" auth="true">
         <description>Update CustRequest Note</description>
         <attribute name="custRequestId" type="String" mode="IN" optional="false"/>
         <attribute name="noteId" type="String" mode="IN" optional="false"/>
         <attribute name="noteInfo" type="String" mode="IN" optional="true"/>
     </service>
     <service name="createCustRequestItemNote" engine="simple"
-            location="org/ofbiz/order/request/CustRequestServices.xml" invoke="createCustRequestItemNote" auth="true">
+            location="component://order/script/org/ofbiz/order/request/CustRequestServices.xml" invoke="createCustRequestItemNote" auth="true">
         <description>Create a note for a CustRequestItem</description>
         <attribute name="custRequestId" type="String" mode="IN" optional="false"/>
         <attribute name="custRequestItemSeqId" type="String" mode="IN" optional="false"/>
@@ -131,20 +131,20 @@
         <attribute name="noteId" type="String" mode="OUT" optional="false"/>
     </service>
     <service name="createCustRequestFromCart" engine="simple" auth="true"
-            location="org/ofbiz/order/request/CustRequestServices.xml" invoke="createCustRequestFromCart">
+            location="component://order/script/org/ofbiz/order/request/CustRequestServices.xml" invoke="createCustRequestFromCart">
         <description>Creates a new request from a shopping cart</description>
         <attribute name="cart" type="org.ofbiz.order.shoppingcart.ShoppingCart" mode="IN" optional="false"/>
         <attribute name="custRequestName" type="String" mode="IN" optional="true"/>
         <attribute name="custRequestId" type="String" mode="OUT" optional="false"/>
     </service>
     <service name="createCustRequestFromShoppingList" engine="simple" auth="true"
-            location="org/ofbiz/order/request/CustRequestServices.xml" invoke="createCustRequestFromShoppingList">
+            location="component://order/script/org/ofbiz/order/request/CustRequestServices.xml" invoke="createCustRequestFromShoppingList">
         <description>Creates a new quote from a shopping list</description>
         <attribute name="shoppingListId" type="String" mode="IN" optional="false"/>
         <attribute name="custRequestId" type="String" mode="OUT" optional="false"/>
     </service>
     <service name="createCustRequestStatus" engine="simple" auth="true"
-            location="org/ofbiz/order/request/CustRequestServices.xml" invoke="createCustRequestStatus">
+            location="component://order/script/org/ofbiz/order/request/CustRequestServices.xml" invoke="createCustRequestStatus">
         <description>Creates a CustRequestStatus entry, which is a history of CustRequest status change.</description>
         <attribute name="statusId" type="String" mode="IN" optional="false"/>
         <attribute name="custRequestId" type="String" mode="IN" optional="false"/>
@@ -155,20 +155,20 @@
 
     <!-- Services for finding Associated CustRequests -->
     <service name="getCustRequestsByRole" engine="simple"
-            location="org/ofbiz/order/request/CustRequestServices.xml" invoke="getCustRequestsByRole" auth="true">
+            location="component://order/script/org/ofbiz/order/request/CustRequestServices.xml" invoke="getCustRequestsByRole" auth="true">
         <description>Get CustRequests Associated By Role</description>
         <attribute name="roleTypeId" type="String" mode="IN" optional="true"/>
         <attribute name="custRequestAndRoles" type="java.util.List" mode="OUT" optional="false"/>
     </service>
     <service name="setCustRequestStatus" engine="simple"
-            location="org/ofbiz/order/request/CustRequestServices.xml" invoke="setCustRequestStatus" auth="true">
+            location="component://order/script/org/ofbiz/order/request/CustRequestServices.xml" invoke="setCustRequestStatus" auth="true">
         <description>Set the Customer Request  Status</description>
         <attribute name="custRequestId" type="String" mode="IN" optional="false"/>
         <attribute name="statusId" type="String" mode="IN" optional="false"/>
         <attribute name="oldStatusId" type="String" mode="OUT" optional="true"/>
     </service>
     <service name="createCustRequestFromCommEvent" engine="simple" default-entity-name="CommunicationEvent"
-            location="org/ofbiz/order/request/CustRequestServices.xml" invoke="createCustRequestFromCommEvent" auth="true">
+            location="component://order/script/org/ofbiz/order/request/CustRequestServices.xml" invoke="createCustRequestFromCommEvent" auth="true">
         <description>Create a Customer request from a commEvent(email)</description>
         <auto-attributes mode="IN" include="pk" optional="false"/>
         <auto-attributes mode="IN" include="nonpk" optional="true"/>
@@ -179,7 +179,7 @@
     
     <!-- custRequest content services -->
     <service name="createCustRequestContent" engine="simple"
-        location="org/ofbiz/order/request/CustRequestServices.xml"
+        location="component://order/script/org/ofbiz/order/request/CustRequestServices.xml"
         invoke="createCustRequestContent"
         default-entity-name="CustRequestContent" auth="true">
         <description>Create a Customer Request Content</description>
@@ -188,7 +188,7 @@
         <override name="fromDate" optional="true" />
     </service>
     <service name="deleteCustRequestContent" engine="simple"
-        location="org/ofbiz/order/request/CustRequestServices.xml"
+        location="component://order/script/org/ofbiz/order/request/CustRequestServices.xml"
         invoke="deleteCustRequestContent"
         default-entity-name="CustRequestContent" auth="true">
         <description>Update a Customer Request Content</description>

Modified: ofbiz/trunk/applications/order/servicedef/services_requirement.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/servicedef/services_requirement.xml?rev=755936&r1=755935&r2=755936&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/servicedef/services_requirement.xml (original)
+++ ofbiz/trunk/applications/order/servicedef/services_requirement.xml Thu Mar 19 11:36:53 2009
@@ -35,7 +35,7 @@
         </auto-attributes>
     </service>
     <service name="createRequirement" engine="simple"
-            location="org/ofbiz/order/requirement/RequirementServices.xml" invoke="createRequirement">
+            location="component://order/script/org/ofbiz/order/requirement/RequirementServices.xml" invoke="createRequirement">
         <description>Create a new requirement</description>
         <implements service="requirementInterface"/>
         <attribute name="requirementTypeId" type="String" mode="IN" optional="false"/>
@@ -44,7 +44,7 @@
         <attribute name="requirementId" type="String" mode="INOUT" optional="true"/>
     </service>
     <service name="updateRequirement" engine="simple"
-            location="org/ofbiz/order/requirement/RequirementServices.xml" invoke="updateRequirement">
+            location="component://order/script/org/ofbiz/order/requirement/RequirementServices.xml" invoke="updateRequirement">
         <description>Update an existing requirement</description>
         <implements service="requirementInterface"/>
         <attribute name="requirementId" type="String" mode="IN" optional="false"/>
@@ -52,32 +52,32 @@
     </service>
 
     <service name="deleteRequirement" engine="simple"
-            location="org/ofbiz/order/requirement/RequirementServices.xml" invoke="deleteRequirement">
+            location="component://order/script/org/ofbiz/order/requirement/RequirementServices.xml" invoke="deleteRequirement">
         <description>Delete a requirement</description>
         <attribute name="requirementId" type="String" mode="IN" optional="false"/>
     </service>
 
     <service name="createRequirementRole" default-entity-name="RequirementRole" engine="simple" auth="true"
-            location="org/ofbiz/order/requirement/RequirementServices.xml" invoke="createRequirementRole">
+            location="component://order/script/org/ofbiz/order/requirement/RequirementServices.xml" invoke="createRequirementRole">
         <description>Creates a new party role for the requirement</description>
         <auto-attributes mode="IN" include="pk" optional="false"/>
         <auto-attributes mode="IN" include="nonpk" optional="true"/>
         <override name="fromDate" optional="true"/>
     </service>
     <service name="updateRequirementRole" default-entity-name="RequirementRole" engine="simple"
-                location="org/ofbiz/order/requirement/RequirementServices.xml" invoke="updateRequirementRole" auth="true">
+                location="component://order/script/org/ofbiz/order/requirement/RequirementServices.xml" invoke="updateRequirementRole" auth="true">
         <description>Update a RequirementRole</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="removeRequirementRole" engine="simple" default-entity-name="RequirementRole"
-                location="org/ofbiz/order/requirement/RequirementServices.xml" invoke="removeRequirementRole" auth="true">
+                location="component://order/script/org/ofbiz/order/requirement/RequirementServices.xml" invoke="removeRequirementRole" auth="true">
         <description>Remove a RequirementRole</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
 
     <service name="associatedRequirementWithRequestItem" engine="simple"
-            location="org/ofbiz/order/requirement/RequirementServices.xml" invoke="associateRequirementWithRequestItem">
+            location="component://order/script/org/ofbiz/order/requirement/RequirementServices.xml" invoke="associateRequirementWithRequestItem">
         <description>Creates a CustRequestItem/Requirement association</description>
         <attribute name="requirementId" type="String" mode="IN" optional="false"/>
         <attribute name="custRequestId" type="String" mode="IN" optional="false"/>
@@ -85,7 +85,7 @@
     </service>
 
     <service name="addRequirementTask" engine="simple"
-            location="org/ofbiz/order/requirement/RequirementServices.xml" invoke="addTaskToRequirement">
+            location="component://order/script/org/ofbiz/order/requirement/RequirementServices.xml" invoke="addTaskToRequirement">
         <description>Associate an existing task w/ a requirement</description>
         <attribute name="requirementId" type="String" mode="IN" optional="false"/>
         <attribute name="workEffortId" type="String" mode="IN" optional="false"/>
@@ -106,12 +106,12 @@
         <attribute mode="OUT" name="amountTotal" type="BigDecimal" optional="true"/>
     </service>
     <service name="createOrderRequirementCommitment" engine="simple" auth="true"
-        location="org/ofbiz/order/order/OrderServices.xml" invoke="createOrderRequirementCommitment">
+        location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="createOrderRequirementCommitment">
         <auto-attributes entity-name="OrderRequirementCommitment" include="pk" mode="IN" optional="false"/>
         <auto-attributes entity-name="OrderRequirementCommitment" include="nonpk" mode="IN" optional="true"/>
     </service>
     <service name="checkCreateOrderRequirement" engine="simple" auth="true"
-            location="org/ofbiz/order/order/OrderServices.xml" invoke="checkCreateOrderRequirement">
+            location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="checkCreateOrderRequirement">
         <description>Create OrderRequirementCommitment and Requirement for items with automatic requirement upon ordering</description>
         <attribute name="orderId" type="String" mode="IN" optional="false"/>
         <attribute name="orderItemSeqId" type="String" mode="IN" optional="false"/>
@@ -120,7 +120,7 @@
         <attribute name="requirementId" type="String" mode="OUT" optional="true"/>
     </service>
     <service name="checkCreateStockRequirementQoh" engine="simple" auth="true" default-entity-name="ItemIssuance"
-            location="org/ofbiz/order/order/OrderServices.xml" invoke="checkCreateStockRequirementQoh">
+            location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="checkCreateStockRequirementQoh">
         <description>Create a Product Requirement based on QOH inventory</description>
         <auto-attributes include="pk" mode="IN" optional="true"/>
         <auto-attributes include="nonpk" mode="IN" optional="true">
@@ -129,7 +129,7 @@
         <attribute name="requirementId" type="String" mode="OUT" optional="true"/>
     </service>
     <service name="checkCreateStockRequirementAtp" engine="simple" auth="true"
-            location="org/ofbiz/order/order/OrderServices.xml" invoke="checkCreateStockRequirementAtp">
+            location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="checkCreateStockRequirementAtp">
         <description>Create a Product Requirement based on ATP inventory</description>
         <attribute name="orderId" type="String" mode="IN" optional="false"/>
         <attribute name="shipGroupSeqId" type="String" mode="IN" optional="false"/>
@@ -140,7 +140,7 @@
         <attribute name="requirementId" type="String" mode="OUT" optional="true"/>
     </service>
     <service name="createRequirementFromItemATP" engine="simple" auth="true"
-            location="org/ofbiz/order/order/OrderServices.xml" invoke="createRequirementFromItemATP">
+            location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="createRequirementFromItemATP">
         <description>Create OrderRequirementCommitment and Requirement for items with requirement based on ATP stock levels</description>
         <attribute name="orderId" type="String" mode="IN" optional="false"/>
         <attribute name="shipGroupSeqId" type="String" mode="IN" optional="false"/>
@@ -152,7 +152,7 @@
     </service>
 
     <service name="checkCreateProductRequirementForFacility" engine="simple" auth="true"
-            location="org/ofbiz/order/order/OrderServices.xml" invoke="checkCreateProductRequirementForFacility">
+            location="component://order/script/org/ofbiz/order/order/OrderServices.xml" invoke="checkCreateProductRequirementForFacility">
         <description>Create Requirements for all the products in a facility with QOH under the minimum stock level</description>
         <attribute name="facilityId" type="String" mode="IN" optional="false"/>
         <attribute name="defaultRequirementMethodId" type="String" mode="IN" optional="true"/>
@@ -166,13 +166,13 @@
     </service>
 
     <service name="autoAssignRequirementToSupplier" engine="simple" auth="true"
-            location="org/ofbiz/order/requirement/RequirementServices.xml" invoke="autoAssignRequirementToSupplier">
+            location="component://order/script/org/ofbiz/order/requirement/RequirementServices.xml" invoke="autoAssignRequirementToSupplier">
         <description>If the requirement is a product requirement (purchasing) try to assign it to the primary supplier</description>
         <attribute name="requirementId" type="String" mode="IN" optional="false"/>
     </service>
 
     <service name="createTransferFromRequirement" engine="simple" auth="true"
-            location="org/ofbiz/order/requirement/RequirementServices.xml" invoke="createTransferFromRequirement">
+            location="component://order/script/org/ofbiz/order/requirement/RequirementServices.xml" invoke="createTransferFromRequirement">
         <description>Create the inventory transfers required to fulfill the requirement.</description>
         <attribute mode="IN" name="requirementId" optional="false" type="String"/>
         <attribute mode="IN" name="fromFacilityId" optional="false" type="String"/>

Modified: ofbiz/trunk/applications/order/servicedef/services_return.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/servicedef/services_return.xml?rev=755936&r1=755935&r2=755936&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/servicedef/services_return.xml (original)
+++ ofbiz/trunk/applications/order/servicedef/services_return.xml Thu Mar 19 11:36:53 2009
@@ -26,7 +26,7 @@
 
     <!-- Order Return Services -->
     <service name="quickReturnOrder" engine="simple"
-            location="org/ofbiz/order/order/OrderReturnServices.xml" invoke="quickReturnFromOrder">
+            location="component://order/script/org/ofbiz/order/order/OrderReturnServices.xml" invoke="quickReturnFromOrder">
         <description>Quick Return Order</description>
         <attribute name="orderId" type="String" mode="IN" optional="false"/>
         <attribute name="returnReasonId" type="String" mode="IN" optional="true"/>
@@ -36,28 +36,28 @@
         <attribute name="returnId" type="String" mode="OUT" optional="false"/>
     </service>
     <service name="createReturnHeader" default-entity-name="ReturnHeader" engine="simple"
-            location="org/ofbiz/order/order/OrderReturnServices.xml" invoke="createReturnHeader">
+            location="component://order/script/org/ofbiz/order/order/OrderReturnServices.xml" invoke="createReturnHeader">
         <description>Create a new ReturnHeader</description>
         <auto-attributes include="pk" mode="OUT" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
         <override name="returnHeaderTypeId" optional="false"/>
     </service>
     <service name="updateReturnHeader" default-entity-name="ReturnHeader" engine="simple"
-            location="org/ofbiz/order/order/OrderReturnServices.xml" invoke="updateReturnHeader">
+            location="component://order/script/org/ofbiz/order/order/OrderReturnServices.xml" invoke="updateReturnHeader">
         <description>Update a ReturnHeader</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
         <attribute name="currentStatusId" type="String" mode="OUT" optional="false"/>
     </service>
     <service name="createReturnItemBilling" engine="simple" default-entity-name="ReturnItemBilling"
-            location="org/ofbiz/order/order/OrderReturnServices.xml" invoke="createReturnItemBilling">
+            location="component://order/script/org/ofbiz/order/order/OrderReturnServices.xml" invoke="createReturnItemBilling">
         <description>Create a new return item billing record</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
 
     <service name="createReturnItem" engine="simple"
-            location="org/ofbiz/order/order/OrderReturnServices.xml" invoke="createReturnItem">
+            location="component://order/script/org/ofbiz/order/order/OrderReturnServices.xml" invoke="createReturnItem">
         <description>Create a new ReturnItem in the RETURN_REQUESTED status, based on returnableQuantity and returnablePrice from the
                      getReturnableQuantity service.  This can be called by the customer to request a return for himself or by a user with
                      ORDERMGR_CREATE, but, if the former, the returnPrice will be overriden by the returnablePrice from getReturnableQuantity.</description>
@@ -74,26 +74,26 @@
         <override name="returnQuantity" optional="false"/>        
     </service>
     <service name="updateReturnItem" engine="simple" default-entity-name="ReturnItem"
-            location="org/ofbiz/order/order/OrderReturnServices.xml" invoke="updateReturnItem">
+            location="component://order/script/org/ofbiz/order/order/OrderReturnServices.xml" invoke="updateReturnItem">
         <description>Update a ReturnItem and related adjustments</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
         <attribute name="currentStatusId" type="String" mode="OUT" optional="false"/>
     </service>
     <service name="updateReturnItemsStatus" engine="simple"
-            location="org/ofbiz/order/order/OrderReturnServices.xml" invoke="updateReturnItemsStatus">
+            location="component://order/script/org/ofbiz/order/order/OrderReturnServices.xml" invoke="updateReturnItemsStatus">
         <description>Update ReturnItem(s) Status</description>
         <attribute name="returnId" type="String" mode="IN" optional="false"/>
         <attribute name="statusId" type="String" mode="IN" optional="false"/>
         <attribute name="currentStatusId" type="String" mode="IN" optional="false"/>
     </service>
     <service name="removeReturnItem" engine="simple"
-            location="org/ofbiz/order/order/OrderReturnServices.xml" invoke="removeReturnItem">
+            location="component://order/script/org/ofbiz/order/order/OrderReturnServices.xml" invoke="removeReturnItem">
         <description>Remove a ReturnItem and related adjustments</description>
         <auto-attributes entity-name="ReturnItem" include="pk" mode="IN" optional="false"/>
     </service>
     <service name="createReturnItemResponse" engine="simple"
-            location="org/ofbiz/order/order/OrderReturnServices.xml" invoke="createReturnItemResponse">
+            location="component://order/script/org/ofbiz/order/order/OrderReturnServices.xml" invoke="createReturnItemResponse">
             <description>Creates a ReturnItemResponse record.</description>
         <auto-attributes entity-name="ReturnItemResponse" include="nonpk" mode="IN" optional="true"/>
         <attribute name="returnItemResponseId" type="String" mode="OUT" optional="false"/>
@@ -105,13 +105,13 @@
         <attribute name="returnItemResponseId" type="String" mode="IN" optional="false"/>
     </service>
     <service name="cancelReturnItems" engine="simple"
-            location="org/ofbiz/order/order/OrderReturnServices.xml" invoke="cancelReturnItems">
+            location="component://order/script/org/ofbiz/order/order/OrderReturnServices.xml" invoke="cancelReturnItems">
         <description>Cancel ReturnItems and set their status to "RETURN_CANCELLED"</description>
         <attribute name="returnId" type="String" mode="IN" optional="false"/>
     </service>
 
     <service name="cancelReplacementOrderItems" engine="simple"
-            location="org/ofbiz/order/order/OrderReturnServices.xml" invoke="cancelReplacementOrderItems">
+            location="component://order/script/org/ofbiz/order/order/OrderReturnServices.xml" invoke="cancelReplacementOrderItems">
         <description>Cancel the associated OrderItems of the replacement order, if any.</description>
         <auto-attributes entity-name="ReturnItem" include="pk" mode="IN" optional="false"/>
     </service>
@@ -229,17 +229,17 @@
         <attribute name="returnTypeId" type="String" mode="IN" optional="false"/>
     </service>
     <service name="processWaitReplacementReturn" engine="simple" auth="true"
-            location="org/ofbiz/order/order/OrderReturnServices.xml" invoke="processWaitReplacementReturn">
+            location="component://order/script/org/ofbiz/order/order/OrderReturnServices.xml" invoke="processWaitReplacementReturn">
         <description>Process the replacements in a wait return</description>
         <attribute name="returnId" type="String" mode="IN" optional="false"/>
     </service>
     <service name="processCrossShipReplacementReturn" engine="simple" auth="true"
-            location="org/ofbiz/order/order/OrderReturnServices.xml" invoke="processCrossShipReplacementReturn">
+            location="component://order/script/org/ofbiz/order/order/OrderReturnServices.xml" invoke="processCrossShipReplacementReturn">
         <description>Process the replacements in a cross-ship return</description>
         <attribute name="returnId" type="String" mode="IN" optional="false"/>
     </service>
     <service name="processRepairReplacementReturn" engine="simple" auth="true"
-            location="org/ofbiz/order/order/OrderReturnServices.xml" invoke="processRepairReplacementReturn">
+            location="component://order/script/org/ofbiz/order/order/OrderReturnServices.xml" invoke="processRepairReplacementReturn">
         <description>Process the replacements in a repair return</description>
         <attribute name="returnId" type="String" mode="IN" optional="false"/>
     </service>
@@ -251,7 +251,7 @@
 
     <!-- other return services -->
     <service name="updateReturnStatusFromReceipt" engine="simple"
-            location="org/ofbiz/order/order/OrderReturnServices.xml" invoke="updateReturnStatusFromReceipt">
+            location="component://order/script/org/ofbiz/order/order/OrderReturnServices.xml" invoke="updateReturnStatusFromReceipt">
         <description>Update return/item status when items have been received</description>
         <attribute name="returnId" type="String" mode="IN" optional="false"/>
         <attribute name="returnHeaderStatus" type="String" mode="OUT" optional="false"/>
@@ -290,13 +290,13 @@
     </service>
 
     <service name="createReturnItemShipment" engine="simple"
-            location="org/ofbiz/order/order/OrderReturnServices.xml" invoke="createReturnItemShipment">
+            location="component://order/script/org/ofbiz/order/order/OrderReturnServices.xml" invoke="createReturnItemShipment">
         <description>Create a new ReturnItemShipment</description>
         <auto-attributes entity-name="ReturnItemShipment" include="all" mode="IN" optional="false"/>
     </service>
     
     <service name="getStatusItemsForReturn" engine="simple"
-            location="org/ofbiz/order/order/OrderReturnServices.xml" invoke="getStatusItemsForReturn">
+            location="component://order/script/org/ofbiz/order/order/OrderReturnServices.xml" invoke="getStatusItemsForReturn">
         <description>Get the return status associated with customer/vendor return</description>
         <attribute name="returnHeaderTypeId" type="String" mode="IN" optional="false"/>
         <attribute name="statusItems" type="List" mode="OUT" optional="false"/>

Modified: ofbiz/trunk/applications/order/servicedef/services_shoppinglist.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/servicedef/services_shoppinglist.xml?rev=755936&r1=755935&r2=755936&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/servicedef/services_shoppinglist.xml (original)
+++ ofbiz/trunk/applications/order/servicedef/services_shoppinglist.xml Thu Mar 19 11:36:53 2009
@@ -31,26 +31,26 @@
         <attribute name="shippingMethodString" type="String" mode="IN" optional="true"/>
     </service>
     <service name="createShoppingList" engine="simple" auth="true"
-            location="org/ofbiz/order/shoppinglist/ShoppingListServices.xml" invoke="createShoppingList">
+            location="component://order/script/org/ofbiz/order/shoppinglist/ShoppingListServices.xml" invoke="createShoppingList">
         <description>Create a shopping list entity</description>
         <implements service="createShoppingListRecurrence"/>
         <implements service="shoppingListInterface"/>
         <attribute name="shoppingListId" type="String" mode="OUT" optional="false"/>
     </service>
     <service name="updateShoppingList" engine="simple" auth="true"
-            location="org/ofbiz/order/shoppinglist/ShoppingListServices.xml" invoke="updateShoppingList">
+            location="component://order/script/org/ofbiz/order/shoppinglist/ShoppingListServices.xml" invoke="updateShoppingList">
         <description>Update a shopping list entity</description>
         <implements service="createShoppingListRecurrence"/>
         <implements service="shoppingListInterface"/>
         <attribute name="shoppingListId" type="String" mode="IN" optional="false"/>
     </service>
     <service name="removeShoppingList" engine="simple" auth="true"
-            location="org/ofbiz/order/shoppinglist/ShoppingListServices.xml" invoke="removeShoppingList">
+            location="component://order/script/org/ofbiz/order/shoppinglist/ShoppingListServices.xml" invoke="removeShoppingList">
         <description>Remove a shopping list entity</description>
         <attribute name="shoppingListId" type="String" mode="IN" optional="false"/>
     </service>
     <service name="calculateShoppingListDeepTotalPrice" engine="simple" auth="true"
-            location="org/ofbiz/order/shoppinglist/ShoppingListServices.xml" invoke="calculateShoppingListDeepTotalPrice">
+            location="component://order/script/org/ofbiz/order/shoppinglist/ShoppingListServices.xml" invoke="calculateShoppingListDeepTotalPrice">
         <description>Remove a shopping list entity</description>
         <attribute name="shoppingListId" type="String" mode="IN" optional="false"/>
         <attribute name="prodCatalogId" type="String" mode="IN" optional="false"/>
@@ -108,7 +108,7 @@
         <attribute name="configId" type="String" mode="IN" optional="true"/>
     </service>
     <service name="createShoppingListItem" engine="simple" auth="true"
-            location="org/ofbiz/order/shoppinglist/ShoppingListServices.xml" invoke="createShoppingListItem">
+            location="component://order/script/org/ofbiz/order/shoppinglist/ShoppingListServices.xml" invoke="createShoppingListItem">
         <description>Create a shopping list item</description>
         <implements service="shoppingListItemInterface"/>
         <attribute name="shoppingListId" type="String" mode="INOUT" optional="true"/>
@@ -117,24 +117,24 @@
         <attribute name="shoppingListItemSeqId" type="String" mode="OUT" optional="false"/>
     </service>
     <service name="updateShoppingListItem" engine="simple" auth="true"
-            location="org/ofbiz/order/shoppinglist/ShoppingListServices.xml" invoke="updateShoppingListItem">
+            location="component://order/script/org/ofbiz/order/shoppinglist/ShoppingListServices.xml" invoke="updateShoppingListItem">
         <description>Update a shopping list item</description>
         <implements service="shoppingListItemInterface"/>
         <attribute name="shoppingListItemSeqId" type="String" mode="IN" optional="false"/>
     </service>
     <service name="removeShoppingListItem" engine="simple" auth="true"
-            location="org/ofbiz/order/shoppinglist/ShoppingListServices.xml" invoke="removeShoppingListItem">
+            location="component://order/script/org/ofbiz/order/shoppinglist/ShoppingListServices.xml" invoke="removeShoppingListItem">
         <description>Remove a shopping list item</description>
         <attribute name="shoppingListId" type="String" mode="IN" optional="false"/>
         <attribute name="shoppingListItemSeqId" type="String" mode="IN" optional="false"/>
     </service>
     <service name="addSuggestionsToShoppingList" engine="simple" auth="true"
-            location="org/ofbiz/order/shoppinglist/ShoppingListServices.xml" invoke="addSuggestionsToShoppingList">
+            location="component://order/script/org/ofbiz/order/shoppinglist/ShoppingListServices.xml" invoke="addSuggestionsToShoppingList">
         <description>Add suggestions to a shopping list</description>
         <attribute name="orderId" type="String" mode="IN" optional="false"/>
     </service>
     <service name="addDistinctShoppingListItem" engine="simple" auth="true"
-            location="org/ofbiz/order/shoppinglist/ShoppingListServices.xml" invoke="addDistinctShoppingListItem">
+            location="component://order/script/org/ofbiz/order/shoppinglist/ShoppingListServices.xml" invoke="addDistinctShoppingListItem">
         <description>Adds a shopping list item if one with the same productId does not exist</description>
         <implements service="shoppingListItemInterface"/>
         <attribute name="shoppingListId" type="String" mode="IN" optional="false"/>

Modified: ofbiz/trunk/applications/order/servicedef/services_upgrade.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/servicedef/services_upgrade.xml?rev=755936&r1=755935&r2=755936&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/servicedef/services_upgrade.xml (original)
+++ ofbiz/trunk/applications/order/servicedef/services_upgrade.xml Thu Mar 19 11:36:53 2009
@@ -24,7 +24,7 @@
     <vendor>OFBiz</vendor>
 
     <service name="migrateOrderItemAssociation" engine="simple"
-            location="org/ofbiz/order/UpgradeServices.xml" invoke="migrateOrderItemAssociation">
+            location="component://order/script/org/ofbiz/order/UpgradeServices.xml" invoke="migrateOrderItemAssociation">
         <description>
             Migrate data from OldOrderItemAssociation to OrderItemAssoc.
             Since revision 485144 (2006-12-10) the entity OrderItemAssociation has been deprecated.
@@ -35,7 +35,7 @@
         </description>
     </service>
     <service name="migrateCustRequestRole" engine="simple"
-            location="org/ofbiz/order/UpgradeServices.xml" invoke="migrateCustRequestRole">
+            location="component://order/script/org/ofbiz/order/UpgradeServices.xml" invoke="migrateCustRequestRole">
         <description>
             Migrate data from OldCustRequestRole to CustRequestParty.
             Since revision 684647 (2008-08-11) the entity CustRequestRole has been deprecated.