svn commit: r1760435 - in /ofbiz/trunk/applications: accounting/servicedef/services_finaccount.xml product/servicedef/services_facility.xml

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

svn commit: r1760435 - in /ofbiz/trunk/applications: accounting/servicedef/services_finaccount.xml product/servicedef/services_facility.xml

Arun Patidar-4
Author: arunpatidar
Date: Mon Sep 12 18:54:23 2016
New Revision: 1760435

URL: http://svn.apache.org/viewvc?rev=1760435&view=rev
Log:
Applied patch for "Added CRUD services for FacilityTypeAttr and FinAccountAttribute entities"  from  issues [OFBIZ-8019] [OFBIZ-8025]

Thanks Rahul Singh for your contribution.

Modified:
    ofbiz/trunk/applications/accounting/servicedef/services_finaccount.xml
    ofbiz/trunk/applications/product/servicedef/services_facility.xml

Modified: ofbiz/trunk/applications/accounting/servicedef/services_finaccount.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/servicedef/services_finaccount.xml?rev=1760435&r1=1760434&r2=1760435&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/servicedef/services_finaccount.xml (original)
+++ ofbiz/trunk/applications/accounting/servicedef/services_finaccount.xml Mon Sep 12 18:54:23 2016
@@ -519,4 +519,20 @@ under the License.
             location="component://accounting/minilang/finaccount/FinAccountServices.xml" invoke="autoFinAccountReconciliation" auth="true">
         <description>Auto Reconciled FinAccountTrans entries</description>
     </service>
+
+    <!-- FinAccountAttribute services -->
+    <service name="createFinAccountAttribute" default-entity-name="FinAccountAttribute" engine="entity-auto" invoke="create" auth="true">
+        <description>Create a FinAccountAttribute</description>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+        <auto-attributes include="pk" mode="INOUT" optional="false"/>
+    </service>
+    <service name="updateFinAccountAttribute" default-entity-name="FinAccountAttribute" engine="entity-auto" invoke="update" auth="true">
+        <description>Update a FinAccountAttribute</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="deleteFinAccountAttribute" default-entity-name="FinAccountAttribute" engine="entity-auto" invoke="delete" auth="true">
+        <description>Delete a FinAccountAttribute</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+    </service>
 </services>

Modified: ofbiz/trunk/applications/product/servicedef/services_facility.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/servicedef/services_facility.xml?rev=1760435&r1=1760434&r2=1760435&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/servicedef/services_facility.xml (original)
+++ ofbiz/trunk/applications/product/servicedef/services_facility.xml Mon Sep 12 18:54:23 2016
@@ -961,4 +961,20 @@ under the License.
         <description>Delete a FacilityGroupType</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
+    
+    <!-- FacilityTypeAttr services -->
+    <service name="createFacilityTypeAttr" default-entity-name="FacilityTypeAttr" engine="entity-auto" invoke="create" auth="true">
+        <description>Create a FacilityTypeAttr</description>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+        <auto-attributes include="pk" mode="INOUT" optional="false"/>
+    </service>
+    <service name="updateFacilityTypeAttr" default-entity-name="FacilityTypeAttr" engine="entity-auto" invoke="update" auth="true">
+        <description>Update a FacilityTypeAttr</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="removeFacilityTypeAttr" default-entity-name="FacilityTypeAttr" engine="entity-auto" invoke="delete" auth="true">
+        <description>Remove a FacilityTypeAttr</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+    </service>
 </services>