Hi Arun,
I think perhaps you missed the thread on commit format -> http://markmail.org/message/kyynfcsz44abz4zf to which we have a wiki -> https://cwiki.apache.org/confluence/display/OFBADMIN/OFBiz+commit+message+template So heads up for future commits, or if you'd like to put your feedback. Regards, Taher Alkhateeb On Mon, Sep 12, 2016 at 9:54 PM, <[hidden email]> wrote: > 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_fina > ccount.xml > URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accoun > ting/servicedef/services_finaccount.xml?rev=1760435&r1=17604 > 34&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_facilit > y.xml > URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/produc > t/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> > > > |
Free forum by Nabble | Edit this page |