[ofbiz-framework] branch release17.12 updated: Fixed: Error while deleting a Facility because of an existing (#291)

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

[ofbiz-framework] branch release17.12 updated: Fixed: Error while deleting a Facility because of an existing (#291)

jleroux@apache.org
This is an automated email from the ASF dual-hosted git repository.

jleroux 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 7af07c8  Fixed: Error while deleting a Facility because of an existing (#291)
7af07c8 is described below

commit 7af07c808bc984b49a8000fe20343c0e8f19a482
Author: wpaetzold <[hidden email]>
AuthorDate: Thu Apr 8 11:30:58 2021 +0200

    Fixed: Error while deleting a Facility because of an existing (#291)
   
    FacilityLocationGeoPoint (OFBIZ-12222)
   
    Adds a service to delete a FacilityLocationGeoPoint
---
 applications/product/servicedef/services_facility.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/applications/product/servicedef/services_facility.xml b/applications/product/servicedef/services_facility.xml
index e2f4f8d..9d2c39d 100644
--- a/applications/product/servicedef/services_facility.xml
+++ b/applications/product/servicedef/services_facility.xml
@@ -1422,6 +1422,10 @@ under the License.
         <description>Expire a FacilityLocationGeoPoint record</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
+    <service name="deleteFacilityLocationGeoPoint" default-entity-name="FacilityLocationGeoPoint" engine="entity-auto" invoke="delete" auth="true">
+        <description>Delete a FacilityLocationGeoPoint record</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+    </service>
 
     <!-- InventoryItemType services -->
     <service name="createInventoryItemType" engine="entity-auto" default-entity-name="InventoryItemType" invoke="create" auth="true">