You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ar...@apache.org on 2016/09/07 01:07:37 UTC

svn commit: r1759529 - /ofbiz/trunk/applications/product/servicedef/services_shipment.xml

Author: arunpatidar
Date: Wed Sep  7 01:07:37 2016
New Revision: 1759529

URL: http://svn.apache.org/viewvc?rev=1759529&view=rev
Log:
Applied patch from jira issue - OFBIZ-8018 - Added CRUD services for CarrierShipmentBoxType entity . Thanks Rohit Koushal and Rishi Solanki for your contribution.

Modified:
    ofbiz/trunk/applications/product/servicedef/services_shipment.xml

Modified: ofbiz/trunk/applications/product/servicedef/services_shipment.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/servicedef/services_shipment.xml?rev=1759529&r1=1759528&r2=1759529&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/servicedef/services_shipment.xml (original)
+++ ofbiz/trunk/applications/product/servicedef/services_shipment.xml Wed Sep  7 01:07:37 2016
@@ -977,4 +977,19 @@ under the License.
         <attribute name="unitCost" type="String" mode="IN" optional="true"/>
         <attribute name="orderCurrencyUnitPrice" type="String" mode="IN" optional="true"/>
     </service>
+    <service name="createCarrierShipmentBoxType" default-entity-name="CarrierShipmentBoxType" engine="entity-auto" invoke="create" auth="true">
+        <description>Create a new Carrier Shipment Box Type Record</description>
+        <auto-attributes mode="IN" include="pk" optional="false"/>
+        <auto-attributes mode="IN" include="nonpk" optional="true"/>
+    </service>
+    <service name="updateCarrierShipmentBoxType" default-entity-name="CarrierShipmentBoxType" engine="entity-auto" invoke="update" auth="true">
+        <description>Update a Carrier Shipment Box Type</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="deleteCarrierShipmentBoxType" default-entity-name="CarrierShipmentBoxType" engine="entity-auto" invoke="delete" auth="true">
+        <description>Delete an existing Carrier Shipment Box Type Record</description>
+        <auto-attributes mode="IN" include="pk" optional="false"/>
+    </service>
+    
 </services>