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 8fc5028be99aa0df662dabbb93d0c9cd36271e6a Author: Nicolas Malin <nicolas.ma...@nereide.fr> AuthorDate: Fri Mar 27 11:41:03 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_contact.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/applications/party/servicedef/services_contact.xml b/applications/party/servicedef/services_contact.xml index 1fa4461..90fd990 100644 --- a/applications/party/servicedef/services_contact.xml +++ b/applications/party/servicedef/services_contact.xml @@ -91,14 +91,14 @@ under the License. <attribute name="emailAddress" type="String" mode="IN" optional="false"/> </service> <service name="createFtpAddress" default-entity-name="FtpAddress" engine="groovy" invoke="createFtpAddress" - location="component://party/groovyScripts/party/ContactMechServices.groovy"> + location="component://party/groovyScripts/contact/ContactMechServices.groovy"> <description>create FtpAddress</description> <permission-service service-name="partyBasePermissionCheck" main-action="CREATE"/> <auto-attributes mode="OUT" include="pk"/> <auto-attributes mode="IN" include="nonpk" optional="true"/> </service> <service name="updateFtpAddressWithHistory" default-entity-name="FtpAddress" engine="groovy" invoke="updateFtpAddressWithHistory" - location="component://party/groovyScripts/party/ContactMechServices.groovy"> + location="component://party/groovyScripts/contact/ContactMechServices.groovy"> <description>update FtpAddress</description> <permission-service service-name="partyBasePermissionCheck" main-action="UPDATE"/> <auto-attributes mode="IN" include="pk"/>