Table plus |
---|
applyColStyleToCell | true |
---|
heading | 0 |
---|
columnTypes | s,s,s,s |
---|
multiple | false |
---|
columnAttributes | style="background:#e5e7ea;font-weight:bold,,style="background:#e5e7ea;font-weight:bold, |
---|
enableSorting | false |
---|
|
Syntax | hasInput(customfield_id) | Package | | Alias | | Pkg Usage | | |
Excerpt |
---|
|
Verifies if a field had input in the transition screen. |
Verifies if a field had input in the transition screen. Should only be used in transitions that require a screen.
Table plus |
---|
applyColStyleToCell | true |
---|
columnTypes | s,s,s,s |
---|
heading | 0 |
---|
multiple | false |
---|
enableSorting | false |
---|
|
Parameter name | Type | Required | Description |
---|
customfield_id/keyword | String | Yes | Id of the custom field (customfield_id) or the specific keyword for the standard fields. | |
Boolean
A "true" return value means that the specified field had input in the transition screen.
Code Block |
---|
hasInput("customfield_12003"); |
Returns "true" if the customfield_12003 contains a value and "false" if the customfield_12003 is empty.
Code Block |
---|
hasInput("comment"); |
Returns "true" if the Comment field contains a value and "false" if the Comment field is empty.
The following line will check whether a Time Spent field was filled out for a ticket during the transition (on the transition screen). This is useful for cases when you want to make sure that users log time when they resolve tickets.
Code Block |
---|
hasInput("worklog"); |
If you want to show a warning under the Time Spent field for cases when the worklog wasn't entered for a ticket, consider using the following lines in the Customizing workflows.
In addition you can use the isNull routine to check whether the time was logged against the ticket before the transition.
Code Block |
---|
return false, "worklog_timeLogged", "<error message>"; |
Note |
---|
Custom fields must be referenced by id (customfield_id), while standard fields can be specified by one of the following keywords: summary, timetracking, security, attachment, reporter, environment, description, duedate. You can also check the Comment field, using the keyword comment. The timetracking fields have different internal naming in this case, so you'll have to use the next mapping: Field | Key |
---|
estimate | timetracking_originalestimate | originalEstimate | timetracking_remainingestimate | worklog start date | worklog_startDate | worklog time logged | worklog_timeLogged |
|
Filter by label (Content by label) |
---|
showLabels | false |
---|
max | 25 |
---|
showSpace | false |
---|
cql | label = "customfield_routine" and space = currentSpace ( ) |
---|
labels | array_routines |
---|
|