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-plugins.git


The following commit(s) were added to refs/heads/trunk by this push:
     new d0a0502bb Fixed: createProject should call "createProject" instead of 
"createProjet"  (OFBIZ-13205)
d0a0502bb is described below

commit d0a0502bb3272274dab41e3b8daee2cc9edf0f6f
Author: Jacques Le Roux <jacques.le.r...@les7arts.com>
AuthorDate: Tue Jan 28 09:32:38 2025 +0100

    Fixed: createProject should call "createProject" instead of "createProjet"  
(OFBIZ-13205)
    
    This is in ProjectServicesScript.groovy
    
    Thanks: Sixty One
---
 .../groovy/org/apache/ofbiz/projectmgr/ProjectServicesScript.groovy     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/projectmgr/src/main/groovy/org/apache/ofbiz/projectmgr/ProjectServicesScript.groovy
 
b/projectmgr/src/main/groovy/org/apache/ofbiz/projectmgr/ProjectServicesScript.groovy
index 20db67518..cc9a3abeb 100644
--- 
a/projectmgr/src/main/groovy/org/apache/ofbiz/projectmgr/ProjectServicesScript.groovy
+++ 
b/projectmgr/src/main/groovy/org/apache/ofbiz/projectmgr/ProjectServicesScript.groovy
@@ -34,7 +34,7 @@ import java.sql.Timestamp
 Map createProject() {
     Map serviceResult
     if (parameters.templateId) {
-        serviceResult = run service: 'copyProjet', with: [*: parameters,
+        serviceResult = run service: 'copyProject', with: [*: parameters,
                                                           projectId: 
parameters.templateId]
     } else {
         serviceResult = run service: 'createWorkEffort', with: [*: parameters,

Reply via email to