Hi Jacques, 'updatePaymentMethodType' service already exists in another file. I moved Create and update service there as well in rev: 1768151.
Thanks again Jacques for your continuous support. -- Thanks & Regards --- Arun Patidar Manager,Enterprise Software Development HotWax Mediawww.hotwaxsystems.com On Fri, Nov 4, 2016 at 4:06 PM, Arun Patidar <[email protected] > wrote: > I will check and take action accordingly. Thanks for reviewing. > > -- > Thanks & Regards > --- > Arun Patidar > Manager,Enterprise Software Development > HotWax Mediawww.hotwaxsystems.com > > > On Fri, Nov 4, 2016 at 2:44 PM, Jacques Le Roux < > [email protected]> wrote: > >> Hi Arun, >> >> Why no updatePaymentMethodType? >> >> Thanks >> >> Jacques >> >> >> >> Le 03/11/2016 à 20:27, [email protected] a écrit : >> >>> Author: arunpatidar >>> Date: Thu Nov 3 19:27:07 2016 >>> New Revision: 1767953 >>> >>> URL: http://svn.apache.org/viewvc?rev=1767953&view=rev >>> Log: >>> Implemented: Added CRUD services for PartyClassificationType, >>> PartyContentType, PartyGeoPoint, PartyIcsAvsOverride, >>> PartyIdentificationType, PartyQualType, PartyType, PartyTypeAttr, >>> PaymentAttribute, PaymentBudgetAllocation, PaymentContentType, >>> PaymentGroupType, PaymentMethodType, PaymentType, PaymentTypeAttr, >>> PerfRatingType, PerfReviewItemType, PeriodType, PriorityType and >>> ProdCatalogCategoryType entities. >>> >>> (OFBIZ-8606)(OFBIZ-8607)(OFBIZ-8608)(OFBIZ-8609)(OFBIZ-8610) >>> (OFBIZ-8611)(OFBIZ-8612)(OFBIZ-8613)(OFBIZ-8614)(OFBIZ-8615) >>> (OFBIZ-8616)(OFBIZ-8647)(OFBIZ-8648)(OFBIZ-8649)(OFBIZ-8650) >>> (OFBIZ-8651)(OFBIZ-8724) >>> (OFBIZ-8725)(OFBIZ-8726)(OFBIZ-8727) >>> >>> Thanks: Amit Gadaley and Rishi Solanki for the contribution. >>> >>> Added: >>> ofbiz/trunk/applications/humanres/servicedef/services_ability.xml >>> ofbiz/trunk/applications/party/servicedef/services_party.xml >>> Modified: >>> ofbiz/trunk/applications/accounting/servicedef/services_payment.xml >>> ofbiz/trunk/applications/humanres/ofbiz-component.xml >>> ofbiz/trunk/applications/humanres/servicedef/services.xml >>> ofbiz/trunk/applications/party/ofbiz-component.xml >>> ofbiz/trunk/applications/product/servicedef/services.xml >>> ofbiz/trunk/framework/common/servicedef/services.xml >>> >>> Modified: ofbiz/trunk/applications/accounting/servicedef/services_paym >>> ent.xml >>> URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accoun >>> ting/servicedef/services_payment.xml?rev=1767953&r1=1767952& >>> r2=1767953&view=diff >>> ============================================================ >>> ================== >>> --- ofbiz/trunk/applications/accounting/servicedef/services_payment.xml >>> (original) >>> +++ ofbiz/trunk/applications/accounting/servicedef/services_payment.xml >>> Thu Nov 3 19:27:07 2016 >>> @@ -310,4 +310,105 @@ under the License. >>> <description>Delete a Deduction Type record</description> >>> <auto-attributes include="pk" mode="IN"/> >>> </service> >>> + >>> + <service name="createPaymentAttribute" engine="entity-auto" >>> invoke="create" default-entity-name="PaymentAttribute" auth="true"> >>> + <description>Create a PaymentAttribute record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="updatePaymentAttribute" engine="entity-auto" >>> invoke="update" default-entity-name="PaymentAttribute" auth="true"> >>> + <description>Update a PaymentAttribute record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="deletePaymentAttribute" engine="entity-auto" >>> invoke="delete" default-entity-name="PaymentAttribute" auth="true"> >>> + <description>Delete a PaymentAttribute record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + </service> >>> + >>> + <service name="createPaymentBudgetAllocation" engine="entity-auto" >>> invoke="create" default-entity-name="PaymentBudgetAllocation" >>> auth="true"> >>> + <description>Create a PaymentBudgetAllocation >>> record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="updatePaymentBudgetAllocation" engine="entity-auto" >>> invoke="update" default-entity-name="PaymentBudgetAllocation" >>> auth="true"> >>> + <description>Update a PaymentBudgetAllocation >>> record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="deletePaymentBudgetAllocation" engine="entity-auto" >>> invoke="delete" default-entity-name="PaymentBudgetAllocation" >>> auth="true"> >>> + <description>Delete a PaymentBudgetAllocation >>> record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + </service> >>> + >>> + <service name="createPaymentContentType" engine="entity-auto" >>> invoke="create" default-entity-name="PaymentContentType" auth="true"> >>> + <description>Create a PaymentContentType record</description> >>> + <auto-attributes include="pk" mode="INOUT" optional="true"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="updatePaymentContentType" engine="entity-auto" >>> invoke="update" default-entity-name="PaymentContentType" auth="true"> >>> + <description>Update a PaymentContentType record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="deletePaymentContentType" engine="entity-auto" >>> invoke="delete" default-entity-name="PaymentContentType" auth="true"> >>> + <description>Delete a PaymentContentType record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + </service> >>> + >>> + <service name="createPaymentGroupType" engine="entity-auto" >>> invoke="create" default-entity-name="PaymentGroupType" auth="true"> >>> + <description>Create a PaymentGroupType record</description> >>> + <auto-attributes include="pk" mode="INOUT" optional="true"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="updatePaymentGroupType" engine="entity-auto" >>> invoke="update" default-entity-name="PaymentGroupType" auth="true"> >>> + <description>Update a PaymentGroupType record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="deletePaymentGroupType" engine="entity-auto" >>> invoke="delete" default-entity-name="PaymentGroupType" auth="true"> >>> + <description>Delete a PaymentGroupType record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + </service> >>> + >>> + <service name="createPaymentMethodType" engine="entity-auto" >>> invoke="create" default-entity-name="PaymentMethodType" auth="true"> >>> + <description>Create a PaymentMethodType record</description> >>> + <auto-attributes include="pk" mode="INOUT" optional="true"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="deletePaymentMethodType" engine="entity-auto" >>> invoke="delete" default-entity-name="PaymentMethodType" auth="true"> >>> + <description>Delete a PaymentMethodType record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + </service> >>> + >>> + <service name="createPaymentType" engine="entity-auto" >>> invoke="create" default-entity-name="PaymentType" auth="true"> >>> + <description>Create a PaymentType record</description> >>> + <auto-attributes include="pk" mode="INOUT" optional="true"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="updatePaymentType" engine="entity-auto" >>> invoke="update" default-entity-name="PaymentType" auth="true"> >>> + <description>Update a PaymentType record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="deletePaymentType" engine="entity-auto" >>> invoke="delete" default-entity-name="PaymentType" auth="true"> >>> + <description>Delete a PaymentType record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + </service> >>> + >>> + <service name="createPaymentTypeAttr" engine="entity-auto" >>> invoke="create" default-entity-name="PaymentTypeAttr" auth="true"> >>> + <description>Create a PaymentTypeAttr record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="updatePaymentTypeAttr" engine="entity-auto" >>> invoke="update" default-entity-name="PaymentTypeAttr" auth="true"> >>> + <description>Update a PaymentTypeAttr record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="deletePaymentTypeAttr" engine="entity-auto" >>> invoke="delete" default-entity-name="PaymentTypeAttr" auth="true"> >>> + <description>Delete a PaymentTypeAttr record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + </service> >>> + >>> </services> >>> >>> Modified: ofbiz/trunk/applications/humanres/ofbiz-component.xml >>> URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/humanr >>> es/ofbiz-component.xml?rev=1767953&r1=1767952&r2=1767953&view=diff >>> ============================================================ >>> ================== >>> --- ofbiz/trunk/applications/humanres/ofbiz-component.xml (original) >>> +++ ofbiz/trunk/applications/humanres/ofbiz-component.xml Thu Nov 3 >>> 19:27:07 2016 >>> @@ -32,6 +32,7 @@ under the License. >>> <entity-resource type="data" reader-name="seed" loader="main" >>> location="data/HumanResPortletData.xml"/> >>> <entity-resource type="data" reader-name="demo" loader="main" >>> location="data/HumanResDemoData.xml"/> >>> <service-resource type="model" loader="main" >>> location="servicedef/services.xml"/> >>> + <service-resource type="model" loader="main" >>> location="servicedef/services_ability.xml"/> >>> <service-resource type="model" loader="main" >>> location="servicedef/services_employment.xml"/> >>> <service-resource type="model" loader="main" >>> location="servicedef/services_position.xml"/> >>> <service-resource type="model" loader="main" >>> location="servicedef/services_upgrade.xml"/> >>> >>> Modified: ofbiz/trunk/applications/humanres/servicedef/services.xml >>> URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/humanr >>> es/servicedef/services.xml?rev=1767953&r1=1767952&r2=1767953&view=diff >>> ============================================================ >>> ================== >>> --- ofbiz/trunk/applications/humanres/servicedef/services.xml (original) >>> +++ ofbiz/trunk/applications/humanres/servicedef/services.xml Thu Nov >>> 3 19:27:07 2016 >>> @@ -848,4 +848,20 @@ under the License. >>> <auto-attributes mode="IN" include="nonpk" optional="true"/> >>> </service> >>> + <!-- PartyQualType services --> >>> + <service name="createPartyQualType" default-entity-name="PartyQualType" >>> engine="entity-auto" invoke="create" auth="true"> >>> + <description>Create a PartyQualType record</description> >>> + <auto-attributes mode="INOUT" include="pk" optional="true"/> >>> + <auto-attributes mode="IN" include="nonpk" optional="true"/> >>> + </service> >>> + <service name="updatePartyQualType" default-entity-name="PartyQualType" >>> engine="entity-auto" invoke="update" auth="true"> >>> + <description>Update a PartyQualType record</description> >>> + <auto-attributes mode="IN" include="pk"/> >>> + <auto-attributes mode="IN" include="nonpk" optional="true"/> >>> + </service> >>> + <service name="deletePartyQualType" default-entity-name="PartyQualType" >>> engine="entity-auto" invoke="delete" auth="true"> >>> + <description>Delete a PartyQualType record</description> >>> + <auto-attributes mode="IN" include="pk"/> >>> + </service> >>> + >>> </services> >>> >>> Added: ofbiz/trunk/applications/humanres/servicedef/services_ability.xml >>> URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/humanr >>> es/servicedef/services_ability.xml?rev=1767953&view=auto >>> ============================================================ >>> ================== >>> --- ofbiz/trunk/applications/humanres/servicedef/services_ability.xml >>> (added) >>> +++ ofbiz/trunk/applications/humanres/servicedef/services_ability.xml >>> Thu Nov 3 19:27:07 2016 >>> @@ -0,0 +1,59 @@ >>> +<?xml version="1.0" encoding="UTF-8"?> >>> +<!-- >>> +Licensed to the Apache Software Foundation (ASF) under one >>> +or more contributor license agreements. See the NOTICE file >>> +distributed with this work for additional information >>> +regarding copyright ownership. The ASF licenses this file >>> +to you under the Apache License, Version 2.0 (the >>> +"License"); you may not use this file except in compliance >>> +with the License. You may obtain a copy of the License at >>> + >>> +http://www.apache.org/licenses/LICENSE-2.0 >>> + >>> +Unless required by applicable law or agreed to in writing, >>> +software distributed under the License is distributed on an >>> +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY >>> +KIND, either express or implied. See the License for the >>> +specific language governing permissions and limitations >>> +under the License. >>> +--> >>> + >>> +<services xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" >>> + xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/ >>> services.xsd"> >>> + <description>Human Resources Services</description> >>> + <vendor>OFBiz</vendor> >>> + <version>1.0</version> >>> + >>> + <!-- PerfRatingType services --> >>> + <service name="createPerfRatingType" >>> default-entity-name="PerfRatingType" >>> engine="entity-auto" invoke="create" auth="true"> >>> + <description>Create a PerfRatingType record</description> >>> + <auto-attributes mode="INOUT" include="pk" optional="true"/> >>> + <auto-attributes mode="IN" include="nonpk" optional="true"/> >>> + </service> >>> + <service name="updatePerfRatingType" >>> default-entity-name="PerfRatingType" >>> engine="entity-auto" invoke="update" auth="true"> >>> + <description>Update a PerfRatingType record</description> >>> + <auto-attributes mode="IN" include="pk"/> >>> + <auto-attributes mode="IN" include="nonpk" optional="true"/> >>> + </service> >>> + <service name="deletePerfRatingType" >>> default-entity-name="PerfRatingType" >>> engine="entity-auto" invoke="delete" auth="true"> >>> + <description>Delete a PerfRatingType record</description> >>> + <auto-attributes mode="IN" include="pk"/> >>> + </service> >>> + >>> + <!-- PerfReviewItemType services --> >>> + <service name="createPerfReviewItemType" >>> default-entity-name="PerfReviewItemType" engine="entity-auto" >>> invoke="create" auth="true"> >>> + <description>Create a PerfReviewItemType record</description> >>> + <auto-attributes mode="INOUT" include="pk" optional="true"/> >>> + <auto-attributes mode="IN" include="nonpk" optional="true"/> >>> + </service> >>> + <service name="updatePerfReviewItemType" >>> default-entity-name="PerfReviewItemType" engine="entity-auto" >>> invoke="update" auth="true"> >>> + <description>Update a PerfReviewItemType record</description> >>> + <auto-attributes mode="IN" include="pk"/> >>> + <auto-attributes mode="IN" include="nonpk" optional="true"/> >>> + </service> >>> + <service name="deletePerfReviewItemType" >>> default-entity-name="PerfReviewItemType" engine="entity-auto" >>> invoke="delete" auth="true"> >>> + <description>Delete a PerfReviewItemType record</description> >>> + <auto-attributes mode="IN" include="pk"/> >>> + </service> >>> + >>> +</services> >>> \ No newline at end of file >>> >>> Modified: ofbiz/trunk/applications/party/ofbiz-component.xml >>> URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/ >>> ofbiz-component.xml?rev=1767953&r1=1767952&r2=1767953&view=diff >>> ============================================================ >>> ================== >>> --- ofbiz/trunk/applications/party/ofbiz-component.xml (original) >>> +++ ofbiz/trunk/applications/party/ofbiz-component.xml Thu Nov 3 >>> 19:27:07 2016 >>> @@ -36,6 +36,7 @@ under the License. >>> <service-resource type="model" loader="main" >>> location="servicedef/services_agreement.xml"/> >>> <service-resource type="model" loader="main" >>> location="servicedef/services_communication.xml"/> >>> <service-resource type="model" loader="main" >>> location="servicedef/services_contact.xml"/> >>> + <service-resource type="model" loader="main" >>> location="servicedef/services_party.xml"/> >>> <service-resource type="model" loader="main" >>> location="servicedef/services_view.xml"/> >>> <service-resource type="eca" loader="main" >>> location="servicedef/secas.xml"/> >>> <service-resource type="mca" loader="main" >>> location="servicedef/mcas.xml"/> >>> >>> Added: ofbiz/trunk/applications/party/servicedef/services_party.xml >>> URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/ >>> servicedef/services_party.xml?rev=1767953&view=auto >>> ============================================================ >>> ================== >>> --- ofbiz/trunk/applications/party/servicedef/services_party.xml (added) >>> +++ ofbiz/trunk/applications/party/servicedef/services_party.xml Thu >>> Nov 3 19:27:07 2016 >>> @@ -0,0 +1,155 @@ >>> +<?xml version="1.0" encoding="UTF-8" ?> >>> +<!-- >>> +Licensed to the Apache Software Foundation (ASF) under one >>> +or more contributor license agreements. See the NOTICE file >>> +distributed with this work for additional information >>> +regarding copyright ownership. The ASF licenses this file >>> +to you under the Apache License, Version 2.0 (the >>> +"License"); you may not use this file except in compliance >>> +with the License. You may obtain a copy of the License at >>> + >>> +http://www.apache.org/licenses/LICENSE-2.0 >>> + >>> +Unless required by applicable law or agreed to in writing, >>> +software distributed under the License is distributed on an >>> +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY >>> +KIND, either express or implied. See the License for the >>> +specific language governing permissions and limitations >>> +under the License. >>> +--> >>> + >>> +<services xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" >>> + xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/ >>> services.xsd"> >>> + <description>Party Component Services</description> >>> + <vendor>OFBiz</vendor> >>> + <version>1.0</version> >>> + >>> + <!-- PartyClassificationType services --> >>> + <service name="createPartyClassificationType" >>> default-entity-name="PartyClassificationType" engine="entity-auto" >>> invoke="create" auth="true"> >>> + <description>Create a PartyClassificationType >>> Record</description> >>> + <auto-attributes mode="INOUT" include="pk" optional="true"/> >>> + <auto-attributes mode="IN" include="nonpk" optional="true"/> >>> + </service> >>> + <service name="updatePartyClassificationType" >>> default-entity-name="PartyClassificationType" engine="entity-auto" >>> invoke="update" auth="true"> >>> + <description>Update a PartyClassificationType >>> Record</description> >>> + <auto-attributes mode="IN" include="pk"/> >>> + <auto-attributes mode="IN" include="nonpk" optional="true"/> >>> + </service> >>> + <service name="deletePartyClassificationType" >>> default-entity-name="PartyClassificationType" engine="entity-auto" >>> invoke="delete" auth="true"> >>> + <description>Delete a PartyClassificationType >>> Record</description> >>> + <auto-attributes mode="IN" include="pk"/> >>> + </service> >>> + >>> + <!-- PartyContentType services --> >>> + <service name="createPartyContentType" >>> default-entity-name="PartyContentType" engine="entity-auto" >>> invoke="create" auth="true"> >>> + <description>Create a PartyContentType Record</description> >>> + <auto-attributes mode="INOUT" include="pk" optional="true"/> >>> + <auto-attributes mode="IN" include="nonpk" optional="true"/> >>> + </service> >>> + <service name="updatePartyContentType" >>> default-entity-name="PartyContentType" engine="entity-auto" >>> invoke="update" auth="true"> >>> + <description>Update a PartyContentType Record</description> >>> + <auto-attributes mode="IN" include="pk"/> >>> + <auto-attributes mode="IN" include="nonpk" optional="true"/> >>> + </service> >>> + <service name="deletePartyContentType" >>> default-entity-name="PartyContentType" engine="entity-auto" >>> invoke="delete" auth="true"> >>> + <description>Delete a PartyContentType Record</description> >>> + <auto-attributes mode="IN" include="pk"/> >>> + </service> >>> + >>> + <!-- PartyGeoPoint services --> >>> + <service name="createPartyGeoPoint" default-entity-name="PartyGeoPoint" >>> engine="entity-auto" invoke="create" auth="true"> >>> + <description>Create a PartyGeoPoint Record</description> >>> + <auto-attributes mode="IN" include="pk"/> >>> + <auto-attributes mode="IN" include="nonpk" optional="true"/> >>> + </service> >>> + <service name="updatePartyGeoPoint" default-entity-name="PartyGeoPoint" >>> engine="entity-auto" invoke="update" auth="true"> >>> + <description>Update a PartyGeoPoint Record</description> >>> + <auto-attributes mode="IN" include="pk"/> >>> + <auto-attributes mode="IN" include="nonpk" optional="true"/> >>> + </service> >>> + <service name="expirePartyGeoPoint" default-entity-name="PartyGeoPoint" >>> engine="entity-auto" invoke="expire" auth="true"> >>> + <description>Expire a PartyGeoPoint Record</description> >>> + <auto-attributes mode="IN" include="pk"/> >>> + </service> >>> + >>> + <!-- PartyIcsAvsOverride services --> >>> + <service name="createPartyIcsAvsOverride" >>> default-entity-name="PartyIcsAvsOverride" engine="entity-auto" >>> invoke="create" auth="true"> >>> + <description>Create a PartyIcsAvsOverride Record</description> >>> + <auto-attributes mode="IN" include="pk"/> >>> + <auto-attributes mode="IN" include="nonpk" optional="true"/> >>> + </service> >>> + <service name="updatePartyIcsAvsOverride" >>> default-entity-name="PartyIcsAvsOverride" engine="entity-auto" >>> invoke="update" auth="true"> >>> + <description>Update a PartyIcsAvsOverride Record</description> >>> + <auto-attributes mode="IN" include="pk"/> >>> + <auto-attributes mode="IN" include="nonpk" optional="true"/> >>> + </service> >>> + <service name="deletePartyIcsAvsOverride" >>> default-entity-name="PartyIcsAvsOverride" engine="entity-auto" >>> invoke="delete" auth="true"> >>> + <description>Delete a PartyIcsAvsOverride Record</description> >>> + <auto-attributes mode="IN" include="pk"/> >>> + </service> >>> + >>> + <!-- PartyIdentificationType services --> >>> + <service name="createPartyIdentificationType" >>> default-entity-name="PartyIdentificationType" engine="entity-auto" >>> invoke="create" auth="true"> >>> + <description>Create a PartyIdentificationType >>> Record</description> >>> + <auto-attributes mode="INOUT" include="pk" optional="true"/> >>> + <auto-attributes mode="IN" include="nonpk" optional="true"/> >>> + </service> >>> + <service name="updatePartyIdentificationType" >>> default-entity-name="PartyIdentificationType" engine="entity-auto" >>> invoke="update" auth="true"> >>> + <description>Update a PartyIdentificationType >>> Record</description> >>> + <auto-attributes mode="IN" include="pk"/> >>> + <auto-attributes mode="IN" include="nonpk" optional="true"/> >>> + </service> >>> + <service name="deletePartyIdentificationType" >>> default-entity-name="PartyIdentificationType" engine="entity-auto" >>> invoke="delete" auth="true"> >>> + <description>Delete a PartyIdentificationType >>> Record</description> >>> + <auto-attributes mode="IN" include="pk"/> >>> + </service> >>> + >>> + <!-- PartyType services --> >>> + <service name="createPartyType" default-entity-name="PartyType" >>> engine="entity-auto" invoke="create" auth="true"> >>> + <description>Create a PartyType Record</description> >>> + <auto-attributes mode="INOUT" include="pk" optional="true"/> >>> + <auto-attributes mode="IN" include="nonpk" optional="true"/> >>> + </service> >>> + <service name="updatePartyType" default-entity-name="PartyType" >>> engine="entity-auto" invoke="update" auth="true"> >>> + <description>Update a PartyType Record</description> >>> + <auto-attributes mode="IN" include="pk"/> >>> + <auto-attributes mode="IN" include="nonpk" optional="true"/> >>> + </service> >>> + <service name="deletePartyType" default-entity-name="PartyType" >>> engine="entity-auto" invoke="delete" auth="true"> >>> + <description>Delete a PartyType Record</description> >>> + <auto-attributes mode="IN" include="pk"/> >>> + </service> >>> + >>> + <!-- PartyTypeAttr services --> >>> + <service name="createPartyTypeAttr" default-entity-name="PartyTypeAttr" >>> engine="entity-auto" invoke="create" auth="true"> >>> + <description>Create a PartyTypeAttr Record</description> >>> + <auto-attributes mode="IN" include="pk"/> >>> + <auto-attributes mode="IN" include="nonpk" optional="true"/> >>> + </service> >>> + <service name="updatePartyTypeAttr" default-entity-name="PartyTypeAttr" >>> engine="entity-auto" invoke="update" auth="true"> >>> + <description>Update a PartyTypeAttr Record</description> >>> + <auto-attributes mode="IN" include="pk"/> >>> + <auto-attributes mode="IN" include="nonpk" optional="true"/> >>> + </service> >>> + <service name="deletePartyTypeAttr" default-entity-name="PartyTypeAttr" >>> engine="entity-auto" invoke="delete" auth="true"> >>> + <description>Delete a PartyTypeAttr Record</description> >>> + <auto-attributes mode="IN" include="pk"/> >>> + </service> >>> + >>> + <!-- PriorityType services --> >>> + <service name="createPriorityType" default-entity-name="PriorityType" >>> engine="entity-auto" invoke="create" auth="true"> >>> + <description>Create a PriorityType Record</description> >>> + <auto-attributes mode="INOUT" include="pk" optional="true"/> >>> + <auto-attributes mode="IN" include="nonpk" optional="true"/> >>> + </service> >>> + <service name="updatePriorityType" default-entity-name="PriorityType" >>> engine="entity-auto" invoke="update" auth="true"> >>> + <description>Update a PriorityType Record</description> >>> + <auto-attributes mode="IN" include="pk"/> >>> + <auto-attributes mode="IN" include="nonpk" optional="true"/> >>> + </service> >>> + <service name="deletePriorityType" default-entity-name="PriorityType" >>> engine="entity-auto" invoke="delete" auth="true"> >>> + <description>Delete a PriorityType Record</description> >>> + <auto-attributes mode="IN" include="pk"/> >>> + </service> >>> + >>> +</services> >>> \ No newline at end of file >>> >>> Modified: ofbiz/trunk/applications/product/servicedef/services.xml >>> URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/produc >>> t/servicedef/services.xml?rev=1767953&r1=1767952&r2=1767953&view=diff >>> ============================================================ >>> ================== >>> --- ofbiz/trunk/applications/product/servicedef/services.xml (original) >>> +++ ofbiz/trunk/applications/product/servicedef/services.xml Thu Nov 3 >>> 19:27:07 2016 >>> @@ -1707,4 +1707,19 @@ under the License. >>> <description>Delete a GoodIdentificationType</description> >>> <auto-attributes include="pk" mode="IN" optional="false"/> >>> </service> >>> + >>> + <service name="createProdCatalogCategoryType" >>> default-entity-name="ProdCatalogCategoryType" engine="entity-auto" >>> invoke="create" auth="true"> >>> + <description>Create ProdCatalogCategoryType Record</description> >>> + <auto-attributes mode="INOUT" include="pk" optional="true"/> >>> + <auto-attributes mode="IN" include="nonpk" optional="true"/> >>> + </service> >>> + <service name="updateProdCatalogCategoryType" >>> default-entity-name="ProdCatalogCategoryType" engine="entity-auto" >>> invoke="update" auth="true"> >>> + <description>Update ProdCatalogCategoryType record</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="deleteProdCatalogCategoryType" >>> default-entity-name="ProdCatalogCategoryType" engine="entity-auto" >>> invoke="delete" auth="true"> >>> + <description>Delete ProdCatalogCategoryType Record</description> >>> + <auto-attributes mode="IN" include="pk"/> >>> + </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=1767953&r1=1767952&r2=1767953&view=diff >>> ============================================================ >>> ================== >>> --- ofbiz/trunk/framework/common/servicedef/services.xml (original) >>> +++ ofbiz/trunk/framework/common/servicedef/services.xml Thu Nov 3 >>> 19:27:07 2016 >>> @@ -857,4 +857,18 @@ under the License. >>> <auto-attributes include="pk" mode="IN" optional="false"/> >>> </service> >>> + <service name="createPeriodType" engine="entity-auto" >>> invoke="create" default-entity-name="PeriodType" auth="true"> >>> + <description>Create a PeriodType</description> >>> + <auto-attributes include="pk" mode="INOUT" optional="true"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="updatePeriodType" engine="entity-auto" >>> invoke="update" default-entity-name="PeriodType" auth="true"> >>> + <description>Update a PeriodType</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + <auto-attributes include="nonpk" mode="IN" optional="true"/> >>> + </service> >>> + <service name="deletePeriodType" engine="entity-auto" >>> invoke="delete" default-entity-name="PeriodType" auth="true"> >>> + <description>Delete a PeriodType</description> >>> + <auto-attributes include="pk" mode="IN"/> >>> + </service> >>> </services> >>> >>> >>> >>> >> >
