Author: nmalin
Date: Mon Dec 11 08:23:25 2017
New Revision: 1817752
URL:
http://svn.apache.org/viewvc?rev=1817752&view=revLog:
Fixed: Add missing default-entity-name on create and delete definition service for CarrierShipmentMethod entity introduce at r1787822
Related to Convert ShipmentMethodType entity CRUD service to entity-auto (OFBIZ-8664)
Modified:
ofbiz/ofbiz-framework/trunk/applications/product/servicedef/services_shipment.xml
Modified: ofbiz/ofbiz-framework/trunk/applications/product/servicedef/services_shipment.xml
URL:
http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/applications/product/servicedef/services_shipment.xml?rev=1817752&r1=1817751&r2=1817752&view=diff==============================================================================
--- ofbiz/ofbiz-framework/trunk/applications/product/servicedef/services_shipment.xml (original)
+++ ofbiz/ofbiz-framework/trunk/applications/product/servicedef/services_shipment.xml Mon Dec 11 08:23:25 2017
@@ -25,7 +25,7 @@ under the License.
<version>1.0</version>
<!-- Shipment Services -->
- <service name="createCarrierShipmentMethod" engine="entity-auto" invoke="create" auth="true">
+ <service name="createCarrierShipmentMethod" engine="entity-auto" default-entity-name="CarrierShipmentMethod" invoke="create" auth="true">
<description>Creates A CarrierShipmentMethod</description>
<auto-attributes entity-name="CarrierShipmentMethod" include="pk" mode="IN" optional="false"/>
<auto-attributes entity-name="CarrierShipmentMethod" include="nonpk" mode="IN" optional="true"/>
@@ -35,7 +35,7 @@ under the License.
<auto-attributes entity-name="CarrierShipmentMethod" include="pk" mode="IN" optional="false"/>
<auto-attributes entity-name="CarrierShipmentMethod" include="nonpk" mode="IN" optional="true"/>
</service>
- <service name="deleteCarrierShipmentMethod" engine="entity-auto" invoke="delete" auth="true">
+ <service name="deleteCarrierShipmentMethod" engine="entity-auto" default-entity-name="CarrierShipmentMethod" invoke="delete" auth="true">
<description>Deletes A CarrierShipmentMethod</description>
<auto-attributes entity-name="CarrierShipmentMethod" include="pk" mode="IN" optional="false"/>
</service>