Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
ADITO_Update_Upgrade
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
xrm
ADITO_Update_Upgrade
Commits
592164e3
Commit
592164e3
authored
5 years ago
by
Tobias Feldmann
Browse files
Options
Downloads
Patches
Plain Diff
more functions added to the workflowServiceTaskParams webservice
parent
7e262d6d
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
process/workflowServiceTaskParams_rest/process.js
+25
-3
25 additions, 3 deletions
process/workflowServiceTaskParams_rest/process.js
with
25 additions
and
3 deletions
process/workflowServiceTaskParams_rest/process.js
+
25
−
3
View file @
592164e3
...
...
@@ -88,7 +88,9 @@ function restget (pRequest)
.
table
();
return
[
new
Parameter
(
"
documentTemplateId
"
,
"
Document template
"
,
Types
.
ENUM
,
_mapToItemArray
(
templates
)),
new
Parameter
(
"
recipientContactId
"
,
"
Recipient
"
,
Types
.
ENUM
)
new
Parameter
(
"
recipientContactId
"
,
"
Recipient
"
,
Types
.
STRING
),
new
Parameter
(
"
mailSubject
"
,
"
Subject
"
,
Types
.
STRING
),
new
Parameter
(
"
senderName
"
,
"
Sender username
"
,
Types
.
STRING
),
];
},
SetAttribute_workflowService
:
function
(
pCurrentValues
)
...
...
@@ -99,13 +101,33 @@ function restget (pRequest)
// return {id : attribute["#UID"], name : attribute["#CONTENTTITLE"]};
// });
return
[
new
Parameter
(
"
attributeId
"
,
"
Attribute
"
,
Types
.
ENUM
)
new
Parameter
(
"
attributeId
"
,
"
Attribute
"
,
Types
.
STRING
),
new
Parameter
(
"
attributeName
"
,
"
Attribute name
"
,
Types
.
STRING
)
];
},
UpdateOffer_workflowService
:
function
(
pCurrentValues
)
{
return
[];
}
},
SetSalesprojectPhase_workflowService
:
function
(
pCurrentValues
)
{
return
[
new
Parameter
(
"
salesprojectPhase
"
,
"
Phase
"
,
Types
.
STRING
)
];
},
CreateSalesprojectTouchpoint_workflowService
:
function
(
pCurrentValues
)
{
return
[
new
Parameter
(
"
touchpointType
"
,
"
Type
"
,
Types
.
STRING
),
new
Parameter
(
"
touchpointInfo
"
,
"
Info
"
,
Types
.
STRING
)
];
},
CreateSalesproject_workflowService
:
function
(
pCurrentValues
)
{
return
[
new
Parameter
(
"
salesprojectName
"
,
"
Name
"
,
Types
.
STRING
)
];
}
};
var
parameters
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment