Administrator
|
Hi Arun,
Are we sure about deleteProductStoreGroupRollup, is it not deleteProductStoreGroupRole instead? No updateUomGroup? Thanks Jacques Le 03/11/2016 à 21:30, [hidden email] a écrit : > Author: arunpatidar > Date: Thu Nov 3 20:30:52 2016 > New Revision: 1767965 > > URL: http://svn.apache.org/viewvc?rev=1767965&view=rev > Log: > Implemented: Added CRUD services for ProdConfItemContentType, ProductAssocType, UserPrefGroupType, WebPreferenceType, WorkEffortAssocAttribute, WorkEffortAssocType, WorkEffortAssocTypeAttr, WorkEffortBilling, WorkEffortContentType, WorkEffortGoodStandardType, WorkEffortPurposeType, WorkEffortType, WorkEffortTypeAttr, WorkReqFulfType, UomType, UomGroup, ProductPricePurpose, ProductPriceType, ProductStoreGroupRole and ProductStoreGroupRollup entities. > > (OFBIZ-8729)(OFBIZ-8730)(OFBIZ-8792)(OFBIZ-8793)(OFBIZ-8794)(OFBIZ-8795)(OFBIZ-8796)(OFBIZ-8797)(OFBIZ-8798)(OFBIZ-8799)(OFBIZ-8800)(OFBIZ-8801)(OFBIZ-8802)(OFBIZ-8803)(OFBIZ-8788)(OFBIZ-8789)(OFBIZ-8767) > (OFBIZ-8768)(OFBIZ-8769)(OFBIZ-8770) > > Thanks: Chinmay Patidar, Amit Gadaley and Rishi Solanki for the contribution. > > Modified: > ofbiz/trunk/applications/content/servicedef/services.xml > ofbiz/trunk/applications/order/servicedef/services_requirement.xml > ofbiz/trunk/applications/product/servicedef/services.xml > ofbiz/trunk/applications/product/servicedef/services_config.xml > ofbiz/trunk/applications/product/servicedef/services_price.xml > ofbiz/trunk/applications/product/servicedef/services_store.xml > ofbiz/trunk/applications/workeffort/servicedef/services_workeffort.xml > ofbiz/trunk/framework/common/servicedef/services.xml > > Modified: ofbiz/trunk/applications/content/servicedef/services.xml > URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/servicedef/services.xml?rev=1767965&r1=1767964&r2=1767965&view=diff > ============================================================================== > --- ofbiz/trunk/applications/content/servicedef/services.xml (original) > +++ ofbiz/trunk/applications/content/servicedef/services.xml Thu Nov 3 20:30:52 2016 > @@ -909,4 +909,19 @@ > <attribute name="contentId" mode="IN" type="String" optional="true"></attribute> > <attribute name="contentCreated" mode="OUT" type="String" optional="true"></attribute> > </service> > + > + <service name="createWebPreferenceType" engine="entity-auto" default-entity-name="WebPreferenceType" auth="true" invoke="create"> > + <description>Create WebPreferenceType record</description> > + <auto-attributes include="pk" mode="INOUT" optional="true"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="updateWebPreferenceType" engine="entity-auto" default-entity-name="WebPreferenceType" auth="true" invoke="update"> > + <description>Update WebPreferenceType record</description> > + <auto-attributes include="pk" mode="IN"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="deleteWebPreferenceType" engine="entity-auto" default-entity-name="WebPreferenceType" auth="true" invoke="delete"> > + <description>Delete ContentApproval record</description> > + <auto-attributes include="pk" mode="IN"/> > + </service> > </services> > > Modified: ofbiz/trunk/applications/order/servicedef/services_requirement.xml > URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/servicedef/services_requirement.xml?rev=1767965&r1=1767964&r2=1767965&view=diff > ============================================================================== > --- ofbiz/trunk/applications/order/servicedef/services_requirement.xml (original) > +++ ofbiz/trunk/applications/order/servicedef/services_requirement.xml Thu Nov 3 20:30:52 2016 > @@ -288,5 +288,20 @@ under the License. > <description>Delete a RequirementCustRequest record</description> > <auto-attributes mode="IN" include="pk"/> > </service> > + <!-- WorkReqFulfType services --> > + <service name="createWorkReqFulfType" default-entity-name="WorkReqFulfType" engine="entity-auto" invoke="create" auth="true"> > + <description>Create a WorkReqFulfType record</description> > + <auto-attributes mode="INOUT" include="pk" optional="true"/> > + <auto-attributes mode="IN" include="nonpk" optional="true"/> > + </service> > + <service name="updateWorkReqFulfType" default-entity-name="WorkReqFulfType" engine="entity-auto" invoke="update" auth="true"> > + <description>Update a WorkReqFulfType record</description> > + <auto-attributes mode="IN" include="pk"/> > + <auto-attributes mode="IN" include="nonpk" optional="true"/> > + </service> > + <service name="deleteWorkReqFulfType" default-entity-name="WorkReqFulfType" engine="entity-auto" invoke="delete" auth="true"> > + <description>Delete a WorkReqFulfType record</description> > + <auto-attributes mode="IN" include="pk"/> > + </service> > </services> > > > Modified: ofbiz/trunk/applications/product/servicedef/services.xml > URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/servicedef/services.xml?rev=1767965&r1=1767964&r2=1767965&view=diff > ============================================================================== > --- ofbiz/trunk/applications/product/servicedef/services.xml (original) > +++ ofbiz/trunk/applications/product/servicedef/services.xml Thu Nov 3 20:30:52 2016 > @@ -1722,4 +1722,19 @@ under the License. > <description>Delete ProdCatalogCategoryType Record</description> > <auto-attributes mode="IN" include="pk"/> > </service> > + > + <service name="createProductAssocType" default-entity-name="ProductAssocType" engine="entity-auto" invoke="create" auth="true"> > + <description>Create a ProductAssocType</description> > + <auto-attributes include="pk" mode="INOUT" optional="true"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="updateProductAssocType" default-entity-name="ProductAssocType" engine="entity-auto" invoke="update" auth="true"> > + <description>Update a ProductAssocType</description> > + <auto-attributes include="pk" mode="IN" optional="false"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="deleteProductAssocType" default-entity-name="ProductAssocType" engine="entity-auto" invoke="delete" auth="true"> > + <description>Delete a ProductAssocType</description> > + <auto-attributes include="pk" mode="IN" optional="false"/> > + </service> > </services> > > Modified: ofbiz/trunk/applications/product/servicedef/services_config.xml > URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/servicedef/services_config.xml?rev=1767965&r1=1767964&r2=1767965&view=diff > ============================================================================== > --- ofbiz/trunk/applications/product/servicedef/services_config.xml (original) > +++ ofbiz/trunk/applications/product/servicedef/services_config.xml Thu Nov 3 20:30:52 2016 > @@ -38,4 +38,19 @@ under the License. > <description>Delete an existing ConfigOptionProductOption Record</description> > <auto-attributes mode="IN" include="pk"/> > </service> > + > + <service name="createProdConfItemContentType" default-entity-name="ProdConfItemContentType" engine="entity-auto" invoke="create" auth="true"> > + <description>Create a ProdConfItemContentType</description> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + <auto-attributes include="pk" mode="INOUT" optional="true"/> > + </service> > + <service name="updateProdConfItemContentType" default-entity-name="ProdConfItemContentType" engine="entity-auto" invoke="update" auth="true"> > + <description>Update a ProdConfItemContentType</description> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + <auto-attributes include="pk" mode="IN" optional="false"/> > + </service> > + <service name="deleteProdConfItemContentType" default-entity-name="ProdConfItemContentType" engine="entity-auto" invoke="delete" auth="true"> > + <description>Delete a ProdConfItemContentType</description> > + <auto-attributes include="pk" mode="IN" optional="false"/> > + </service> > </services> > > Modified: ofbiz/trunk/applications/product/servicedef/services_price.xml > URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/servicedef/services_price.xml?rev=1767965&r1=1767964&r2=1767965&view=diff > ============================================================================== > --- ofbiz/trunk/applications/product/servicedef/services_price.xml (original) > +++ ofbiz/trunk/applications/product/servicedef/services_price.xml Thu Nov 3 20:30:52 2016 > @@ -53,4 +53,32 @@ under the License. > <description>Delete a SaleType record</description> > <auto-attributes include="pk" mode="IN"/> > </service> > + <service name="createProductPricePurpose" default-entity-name="ProductPricePurpose" engine="entity-auto" invoke="create" auth="true"> > + <description>Create a ProductPricePurpose</description> > + <auto-attributes include="pk" mode="INOUT" optional="true"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="updateProductPricePurpose" default-entity-name="ProductPricePurpose" engine="entity-auto" invoke="update" auth="true"> > + <description>Update a ProductPricePurpose</description> > + <auto-attributes include="pk" mode="IN" optional="false"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="deleteProductPricePurpose" default-entity-name="ProductPricePurpose" engine="entity-auto" invoke="delete" auth="true"> > + <description>Delete a ProductPricePurpose</description> > + <auto-attributes include="pk" mode="IN" optional="false"/> > + </service> > + <service name="createProductPriceType" default-entity-name="ProductPriceType" engine="entity-auto" invoke="create" auth="true"> > + <description>Create a ProductPriceType</description> > + <auto-attributes include="pk" mode="INOUT" optional="true"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="updateProductPriceType" default-entity-name="ProductPriceType" engine="entity-auto" invoke="update" auth="true"> > + <description>Update a ProductPriceType</description> > + <auto-attributes include="pk" mode="IN" optional="false"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="deleteProductPriceType" default-entity-name="ProductPriceType" engine="entity-auto" invoke="delete" auth="true"> > + <description>Delete a ProductPriceType</description> > + <auto-attributes include="pk" mode="IN" optional="false"/> > + </service> > </services> > > Modified: ofbiz/trunk/applications/product/servicedef/services_store.xml > URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/servicedef/services_store.xml?rev=1767965&r1=1767964&r2=1767965&view=diff > ============================================================================== > --- ofbiz/trunk/applications/product/servicedef/services_store.xml (original) > +++ ofbiz/trunk/applications/product/servicedef/services_store.xml Thu Nov 3 20:30:52 2016 > @@ -358,4 +358,17 @@ under the License. > location="component://product/minilang/product/store/ProductStoreServices.xml" invoke="productStoreGenericPermission"> > <implements service="permissionInterface"/> > </service> > + <service name="createProductStoreGroupRole" default-entity-name="ProductStoreGroupRole" engine="entity-auto" invoke="create" auth="true"> > + <description>Create a ProductStoreGroupRole</description> > + <auto-attributes include="pk" mode="INOUT" optional="false"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="deleteProductStoreGroupRole" default-entity-name="ProductStoreGroupRole" engine="entity-auto" invoke="delete" auth="true"> > + <description>Delete a ProductStoreGroupRole</description> > + <auto-attributes include="pk" mode="IN" optional="false"/> > + </service> > + <service name="deleteProductStoreGroupRollup" default-entity-name="ProductStoreGroupRollup" engine="entity-auto" invoke="delete" auth="true"> > + <description>Delete a ProductStoreGroupRollup</description> > + <auto-attributes include="pk" mode="IN" optional="false"/> > + </service> > </services> > > Modified: ofbiz/trunk/applications/workeffort/servicedef/services_workeffort.xml > URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/workeffort/servicedef/services_workeffort.xml?rev=1767965&r1=1767964&r2=1767965&view=diff > ============================================================================== > --- ofbiz/trunk/applications/workeffort/servicedef/services_workeffort.xml (original) > +++ ofbiz/trunk/applications/workeffort/servicedef/services_workeffort.xml Thu Nov 3 20:30:52 2016 > @@ -55,4 +55,144 @@ under the License. > <description>Delete a Deliverable Type record</description> > <auto-attributes include="pk" mode="IN"/> > </service> > + > + <!-- WorkEffortAssocAttribute Services --> > + <service name="createWorkEffortAssocAttribute" engine="entity-auto" invoke="create" default-entity-name="WorkEffortAssocAttribute" auth="true"> > + <description>Create a WorkEffortAssocAttribute record</description> > + <auto-attributes include="pk" mode="IN"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="updateWorkEffortAssocAttribute" engine="entity-auto" invoke="update" default-entity-name="WorkEffortAssocAttribute" auth="true"> > + <description>Update a WorkEffortAssocAttribute record</description> > + <auto-attributes include="pk" mode="IN"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="deleteWorkEffortAssocAttribute" engine="entity-auto" invoke="delete" default-entity-name="WorkEffortAssocAttribute" auth="true"> > + <description>Delete a WorkEffortAssocAttribute record</description> > + <auto-attributes include="pk" mode="IN"/> > + </service> > + > + <!-- WorkEffortAssocType Services --> > + <service name="createWorkEffortAssocType" engine="entity-auto" invoke="create" default-entity-name="WorkEffortAssocType" auth="true"> > + <description>Create a WorkEffortAssocType record</description> > + <auto-attributes include="pk" mode="INOUT" optional="true"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="updateWorkEffortAssocType" engine="entity-auto" invoke="update" default-entity-name="WorkEffortAssocType" auth="true"> > + <description>Update a WorkEffortAssocType record</description> > + <auto-attributes include="pk" mode="IN"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="deleteWorkEffortAssocType" engine="entity-auto" invoke="delete" default-entity-name="WorkEffortAssocType" auth="true"> > + <description>Delete a WorkEffortAssocType record</description> > + <auto-attributes include="pk" mode="IN"/> > + </service> > + > + <!-- WorkEffortAssocTypeAttr Services --> > + <service name="createWorkEffortAssocTypeAttr" engine="entity-auto" invoke="create" default-entity-name="WorkEffortAssocTypeAttr" auth="true"> > + <description>Create a WorkEffortAssocTypeAttr record</description> > + <auto-attributes include="pk" mode="IN"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="updateWorkEffortAssocTypeAttr" engine="entity-auto" invoke="update" default-entity-name="WorkEffortAssocTypeAttr" auth="true"> > + <description>Update a WorkEffortAssocTypeAttr record</description> > + <auto-attributes include="pk" mode="IN"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="deleteWorkEffortAssocTypeAttr" engine="entity-auto" invoke="delete" default-entity-name="WorkEffortAssocTypeAttr" auth="true"> > + <description>Delete a WorkEffortAssocTypeAttr record</description> > + <auto-attributes include="pk" mode="IN"/> > + </service> > + > + <!-- WorkEffortBilling Services --> > + <service name="createWorkEffortBilling" engine="entity-auto" invoke="create" default-entity-name="WorkEffortBilling" auth="true"> > + <description>Create a WorkEffortBilling record</description> > + <auto-attributes include="pk" mode="IN"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="updateWorkEffortBilling" engine="entity-auto" invoke="update" default-entity-name="WorkEffortBilling" auth="true"> > + <description>Update a WorkEffortBilling record</description> > + <auto-attributes include="pk" mode="IN"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="deleteWorkEffortBilling" engine="entity-auto" invoke="delete" default-entity-name="WorkEffortBilling" auth="true"> > + <description>Delete a WorkEffortBilling record</description> > + <auto-attributes include="pk" mode="IN"/> > + </service> > + > + <!-- WorkEffortContentType Services --> > + <service name="createWorkEffortContentType" engine="entity-auto" invoke="create" default-entity-name="WorkEffortContentType" auth="true"> > + <description>Create a WorkEffortContentType record</description> > + <auto-attributes include="pk" mode="INOUT" optional="true"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="updateWorkEffortContentType" engine="entity-auto" invoke="update" default-entity-name="WorkEffortContentType" auth="true"> > + <description>Update a WorkEffortContentType record</description> > + <auto-attributes include="pk" mode="IN"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="deleteWorkEffortContentType" engine="entity-auto" invoke="delete" default-entity-name="WorkEffortContentType" auth="true"> > + <description>Delete a WorkEffortContentType record</description> > + <auto-attributes include="pk" mode="IN"/> > + </service> > + <!-- WorkEffortGoodStandardType Services --> > + <service name="createWorkEffortGoodStandardType" engine="entity-auto" invoke="create" default-entity-name="WorkEffortGoodStandardType" auth="true"> > + <description>Create a WorkEffortGoodStandardType record</description> > + <auto-attributes include="pk" mode="INOUT" optional="true"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="updateWorkEffortGoodStandardType" engine="entity-auto" invoke="update" default-entity-name="WorkEffortGoodStandardType" auth="true"> > + <description>Update a WorkEffortGoodStandardType record</description> > + <auto-attributes include="pk" mode="IN"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="deleteWorkEffortGoodStandardType" engine="entity-auto" invoke="delete" default-entity-name="WorkEffortGoodStandardType" auth="true"> > + <description>Delete a WorkEffortGoodStandardType record</description> > + <auto-attributes include="pk" mode="IN"/> > + </service> > + <!-- WorkEffortPurposeType Services --> > + <service name="createWorkEffortPurposeType" engine="entity-auto" invoke="create" default-entity-name="WorkEffortPurposeType" auth="true"> > + <description>Create a WorkEffortPurposeType record</description> > + <auto-attributes include="pk" mode="INOUT" optional="true"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="updateWorkEffortPurposeType" engine="entity-auto" invoke="update" default-entity-name="WorkEffortPurposeType" auth="true"> > + <description>Update a WorkEffortPurposeType record</description> > + <auto-attributes include="pk" mode="IN"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="deleteWorkEffortPurposeType" engine="entity-auto" invoke="delete" default-entity-name="WorkEffortPurposeType" auth="true"> > + <description>Delete a WorkEffortPurposeType record</description> > + <auto-attributes include="pk" mode="IN"/> > + </service> > + <!-- WorkEffortType Services --> > + <service name="createWorkEffortType" engine="entity-auto" invoke="create" default-entity-name="WorkEffortType" auth="true"> > + <description>Create a WorkEffortType record</description> > + <auto-attributes include="pk" mode="INOUT" optional="true"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="updateWorkEffortType" engine="entity-auto" invoke="update" default-entity-name="WorkEffortType" auth="true"> > + <description>Update a WorkEffortType record</description> > + <auto-attributes include="pk" mode="IN"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="deleteWorkEffortType" engine="entity-auto" invoke="delete" default-entity-name="WorkEffortType" auth="true"> > + <description>Delete a WorkEffortType record</description> > + <auto-attributes include="pk" mode="IN"/> > + </service> > + <!-- WorkEffortTypeAttr Services --> > + <service name="createWorkEffortTypeAttr" engine="entity-auto" invoke="create" default-entity-name="WorkEffortTypeAttr" auth="true"> > + <description>Create a WorkEffortTypeAttr record</description> > + <auto-attributes include="pk" mode="IN"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="updateWorkEffortTypeAttr" engine="entity-auto" invoke="update" default-entity-name="WorkEffortTypeAttr" auth="true"> > + <description>Update a WorkEffortTypeAttr record</description> > + <auto-attributes include="pk" mode="IN"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="deleteWorkEffortTypeAttr" engine="entity-auto" invoke="delete" default-entity-name="WorkEffortTypeAttr" auth="true"> > + <description>Delete a WorkEffortTypeAttr record</description> > + <auto-attributes include="pk" mode="IN"/> > + </service> > </services> > > Modified: ofbiz/trunk/framework/common/servicedef/services.xml > URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/servicedef/services.xml?rev=1767965&r1=1767964&r2=1767965&view=diff > ============================================================================== > --- ofbiz/trunk/framework/common/servicedef/services.xml (original) > +++ ofbiz/trunk/framework/common/servicedef/services.xml Thu Nov 3 20:30:52 2016 > @@ -871,4 +871,42 @@ under the License. > <description>Delete a PeriodType</description> > <auto-attributes include="pk" mode="IN"/> > </service> > + > + <service name="createUserPrefGroupType" engine="entity-auto" invoke="create" default-entity-name="UserPrefGroupType" auth="true"> > + <description>Create a UserPrefGroupType</description> > + <auto-attributes include="pk" mode="INOUT" optional="true"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="updateUserPrefGroupType" engine="entity-auto" invoke="update" default-entity-name="UserPrefGroupType" auth="true"> > + <description>Update a UserPrefGroupType</description> > + <auto-attributes include="pk" mode="IN"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="deleteUserPrefGroupType" engine="entity-auto" invoke="delete" default-entity-name="UserPrefGroupType" auth="true"> > + <description>Delete a UserPrefGroupType</description> > + <auto-attributes include="pk" mode="IN"/> > + </service> > + <service name="createUomType" engine="entity-auto" invoke="create" default-entity-name="UomType" auth="true"> > + <description>Create UomType Record</description> > + <auto-attributes include="pk" mode="INOUT" optional="true"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="updateUomType" engine="entity-auto" invoke="update" default-entity-name="UomType" auth="true"> > + <description>Update UomType Record</description> > + <auto-attributes include="pk" mode="IN"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="deleteUomType" engine="entity-auto" invoke="delete" default-entity-name="UomType" auth="true"> > + <description>Delete UomType Record</description> > + <auto-attributes include="pk" mode="IN"/> > + </service> > + <service name="createUomGroup" engine="entity-auto" invoke="create" default-entity-name="UomGroup" auth="true"> > + <description>Create UomGroup record</description> > + <auto-attributes include="pk" mode="IN"/> > + <auto-attributes include="nonpk" mode="IN" optional="true"/> > + </service> > + <service name="deleteUomGroup" engine="entity-auto" invoke="delete" default-entity-name="UomGroup" auth="true"> > + <description>Delete UomGroup record</description> > + <auto-attributes include="pk" mode="IN"/> > + </service> > </services> > > > |
Hi Jacques,
I will have to cross check with given patch. I will look into this and fix accordingly. Thanks for reviewing. -- Thanks & Regards --- Arun Patidar Manager,Enterprise Software Development HotWax Mediawww.hotwaxsystems.com On Fri, Nov 4, 2016 at 2:49 PM, Jacques Le Roux < [hidden email]> wrote: > Hi Arun, > > Are we sure about deleteProductStoreGroupRollup, is it not > deleteProductStoreGroupRole instead? > > No updateUomGroup? > > Thanks > > Jacques > > > > Le 03/11/2016 à 21:30, [hidden email] a écrit : > >> Author: arunpatidar >> Date: Thu Nov 3 20:30:52 2016 >> New Revision: 1767965 >> >> URL: http://svn.apache.org/viewvc?rev=1767965&view=rev >> Log: >> Implemented: Added CRUD services for ProdConfItemContentType, >> ProductAssocType, UserPrefGroupType, WebPreferenceType, >> WorkEffortAssocAttribute, WorkEffortAssocType, WorkEffortAssocTypeAttr, >> WorkEffortBilling, WorkEffortContentType, WorkEffortGoodStandardType, >> WorkEffortPurposeType, WorkEffortType, WorkEffortTypeAttr, WorkReqFulfType, >> UomType, UomGroup, ProductPricePurpose, ProductPriceType, >> ProductStoreGroupRole and ProductStoreGroupRollup entities. >> >> (OFBIZ-8729)(OFBIZ-8730)(OFBIZ-8792)(OFBIZ-8793)(OFBIZ-8794) >> (OFBIZ-8795)(OFBIZ-8796)(OFBIZ-8797)(OFBIZ-8798)(OFBIZ-8799) >> (OFBIZ-8800)(OFBIZ-8801)(OFBIZ-8802)(OFBIZ-8803)(OFBIZ-8788) >> (OFBIZ-8789)(OFBIZ-8767) >> (OFBIZ-8768)(OFBIZ-8769)(OFBIZ-8770) >> >> Thanks: Chinmay Patidar, Amit Gadaley and Rishi Solanki for the >> contribution. >> >> Modified: >> ofbiz/trunk/applications/content/servicedef/services.xml >> ofbiz/trunk/applications/order/servicedef/services_requirement.xml >> ofbiz/trunk/applications/product/servicedef/services.xml >> ofbiz/trunk/applications/product/servicedef/services_config.xml >> ofbiz/trunk/applications/product/servicedef/services_price.xml >> ofbiz/trunk/applications/product/servicedef/services_store.xml >> ofbiz/trunk/applications/workeffort/servicedef/services_ >> workeffort.xml >> ofbiz/trunk/framework/common/servicedef/services.xml >> >> Modified: ofbiz/trunk/applications/content/servicedef/services.xml >> URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/conten >> t/servicedef/services.xml?rev=1767965&r1=1767964&r2=1767965&view=diff >> ============================================================ >> ================== >> --- ofbiz/trunk/applications/content/servicedef/services.xml (original) >> +++ ofbiz/trunk/applications/content/servicedef/services.xml Thu Nov 3 >> 20:30:52 2016 >> @@ -909,4 +909,19 @@ >> <attribute name="contentId" mode="IN" type="String" >> optional="true"></attribute> >> <attribute name="contentCreated" mode="OUT" type="String" >> optional="true"></attribute> >> </service> >> + >> + <service name="createWebPreferenceType" engine="entity-auto" >> default-entity-name="WebPreferenceType" auth="true" invoke="create"> >> + <description>Create WebPreferenceType record</description> >> + <auto-attributes include="pk" mode="INOUT" optional="true"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="updateWebPreferenceType" engine="entity-auto" >> default-entity-name="WebPreferenceType" auth="true" invoke="update"> >> + <description>Update WebPreferenceType record</description> >> + <auto-attributes include="pk" mode="IN"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="deleteWebPreferenceType" engine="entity-auto" >> default-entity-name="WebPreferenceType" auth="true" invoke="delete"> >> + <description>Delete ContentApproval record</description> >> + <auto-attributes include="pk" mode="IN"/> >> + </service> >> </services> >> >> Modified: ofbiz/trunk/applications/order/servicedef/services_requireme >> nt.xml >> URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/ >> servicedef/services_requirement.xml?rev=1767965&r1=1767964& >> r2=1767965&view=diff >> ============================================================ >> ================== >> --- ofbiz/trunk/applications/order/servicedef/services_requirement.xml >> (original) >> +++ ofbiz/trunk/applications/order/servicedef/services_requirement.xml >> Thu Nov 3 20:30:52 2016 >> @@ -288,5 +288,20 @@ under the License. >> <description>Delete a RequirementCustRequest >> record</description> >> <auto-attributes mode="IN" include="pk"/> >> </service> >> + <!-- WorkReqFulfType services --> >> + <service name="createWorkReqFulfType" default-entity-name="WorkReqFulfType" >> engine="entity-auto" invoke="create" auth="true"> >> + <description>Create a WorkReqFulfType record</description> >> + <auto-attributes mode="INOUT" include="pk" optional="true"/> >> + <auto-attributes mode="IN" include="nonpk" optional="true"/> >> + </service> >> + <service name="updateWorkReqFulfType" default-entity-name="WorkReqFulfType" >> engine="entity-auto" invoke="update" auth="true"> >> + <description>Update a WorkReqFulfType record</description> >> + <auto-attributes mode="IN" include="pk"/> >> + <auto-attributes mode="IN" include="nonpk" optional="true"/> >> + </service> >> + <service name="deleteWorkReqFulfType" default-entity-name="WorkReqFulfType" >> engine="entity-auto" invoke="delete" auth="true"> >> + <description>Delete a WorkReqFulfType record</description> >> + <auto-attributes mode="IN" include="pk"/> >> + </service> >> </services> >> >> Modified: ofbiz/trunk/applications/product/servicedef/services.xml >> URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/produc >> t/servicedef/services.xml?rev=1767965&r1=1767964&r2=1767965&view=diff >> ============================================================ >> ================== >> --- ofbiz/trunk/applications/product/servicedef/services.xml (original) >> +++ ofbiz/trunk/applications/product/servicedef/services.xml Thu Nov 3 >> 20:30:52 2016 >> @@ -1722,4 +1722,19 @@ under the License. >> <description>Delete ProdCatalogCategoryType Record</description> >> <auto-attributes mode="IN" include="pk"/> >> </service> >> + >> + <service name="createProductAssocType" default-entity-name="ProductAssocType" >> engine="entity-auto" invoke="create" auth="true"> >> + <description>Create a ProductAssocType</description> >> + <auto-attributes include="pk" mode="INOUT" optional="true"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="updateProductAssocType" default-entity-name="ProductAssocType" >> engine="entity-auto" invoke="update" auth="true"> >> + <description>Update a ProductAssocType</description> >> + <auto-attributes include="pk" mode="IN" optional="false"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="deleteProductAssocType" default-entity-name="ProductAssocType" >> engine="entity-auto" invoke="delete" auth="true"> >> + <description>Delete a ProductAssocType</description> >> + <auto-attributes include="pk" mode="IN" optional="false"/> >> + </service> >> </services> >> >> Modified: ofbiz/trunk/applications/product/servicedef/services_config.xml >> URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/produc >> t/servicedef/services_config.xml?rev=1767965&r1=1767964&r2= >> 1767965&view=diff >> ============================================================ >> ================== >> --- ofbiz/trunk/applications/product/servicedef/services_config.xml >> (original) >> +++ ofbiz/trunk/applications/product/servicedef/services_config.xml Thu >> Nov 3 20:30:52 2016 >> @@ -38,4 +38,19 @@ under the License. >> <description>Delete an existing ConfigOptionProductOption >> Record</description> >> <auto-attributes mode="IN" include="pk"/> >> </service> >> + >> + <service name="createProdConfItemContentType" >> default-entity-name="ProdConfItemContentType" engine="entity-auto" >> invoke="create" auth="true"> >> + <description>Create a ProdConfItemContentType</description> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + <auto-attributes include="pk" mode="INOUT" optional="true"/> >> + </service> >> + <service name="updateProdConfItemContentType" >> default-entity-name="ProdConfItemContentType" engine="entity-auto" >> invoke="update" auth="true"> >> + <description>Update a ProdConfItemContentType</description> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + <auto-attributes include="pk" mode="IN" optional="false"/> >> + </service> >> + <service name="deleteProdConfItemContentType" >> default-entity-name="ProdConfItemContentType" engine="entity-auto" >> invoke="delete" auth="true"> >> + <description>Delete a ProdConfItemContentType</description> >> + <auto-attributes include="pk" mode="IN" optional="false"/> >> + </service> >> </services> >> >> Modified: ofbiz/trunk/applications/product/servicedef/services_price.xml >> URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/produc >> t/servicedef/services_price.xml?rev=1767965&r1=1767964&r2= >> 1767965&view=diff >> ============================================================ >> ================== >> --- ofbiz/trunk/applications/product/servicedef/services_price.xml >> (original) >> +++ ofbiz/trunk/applications/product/servicedef/services_price.xml Thu >> Nov 3 20:30:52 2016 >> @@ -53,4 +53,32 @@ under the License. >> <description>Delete a SaleType record</description> >> <auto-attributes include="pk" mode="IN"/> >> </service> >> + <service name="createProductPricePurpose" >> default-entity-name="ProductPricePurpose" engine="entity-auto" >> invoke="create" auth="true"> >> + <description>Create a ProductPricePurpose</description> >> + <auto-attributes include="pk" mode="INOUT" optional="true"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="updateProductPricePurpose" >> default-entity-name="ProductPricePurpose" engine="entity-auto" >> invoke="update" auth="true"> >> + <description>Update a ProductPricePurpose</description> >> + <auto-attributes include="pk" mode="IN" optional="false"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="deleteProductPricePurpose" >> default-entity-name="ProductPricePurpose" engine="entity-auto" >> invoke="delete" auth="true"> >> + <description>Delete a ProductPricePurpose</description> >> + <auto-attributes include="pk" mode="IN" optional="false"/> >> + </service> >> + <service name="createProductPriceType" default-entity-name="ProductPriceType" >> engine="entity-auto" invoke="create" auth="true"> >> + <description>Create a ProductPriceType</description> >> + <auto-attributes include="pk" mode="INOUT" optional="true"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="updateProductPriceType" default-entity-name="ProductPriceType" >> engine="entity-auto" invoke="update" auth="true"> >> + <description>Update a ProductPriceType</description> >> + <auto-attributes include="pk" mode="IN" optional="false"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="deleteProductPriceType" default-entity-name="ProductPriceType" >> engine="entity-auto" invoke="delete" auth="true"> >> + <description>Delete a ProductPriceType</description> >> + <auto-attributes include="pk" mode="IN" optional="false"/> >> + </service> >> </services> >> >> Modified: ofbiz/trunk/applications/product/servicedef/services_store.xml >> URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/produc >> t/servicedef/services_store.xml?rev=1767965&r1=1767964&r2= >> 1767965&view=diff >> ============================================================ >> ================== >> --- ofbiz/trunk/applications/product/servicedef/services_store.xml >> (original) >> +++ ofbiz/trunk/applications/product/servicedef/services_store.xml Thu >> Nov 3 20:30:52 2016 >> @@ -358,4 +358,17 @@ under the License. >> location="component://product/minilang/product/store/ProductStoreServices.xml" >> invoke="productStoreGenericPermission"> >> <implements service="permissionInterface"/> >> </service> >> + <service name="createProductStoreGroupRole" >> default-entity-name="ProductStoreGroupRole" engine="entity-auto" >> invoke="create" auth="true"> >> + <description>Create a ProductStoreGroupRole</description> >> + <auto-attributes include="pk" mode="INOUT" optional="false"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="deleteProductStoreGroupRole" >> default-entity-name="ProductStoreGroupRole" engine="entity-auto" >> invoke="delete" auth="true"> >> + <description>Delete a ProductStoreGroupRole</description> >> + <auto-attributes include="pk" mode="IN" optional="false"/> >> + </service> >> + <service name="deleteProductStoreGroupRollup" >> default-entity-name="ProductStoreGroupRollup" engine="entity-auto" >> invoke="delete" auth="true"> >> + <description>Delete a ProductStoreGroupRollup</description> >> + <auto-attributes include="pk" mode="IN" optional="false"/> >> + </service> >> </services> >> >> Modified: ofbiz/trunk/applications/workeffort/servicedef/services_ >> workeffort.xml >> URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/workef >> fort/servicedef/services_workeffort.xml?rev=1767965&r1= >> 1767964&r2=1767965&view=diff >> ============================================================ >> ================== >> --- ofbiz/trunk/applications/workeffort/servicedef/services_workeffort.xml >> (original) >> +++ ofbiz/trunk/applications/workeffort/servicedef/services_workeffort.xml >> Thu Nov 3 20:30:52 2016 >> @@ -55,4 +55,144 @@ under the License. >> <description>Delete a Deliverable Type record</description> >> <auto-attributes include="pk" mode="IN"/> >> </service> >> + >> + <!-- WorkEffortAssocAttribute Services --> >> + <service name="createWorkEffortAssocAttribute" engine="entity-auto" >> invoke="create" default-entity-name="WorkEffortAssocAttribute" >> auth="true"> >> + <description>Create a WorkEffortAssocAttribute >> record</description> >> + <auto-attributes include="pk" mode="IN"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="updateWorkEffortAssocAttribute" engine="entity-auto" >> invoke="update" default-entity-name="WorkEffortAssocAttribute" >> auth="true"> >> + <description>Update a WorkEffortAssocAttribute >> record</description> >> + <auto-attributes include="pk" mode="IN"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="deleteWorkEffortAssocAttribute" engine="entity-auto" >> invoke="delete" default-entity-name="WorkEffortAssocAttribute" >> auth="true"> >> + <description>Delete a WorkEffortAssocAttribute >> record</description> >> + <auto-attributes include="pk" mode="IN"/> >> + </service> >> + >> + <!-- WorkEffortAssocType Services --> >> + <service name="createWorkEffortAssocType" engine="entity-auto" >> invoke="create" default-entity-name="WorkEffortAssocType" auth="true"> >> + <description>Create a WorkEffortAssocType record</description> >> + <auto-attributes include="pk" mode="INOUT" optional="true"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="updateWorkEffortAssocType" engine="entity-auto" >> invoke="update" default-entity-name="WorkEffortAssocType" auth="true"> >> + <description>Update a WorkEffortAssocType record</description> >> + <auto-attributes include="pk" mode="IN"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="deleteWorkEffortAssocType" engine="entity-auto" >> invoke="delete" default-entity-name="WorkEffortAssocType" auth="true"> >> + <description>Delete a WorkEffortAssocType record</description> >> + <auto-attributes include="pk" mode="IN"/> >> + </service> >> + >> + <!-- WorkEffortAssocTypeAttr Services --> >> + <service name="createWorkEffortAssocTypeAttr" engine="entity-auto" >> invoke="create" default-entity-name="WorkEffortAssocTypeAttr" >> auth="true"> >> + <description>Create a WorkEffortAssocTypeAttr >> record</description> >> + <auto-attributes include="pk" mode="IN"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="updateWorkEffortAssocTypeAttr" engine="entity-auto" >> invoke="update" default-entity-name="WorkEffortAssocTypeAttr" >> auth="true"> >> + <description>Update a WorkEffortAssocTypeAttr >> record</description> >> + <auto-attributes include="pk" mode="IN"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="deleteWorkEffortAssocTypeAttr" engine="entity-auto" >> invoke="delete" default-entity-name="WorkEffortAssocTypeAttr" >> auth="true"> >> + <description>Delete a WorkEffortAssocTypeAttr >> record</description> >> + <auto-attributes include="pk" mode="IN"/> >> + </service> >> + >> + <!-- WorkEffortBilling Services --> >> + <service name="createWorkEffortBilling" engine="entity-auto" >> invoke="create" default-entity-name="WorkEffortBilling" auth="true"> >> + <description>Create a WorkEffortBilling record</description> >> + <auto-attributes include="pk" mode="IN"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="updateWorkEffortBilling" engine="entity-auto" >> invoke="update" default-entity-name="WorkEffortBilling" auth="true"> >> + <description>Update a WorkEffortBilling record</description> >> + <auto-attributes include="pk" mode="IN"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="deleteWorkEffortBilling" engine="entity-auto" >> invoke="delete" default-entity-name="WorkEffortBilling" auth="true"> >> + <description>Delete a WorkEffortBilling record</description> >> + <auto-attributes include="pk" mode="IN"/> >> + </service> >> + >> + <!-- WorkEffortContentType Services --> >> + <service name="createWorkEffortContentType" engine="entity-auto" >> invoke="create" default-entity-name="WorkEffortContentType" auth="true"> >> + <description>Create a WorkEffortContentType record</description> >> + <auto-attributes include="pk" mode="INOUT" optional="true"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="updateWorkEffortContentType" engine="entity-auto" >> invoke="update" default-entity-name="WorkEffortContentType" auth="true"> >> + <description>Update a WorkEffortContentType record</description> >> + <auto-attributes include="pk" mode="IN"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="deleteWorkEffortContentType" engine="entity-auto" >> invoke="delete" default-entity-name="WorkEffortContentType" auth="true"> >> + <description>Delete a WorkEffortContentType record</description> >> + <auto-attributes include="pk" mode="IN"/> >> + </service> >> + <!-- WorkEffortGoodStandardType Services --> >> + <service name="createWorkEffortGoodStandardType" >> engine="entity-auto" invoke="create" default-entity-name="WorkEffortGoodStandardType" >> auth="true"> >> + <description>Create a WorkEffortGoodStandardType >> record</description> >> + <auto-attributes include="pk" mode="INOUT" optional="true"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="updateWorkEffortGoodStandardType" >> engine="entity-auto" invoke="update" default-entity-name="WorkEffortGoodStandardType" >> auth="true"> >> + <description>Update a WorkEffortGoodStandardType >> record</description> >> + <auto-attributes include="pk" mode="IN"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="deleteWorkEffortGoodStandardType" >> engine="entity-auto" invoke="delete" default-entity-name="WorkEffortGoodStandardType" >> auth="true"> >> + <description>Delete a WorkEffortGoodStandardType >> record</description> >> + <auto-attributes include="pk" mode="IN"/> >> + </service> >> + <!-- WorkEffortPurposeType Services --> >> + <service name="createWorkEffortPurposeType" engine="entity-auto" >> invoke="create" default-entity-name="WorkEffortPurposeType" auth="true"> >> + <description>Create a WorkEffortPurposeType record</description> >> + <auto-attributes include="pk" mode="INOUT" optional="true"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="updateWorkEffortPurposeType" engine="entity-auto" >> invoke="update" default-entity-name="WorkEffortPurposeType" auth="true"> >> + <description>Update a WorkEffortPurposeType record</description> >> + <auto-attributes include="pk" mode="IN"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="deleteWorkEffortPurposeType" engine="entity-auto" >> invoke="delete" default-entity-name="WorkEffortPurposeType" auth="true"> >> + <description>Delete a WorkEffortPurposeType record</description> >> + <auto-attributes include="pk" mode="IN"/> >> + </service> >> + <!-- WorkEffortType Services --> >> + <service name="createWorkEffortType" engine="entity-auto" >> invoke="create" default-entity-name="WorkEffortType" auth="true"> >> + <description>Create a WorkEffortType record</description> >> + <auto-attributes include="pk" mode="INOUT" optional="true"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="updateWorkEffortType" engine="entity-auto" >> invoke="update" default-entity-name="WorkEffortType" auth="true"> >> + <description>Update a WorkEffortType record</description> >> + <auto-attributes include="pk" mode="IN"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="deleteWorkEffortType" engine="entity-auto" >> invoke="delete" default-entity-name="WorkEffortType" auth="true"> >> + <description>Delete a WorkEffortType record</description> >> + <auto-attributes include="pk" mode="IN"/> >> + </service> >> + <!-- WorkEffortTypeAttr Services --> >> + <service name="createWorkEffortTypeAttr" engine="entity-auto" >> invoke="create" default-entity-name="WorkEffortTypeAttr" auth="true"> >> + <description>Create a WorkEffortTypeAttr record</description> >> + <auto-attributes include="pk" mode="IN"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="updateWorkEffortTypeAttr" engine="entity-auto" >> invoke="update" default-entity-name="WorkEffortTypeAttr" auth="true"> >> + <description>Update a WorkEffortTypeAttr record</description> >> + <auto-attributes include="pk" mode="IN"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="deleteWorkEffortTypeAttr" engine="entity-auto" >> invoke="delete" default-entity-name="WorkEffortTypeAttr" auth="true"> >> + <description>Delete a WorkEffortTypeAttr record</description> >> + <auto-attributes include="pk" mode="IN"/> >> + </service> >> </services> >> >> Modified: ofbiz/trunk/framework/common/servicedef/services.xml >> URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/se >> rvicedef/services.xml?rev=1767965&r1=1767964&r2=1767965&view=diff >> ============================================================ >> ================== >> --- ofbiz/trunk/framework/common/servicedef/services.xml (original) >> +++ ofbiz/trunk/framework/common/servicedef/services.xml Thu Nov 3 >> 20:30:52 2016 >> @@ -871,4 +871,42 @@ under the License. >> <description>Delete a PeriodType</description> >> <auto-attributes include="pk" mode="IN"/> >> </service> >> + >> + <service name="createUserPrefGroupType" engine="entity-auto" >> invoke="create" default-entity-name="UserPrefGroupType" auth="true"> >> + <description>Create a UserPrefGroupType</description> >> + <auto-attributes include="pk" mode="INOUT" optional="true"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="updateUserPrefGroupType" engine="entity-auto" >> invoke="update" default-entity-name="UserPrefGroupType" auth="true"> >> + <description>Update a UserPrefGroupType</description> >> + <auto-attributes include="pk" mode="IN"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="deleteUserPrefGroupType" engine="entity-auto" >> invoke="delete" default-entity-name="UserPrefGroupType" auth="true"> >> + <description>Delete a UserPrefGroupType</description> >> + <auto-attributes include="pk" mode="IN"/> >> + </service> >> + <service name="createUomType" engine="entity-auto" invoke="create" >> default-entity-name="UomType" auth="true"> >> + <description>Create UomType Record</description> >> + <auto-attributes include="pk" mode="INOUT" optional="true"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="updateUomType" engine="entity-auto" invoke="update" >> default-entity-name="UomType" auth="true"> >> + <description>Update UomType Record</description> >> + <auto-attributes include="pk" mode="IN"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="deleteUomType" engine="entity-auto" invoke="delete" >> default-entity-name="UomType" auth="true"> >> + <description>Delete UomType Record</description> >> + <auto-attributes include="pk" mode="IN"/> >> + </service> >> + <service name="createUomGroup" engine="entity-auto" invoke="create" >> default-entity-name="UomGroup" auth="true"> >> + <description>Create UomGroup record</description> >> + <auto-attributes include="pk" mode="IN"/> >> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >> + </service> >> + <service name="deleteUomGroup" engine="entity-auto" invoke="delete" >> default-entity-name="UomGroup" auth="true"> >> + <description>Delete UomGroup record</description> >> + <auto-attributes include="pk" mode="IN"/> >> + </service> >> </services> >> >> >> >> > |
Hi Jacques,
I moved service near to create and update at rev:1768152 -- Thanks & Regards --- Arun Patidar Manager,Enterprise Software Development HotWax Mediawww.hotwaxsystems.com On Fri, Nov 4, 2016 at 4:05 PM, Arun Patidar <[hidden email] > wrote: > Hi Jacques, > > I will have to cross check with given patch. I will look into this and fix > accordingly. Thanks for reviewing. > > -- > Thanks & Regards > --- > Arun Patidar > Manager,Enterprise Software Development > HotWax Mediawww.hotwaxsystems.com > > > On Fri, Nov 4, 2016 at 2:49 PM, Jacques Le Roux < > [hidden email]> wrote: > >> Hi Arun, >> >> Are we sure about deleteProductStoreGroupRollup, is it not >> deleteProductStoreGroupRole instead? >> >> No updateUomGroup? >> >> Thanks >> >> Jacques >> >> >> >> Le 03/11/2016 à 21:30, [hidden email] a écrit : >> >>> Author: arunpatidar >>> Date: Thu Nov 3 20:30:52 2016 >>> New Revision: 1767965 >>> >>> URL: http://svn.apache.org/viewvc?rev=1767965&view=rev >>> Log: >>> Implemented: Added CRUD services for ProdConfItemContentType, >>> ProductAssocType, UserPrefGroupType, WebPreferenceType, >>> WorkEffortAssocAttribute, WorkEffortAssocType, WorkEffortAssocTypeAttr, >>> WorkEffortBilling, WorkEffortContentType, WorkEffortGoodStandardType, >>> WorkEffortPurposeType, WorkEffortType, WorkEffortTypeAttr, WorkReqFulfType, >>> UomType, UomGroup, ProductPricePurpose, ProductPriceType, >>> ProductStoreGroupRole and ProductStoreGroupRollup entities. >>> >>> (OFBIZ-8729)(OFBIZ-8730)(OFBIZ-8792)(OFBIZ-8793)(OFBIZ-8794) >>> (OFBIZ-8795)(OFBIZ-8796)(OFBIZ-8797)(OFBIZ-8798)(OFBIZ-8799) >>> (OFBIZ-8800)(OFBIZ-8801)(OFBIZ-8802)(OFBIZ-8803)(OFBIZ-8788) >>> (OFBIZ-8789)(OFBIZ-8767) >>> (OFBIZ-8768)(OFBIZ-8769)(OFBIZ-8770) >>> >>> Thanks: Chinmay Patidar, Amit Gadaley and Rishi Solanki for the >>> contribution. >>> >>> Modified: >>> ofbiz/trunk/applications/content/servicedef/services.xml >>> ofbiz/trunk/applications/order/servicedef/services_requirement.xml >>> ofbiz/trunk/applications/product/servicedef/services.xml >>> ofbiz/trunk/applications/product/servicedef/services_config.xml >>> ofbiz/trunk/applications/product/servicedef/services_price.xml >>> ofbiz/trunk/applications/product/servicedef/services_store.xml >>> ofbiz/trunk/applications/workeffort/servicedef/services_wor >>> keffort.xml >>> ofbiz/trunk/framework/common/servicedef/services.xml >>> >>> Modified: ofbiz/trunk/applications/content/servicedef/services.xml >>> URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/conten >>> t/servicedef/services.xml?rev=1767965&r1=1767964&r2=1767965&view=diff >>> ============================================================ >>> ================== >>> --- ofbiz/trunk/applications/content/servicedef/services.xml (original) >>> +++ ofbiz/trunk/applications/content/servicedef/services.xml Thu Nov 3 >>> 20:30:52 2016 >>> @@ -909,4 +909,19 @@ >>> <attribute name="contentId" mode="IN" type="String" >>> optional="true"></attribute> >>> <attribute name="contentCreated" mode="OUT" type="String" >>> optional="true"></attribute> >>> </service> >>> + >>> + <service name="createWebPreferenceType" engine="entity-auto" >>> default-entity-name="WebPreferenceType" auth="true" invoke="create"> >>> + <description>Create WebPreferenceType record</description> >>> + <auto-attributes include="pk" mode="INOUT" optional="true"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="updateWebPreferenceType" engine="entity-auto" >>> default-entity-name="WebPreferenceType" auth="true" invoke="update"> >>> + <description>Update WebPreferenceType record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="deleteWebPreferenceType" engine="entity-auto" >>> default-entity-name="WebPreferenceType" auth="true" invoke="delete"> >>> + <description>Delete ContentApproval record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + </service> >>> </services> >>> >>> Modified: ofbiz/trunk/applications/order/servicedef/services_requireme >>> nt.xml >>> URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/ >>> servicedef/services_requirement.xml?rev=1767965&r1=1767964&r >>> 2=1767965&view=diff >>> ============================================================ >>> ================== >>> --- ofbiz/trunk/applications/order/servicedef/services_requirement.xml >>> (original) >>> +++ ofbiz/trunk/applications/order/servicedef/services_requirement.xml >>> Thu Nov 3 20:30:52 2016 >>> @@ -288,5 +288,20 @@ under the License. >>> <description>Delete a RequirementCustRequest >>> record</description> >>> <auto-attributes mode="IN" include="pk"/> >>> </service> >>> + <!-- WorkReqFulfType services --> >>> + <service name="createWorkReqFulfType" default-entity-name="WorkReqFulfType" >>> engine="entity-auto" invoke="create" auth="true"> >>> + <description>Create a WorkReqFulfType record</description> >>> + <auto-attributes mode="INOUT" include="pk" optional="true"/> >>> + <auto-attributes mode="IN" include="nonpk" optional="true"/> >>> + </service> >>> + <service name="updateWorkReqFulfType" default-entity-name="WorkReqFulfType" >>> engine="entity-auto" invoke="update" auth="true"> >>> + <description>Update a WorkReqFulfType record</description> >>> + <auto-attributes mode="IN" include="pk"/> >>> + <auto-attributes mode="IN" include="nonpk" optional="true"/> >>> + </service> >>> + <service name="deleteWorkReqFulfType" default-entity-name="WorkReqFulfType" >>> engine="entity-auto" invoke="delete" auth="true"> >>> + <description>Delete a WorkReqFulfType record</description> >>> + <auto-attributes mode="IN" include="pk"/> >>> + </service> >>> </services> >>> >>> Modified: ofbiz/trunk/applications/product/servicedef/services.xml >>> URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/produc >>> t/servicedef/services.xml?rev=1767965&r1=1767964&r2=1767965&view=diff >>> ============================================================ >>> ================== >>> --- ofbiz/trunk/applications/product/servicedef/services.xml (original) >>> +++ ofbiz/trunk/applications/product/servicedef/services.xml Thu Nov 3 >>> 20:30:52 2016 >>> @@ -1722,4 +1722,19 @@ under the License. >>> <description>Delete ProdCatalogCategoryType >>> Record</description> >>> <auto-attributes mode="IN" include="pk"/> >>> </service> >>> + >>> + <service name="createProductAssocType" >>> default-entity-name="ProductAssocType" engine="entity-auto" >>> invoke="create" auth="true"> >>> + <description>Create a ProductAssocType</description> >>> + <auto-attributes include="pk" mode="INOUT" optional="true"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="updateProductAssocType" >>> default-entity-name="ProductAssocType" engine="entity-auto" >>> invoke="update" auth="true"> >>> + <description>Update a ProductAssocType</description> >>> + <auto-attributes include="pk" mode="IN" optional="false"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="deleteProductAssocType" >>> default-entity-name="ProductAssocType" engine="entity-auto" >>> invoke="delete" auth="true"> >>> + <description>Delete a ProductAssocType</description> >>> + <auto-attributes include="pk" mode="IN" optional="false"/> >>> + </service> >>> </services> >>> >>> Modified: ofbiz/trunk/applications/product/servicedef/services_config. >>> xml >>> URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/produc >>> t/servicedef/services_config.xml?rev=1767965&r1=1767964&r2=1 >>> 767965&view=diff >>> ============================================================ >>> ================== >>> --- ofbiz/trunk/applications/product/servicedef/services_config.xml >>> (original) >>> +++ ofbiz/trunk/applications/product/servicedef/services_config.xml Thu >>> Nov 3 20:30:52 2016 >>> @@ -38,4 +38,19 @@ under the License. >>> <description>Delete an existing ConfigOptionProductOption >>> Record</description> >>> <auto-attributes mode="IN" include="pk"/> >>> </service> >>> + >>> + <service name="createProdConfItemContentType" >>> default-entity-name="ProdConfItemContentType" engine="entity-auto" >>> invoke="create" auth="true"> >>> + <description>Create a ProdConfItemContentType</description> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + <auto-attributes include="pk" mode="INOUT" optional="true"/> >>> + </service> >>> + <service name="updateProdConfItemContentType" >>> default-entity-name="ProdConfItemContentType" engine="entity-auto" >>> invoke="update" auth="true"> >>> + <description>Update a ProdConfItemContentType</description> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + <auto-attributes include="pk" mode="IN" optional="false"/> >>> + </service> >>> + <service name="deleteProdConfItemContentType" >>> default-entity-name="ProdConfItemContentType" engine="entity-auto" >>> invoke="delete" auth="true"> >>> + <description>Delete a ProdConfItemContentType</description> >>> + <auto-attributes include="pk" mode="IN" optional="false"/> >>> + </service> >>> </services> >>> >>> Modified: ofbiz/trunk/applications/product/servicedef/services_price.xml >>> URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/produc >>> t/servicedef/services_price.xml?rev=1767965&r1=1767964&r2=17 >>> 67965&view=diff >>> ============================================================ >>> ================== >>> --- ofbiz/trunk/applications/product/servicedef/services_price.xml >>> (original) >>> +++ ofbiz/trunk/applications/product/servicedef/services_price.xml Thu >>> Nov 3 20:30:52 2016 >>> @@ -53,4 +53,32 @@ under the License. >>> <description>Delete a SaleType record</description> >>> <auto-attributes include="pk" mode="IN"/> >>> </service> >>> + <service name="createProductPricePurpose" >>> default-entity-name="ProductPricePurpose" engine="entity-auto" >>> invoke="create" auth="true"> >>> + <description>Create a ProductPricePurpose</description> >>> + <auto-attributes include="pk" mode="INOUT" optional="true"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="updateProductPricePurpose" >>> default-entity-name="ProductPricePurpose" engine="entity-auto" >>> invoke="update" auth="true"> >>> + <description>Update a ProductPricePurpose</description> >>> + <auto-attributes include="pk" mode="IN" optional="false"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="deleteProductPricePurpose" >>> default-entity-name="ProductPricePurpose" engine="entity-auto" >>> invoke="delete" auth="true"> >>> + <description>Delete a ProductPricePurpose</description> >>> + <auto-attributes include="pk" mode="IN" optional="false"/> >>> + </service> >>> + <service name="createProductPriceType" >>> default-entity-name="ProductPriceType" engine="entity-auto" >>> invoke="create" auth="true"> >>> + <description>Create a ProductPriceType</description> >>> + <auto-attributes include="pk" mode="INOUT" optional="true"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="updateProductPriceType" >>> default-entity-name="ProductPriceType" engine="entity-auto" >>> invoke="update" auth="true"> >>> + <description>Update a ProductPriceType</description> >>> + <auto-attributes include="pk" mode="IN" optional="false"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="deleteProductPriceType" >>> default-entity-name="ProductPriceType" engine="entity-auto" >>> invoke="delete" auth="true"> >>> + <description>Delete a ProductPriceType</description> >>> + <auto-attributes include="pk" mode="IN" optional="false"/> >>> + </service> >>> </services> >>> >>> Modified: ofbiz/trunk/applications/product/servicedef/services_store.xml >>> URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/produc >>> t/servicedef/services_store.xml?rev=1767965&r1=1767964&r2=17 >>> 67965&view=diff >>> ============================================================ >>> ================== >>> --- ofbiz/trunk/applications/product/servicedef/services_store.xml >>> (original) >>> +++ ofbiz/trunk/applications/product/servicedef/services_store.xml Thu >>> Nov 3 20:30:52 2016 >>> @@ -358,4 +358,17 @@ under the License. >>> location="component://product/minilang/product/store/ProductStoreServices.xml" >>> invoke="productStoreGenericPermission"> >>> <implements service="permissionInterface"/> >>> </service> >>> + <service name="createProductStoreGroupRole" >>> default-entity-name="ProductStoreGroupRole" engine="entity-auto" >>> invoke="create" auth="true"> >>> + <description>Create a ProductStoreGroupRole</description> >>> + <auto-attributes include="pk" mode="INOUT" optional="false"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="deleteProductStoreGroupRole" >>> default-entity-name="ProductStoreGroupRole" engine="entity-auto" >>> invoke="delete" auth="true"> >>> + <description>Delete a ProductStoreGroupRole</description> >>> + <auto-attributes include="pk" mode="IN" optional="false"/> >>> + </service> >>> + <service name="deleteProductStoreGroupRollup" >>> default-entity-name="ProductStoreGroupRollup" engine="entity-auto" >>> invoke="delete" auth="true"> >>> + <description>Delete a ProductStoreGroupRollup</description> >>> + <auto-attributes include="pk" mode="IN" optional="false"/> >>> + </service> >>> </services> >>> >>> Modified: ofbiz/trunk/applications/workeffort/servicedef/services_work >>> effort.xml >>> URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/workef >>> fort/servicedef/services_workeffort.xml?rev=1767965&r1=17679 >>> 64&r2=1767965&view=diff >>> ============================================================ >>> ================== >>> --- ofbiz/trunk/applications/workeffort/servicedef/services_workeffort.xml >>> (original) >>> +++ ofbiz/trunk/applications/workeffort/servicedef/services_workeffort.xml >>> Thu Nov 3 20:30:52 2016 >>> @@ -55,4 +55,144 @@ under the License. >>> <description>Delete a Deliverable Type record</description> >>> <auto-attributes include="pk" mode="IN"/> >>> </service> >>> + >>> + <!-- WorkEffortAssocAttribute Services --> >>> + <service name="createWorkEffortAssocAttribute" >>> engine="entity-auto" invoke="create" default-entity-name="WorkEffortAssocAttribute" >>> auth="true"> >>> + <description>Create a WorkEffortAssocAttribute >>> record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="updateWorkEffortAssocAttribute" >>> engine="entity-auto" invoke="update" default-entity-name="WorkEffortAssocAttribute" >>> auth="true"> >>> + <description>Update a WorkEffortAssocAttribute >>> record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="deleteWorkEffortAssocAttribute" >>> engine="entity-auto" invoke="delete" default-entity-name="WorkEffortAssocAttribute" >>> auth="true"> >>> + <description>Delete a WorkEffortAssocAttribute >>> record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + </service> >>> + >>> + <!-- WorkEffortAssocType Services --> >>> + <service name="createWorkEffortAssocType" engine="entity-auto" >>> invoke="create" default-entity-name="WorkEffortAssocType" auth="true"> >>> + <description>Create a WorkEffortAssocType record</description> >>> + <auto-attributes include="pk" mode="INOUT" optional="true"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="updateWorkEffortAssocType" engine="entity-auto" >>> invoke="update" default-entity-name="WorkEffortAssocType" auth="true"> >>> + <description>Update a WorkEffortAssocType record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="deleteWorkEffortAssocType" engine="entity-auto" >>> invoke="delete" default-entity-name="WorkEffortAssocType" auth="true"> >>> + <description>Delete a WorkEffortAssocType record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + </service> >>> + >>> + <!-- WorkEffortAssocTypeAttr Services --> >>> + <service name="createWorkEffortAssocTypeAttr" engine="entity-auto" >>> invoke="create" default-entity-name="WorkEffortAssocTypeAttr" >>> auth="true"> >>> + <description>Create a WorkEffortAssocTypeAttr >>> record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="updateWorkEffortAssocTypeAttr" engine="entity-auto" >>> invoke="update" default-entity-name="WorkEffortAssocTypeAttr" >>> auth="true"> >>> + <description>Update a WorkEffortAssocTypeAttr >>> record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="deleteWorkEffortAssocTypeAttr" engine="entity-auto" >>> invoke="delete" default-entity-name="WorkEffortAssocTypeAttr" >>> auth="true"> >>> + <description>Delete a WorkEffortAssocTypeAttr >>> record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + </service> >>> + >>> + <!-- WorkEffortBilling Services --> >>> + <service name="createWorkEffortBilling" engine="entity-auto" >>> invoke="create" default-entity-name="WorkEffortBilling" auth="true"> >>> + <description>Create a WorkEffortBilling record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="updateWorkEffortBilling" engine="entity-auto" >>> invoke="update" default-entity-name="WorkEffortBilling" auth="true"> >>> + <description>Update a WorkEffortBilling record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="deleteWorkEffortBilling" engine="entity-auto" >>> invoke="delete" default-entity-name="WorkEffortBilling" auth="true"> >>> + <description>Delete a WorkEffortBilling record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + </service> >>> + >>> + <!-- WorkEffortContentType Services --> >>> + <service name="createWorkEffortContentType" engine="entity-auto" >>> invoke="create" default-entity-name="WorkEffortContentType" auth="true"> >>> + <description>Create a WorkEffortContentType record</description> >>> + <auto-attributes include="pk" mode="INOUT" optional="true"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="updateWorkEffortContentType" engine="entity-auto" >>> invoke="update" default-entity-name="WorkEffortContentType" auth="true"> >>> + <description>Update a WorkEffortContentType record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="deleteWorkEffortContentType" engine="entity-auto" >>> invoke="delete" default-entity-name="WorkEffortContentType" auth="true"> >>> + <description>Delete a WorkEffortContentType record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + </service> >>> + <!-- WorkEffortGoodStandardType Services --> >>> + <service name="createWorkEffortGoodStandardType" >>> engine="entity-auto" invoke="create" default-entity-name="WorkEffortGoodStandardType" >>> auth="true"> >>> + <description>Create a WorkEffortGoodStandardType >>> record</description> >>> + <auto-attributes include="pk" mode="INOUT" optional="true"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="updateWorkEffortGoodStandardType" >>> engine="entity-auto" invoke="update" default-entity-name="WorkEffortGoodStandardType" >>> auth="true"> >>> + <description>Update a WorkEffortGoodStandardType >>> record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="deleteWorkEffortGoodStandardType" >>> engine="entity-auto" invoke="delete" default-entity-name="WorkEffortGoodStandardType" >>> auth="true"> >>> + <description>Delete a WorkEffortGoodStandardType >>> record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + </service> >>> + <!-- WorkEffortPurposeType Services --> >>> + <service name="createWorkEffortPurposeType" engine="entity-auto" >>> invoke="create" default-entity-name="WorkEffortPurposeType" auth="true"> >>> + <description>Create a WorkEffortPurposeType record</description> >>> + <auto-attributes include="pk" mode="INOUT" optional="true"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="updateWorkEffortPurposeType" engine="entity-auto" >>> invoke="update" default-entity-name="WorkEffortPurposeType" auth="true"> >>> + <description>Update a WorkEffortPurposeType record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="deleteWorkEffortPurposeType" engine="entity-auto" >>> invoke="delete" default-entity-name="WorkEffortPurposeType" auth="true"> >>> + <description>Delete a WorkEffortPurposeType record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + </service> >>> + <!-- WorkEffortType Services --> >>> + <service name="createWorkEffortType" engine="entity-auto" >>> invoke="create" default-entity-name="WorkEffortType" auth="true"> >>> + <description>Create a WorkEffortType record</description> >>> + <auto-attributes include="pk" mode="INOUT" optional="true"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="updateWorkEffortType" engine="entity-auto" >>> invoke="update" default-entity-name="WorkEffortType" auth="true"> >>> + <description>Update a WorkEffortType record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="deleteWorkEffortType" engine="entity-auto" >>> invoke="delete" default-entity-name="WorkEffortType" auth="true"> >>> + <description>Delete a WorkEffortType record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + </service> >>> + <!-- WorkEffortTypeAttr Services --> >>> + <service name="createWorkEffortTypeAttr" engine="entity-auto" >>> invoke="create" default-entity-name="WorkEffortTypeAttr" auth="true"> >>> + <description>Create a WorkEffortTypeAttr record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="updateWorkEffortTypeAttr" engine="entity-auto" >>> invoke="update" default-entity-name="WorkEffortTypeAttr" auth="true"> >>> + <description>Update a WorkEffortTypeAttr record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="deleteWorkEffortTypeAttr" engine="entity-auto" >>> invoke="delete" default-entity-name="WorkEffortTypeAttr" auth="true"> >>> + <description>Delete a WorkEffortTypeAttr record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + </service> >>> </services> >>> >>> Modified: ofbiz/trunk/framework/common/servicedef/services.xml >>> URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/se >>> rvicedef/services.xml?rev=1767965&r1=1767964&r2=1767965&view=diff >>> ============================================================ >>> ================== >>> --- ofbiz/trunk/framework/common/servicedef/services.xml (original) >>> +++ ofbiz/trunk/framework/common/servicedef/services.xml Thu Nov 3 >>> 20:30:52 2016 >>> @@ -871,4 +871,42 @@ under the License. >>> <description>Delete a PeriodType</description> >>> <auto-attributes include="pk" mode="IN"/> >>> </service> >>> + >>> + <service name="createUserPrefGroupType" engine="entity-auto" >>> invoke="create" default-entity-name="UserPrefGroupType" auth="true"> >>> + <description>Create a UserPrefGroupType</description> >>> + <auto-attributes include="pk" mode="INOUT" optional="true"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="updateUserPrefGroupType" engine="entity-auto" >>> invoke="update" default-entity-name="UserPrefGroupType" auth="true"> >>> + <description>Update a UserPrefGroupType</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="deleteUserPrefGroupType" engine="entity-auto" >>> invoke="delete" default-entity-name="UserPrefGroupType" auth="true"> >>> + <description>Delete a UserPrefGroupType</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + </service> >>> + <service name="createUomType" engine="entity-auto" invoke="create" >>> default-entity-name="UomType" auth="true"> >>> + <description>Create UomType Record</description> >>> + <auto-attributes include="pk" mode="INOUT" optional="true"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="updateUomType" engine="entity-auto" invoke="update" >>> default-entity-name="UomType" auth="true"> >>> + <description>Update UomType Record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="deleteUomType" engine="entity-auto" invoke="delete" >>> default-entity-name="UomType" auth="true"> >>> + <description>Delete UomType Record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + </service> >>> + <service name="createUomGroup" engine="entity-auto" invoke="create" >>> default-entity-name="UomGroup" auth="true"> >>> + <description>Create UomGroup record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="deleteUomGroup" engine="entity-auto" invoke="delete" >>> default-entity-name="UomGroup" auth="true"> >>> + <description>Delete UomGroup record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + </service> >>> </services> >>> >>> >>> >>> >> > |
Administrator
|
Thanks Arun,
Is there a reason why we have no updateProductStoreGroupRole? Jacques Le 05/11/2016 à 06:59, Arun Patidar a écrit : > Hi Jacques, > > I moved service near to create and update at rev:1768152 > |
Jacques,
We mentioned this in the ticket details OFBIZ-8769 that is why dev didn't submit the update service for ProductStoreGroupRole. The reason was this entity will only have the PKs and no non-PKs exist for this entity. Thanks for checking it again and support. Rishi Solanki Manager, Enterprise Software Development HotWax Systems Pvt. Ltd. Direct: +91-9893287847 http://www.hotwaxsystems.com On Mon, Nov 7, 2016 at 1:47 PM, Jacques Le Roux < [hidden email]> wrote: > Thanks Arun, > > Is there a reason why we have no updateProductStoreGroupRole? > > Jacques > > > > Le 05/11/2016 à 06:59, Arun Patidar a écrit : > >> Hi Jacques, >> >> I moved service near to create and update at rev:1768152 >> >> > |
Administrator
|
Ah indeed, thanks Rishi!
Jacques Le 08/11/2016 à 09:57, Rishi Solanki a écrit : > Jacques, > > We mentioned this in the ticket details OFBIZ-8769 that is why dev didn't > submit the update service for ProductStoreGroupRole. The reason was this > entity will only have the PKs and no non-PKs exist for this entity. > > Thanks for checking it again and support. > > > > Rishi Solanki > Manager, Enterprise Software Development > HotWax Systems Pvt. Ltd. > Direct: +91-9893287847 > http://www.hotwaxsystems.com > > On Mon, Nov 7, 2016 at 1:47 PM, Jacques Le Roux < > [hidden email]> wrote: > >> Thanks Arun, >> >> Is there a reason why we have no updateProductStoreGroupRole? >> >> Jacques >> >> >> >> Le 05/11/2016 à 06:59, Arun Patidar a écrit : >> >>> Hi Jacques, >>> >>> I moved service near to create and update at rev:1768152 >>> >>> |
Free forum by Nabble | Edit this page |