You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by su...@apache.org on 2020/04/30 11:34:38 UTC

[ofbiz-framework] branch release17.12 updated: Fixed: Incorrect value in entity-auto invoke for removeProductFeatureDataResource. (OFBIZ-11614)

This is an automated email from the ASF dual-hosted git repository.

surajk pushed a commit to branch release17.12
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git


The following commit(s) were added to refs/heads/release17.12 by this push:
     new 972401b  Fixed: Incorrect value in entity-auto invoke for removeProductFeatureDataResource. (OFBIZ-11614)
972401b is described below

commit 972401bb9d03758374ff97f7c31f84bdc3b2e2fb
Author: Suraj Khurana <su...@apache.org>
AuthorDate: Thu Apr 30 17:03:30 2020 +0530

    Fixed: Incorrect value in entity-auto invoke for removeProductFeatureDataResource.
    (OFBIZ-11614)
    
    It was may be a typo introduced in rev 1728261, fifty months ago.
---
 applications/product/servicedef/services.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/applications/product/servicedef/services.xml b/applications/product/servicedef/services.xml
index 0c43f0e..08de2da 100644
--- a/applications/product/servicedef/services.xml
+++ b/applications/product/servicedef/services.xml
@@ -1016,7 +1016,7 @@ under the License.
         <description>Create ProductFeature-DataResource</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
-    <service name="removeProductFeatureDataResource" default-entity-name="ProductFeatureDataResource" engine="entity-auto" invoke="remove" auth="true">
+    <service name="removeProductFeatureDataResource" default-entity-name="ProductFeatureDataResource" engine="entity-auto" invoke="delete" auth="true">
         <description>Remove ProductFeature-DataResource</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>