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

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

commit 37f33f48ff56a1201181e51bc3a2c2fb373e2e43
Author: Nicolas Malin <nicolas.ma...@nereide.fr>
AuthorDate: Fri Mar 27 11:46:11 2020 +0100

    Fixed: correct path to ftpAddress services
    (OFBIZ-11359)
    
    After the minilang ContactMarchServices.xml to groovy, I forgot to change
    the path of existant ftpAddress services already present before.
    
    Thanks to Olivier Heintz for this alert
---
 applications/party/servicedef/services.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/applications/party/servicedef/services.xml 
b/applications/party/servicedef/services.xml
index b26dcfc..fc71f8e 100644
--- a/applications/party/servicedef/services.xml
+++ b/applications/party/servicedef/services.xml
@@ -505,7 +505,7 @@ under the License.
         <attribute name="partyIdTo" type="String" mode="IN" optional="false"/>
     </service>
     <service name="createPartyFtpAddress" engine="groovy"
-             
location="component://party/groovyScripts/party/ContactMechServices.groovy" 
invoke="createPartyFtpAddress" auth="true">
+             
location="component://party/groovyScripts/contact/ContactMechServices.groovy" 
invoke="createPartyFtpAddress" auth="true">
         <description>Create an Ftp Address associated to a party</description>
         <permission-service service-name="partyContactMechPermissionCheck" 
main-action="CREATE"/>
         <auto-attributes entity-name="ContactMech" include="nonpk" mode="IN" 
optional="true"/>
@@ -515,7 +515,7 @@ under the License.
         <attribute name="contactMechId" type="String" mode="INOUT" 
optional="true"/>
     </service>
     <service name="updatePartyFtpAddress" engine="groovy"
-             
location="component://party/groovyScripts/party/ContactMechServices.groovy" 
invoke="updatePartyFtpAddress" auth="true">
+             
location="component://party/groovyScripts/contact/ContactMechServices.groovy" 
invoke="updatePartyFtpAddress" auth="true">
         <description>Update an Ftp Address associated to a party</description>
         <permission-service service-name="partyContactMechPermissionCheck" 
main-action="UPDATE"/>
         <auto-attributes entity-name="PartyContactMech" mode="IN" 
optional="true"/>

Reply via email to