...
Button handy | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
Table plus | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
...
...
|
...
| ||
|
...
|
Warning |
---|
This routine has a very limited working scope. Since it handles transient values, it will work correct only if an interval is called starting from the moment the user clicks the |
Submit button on the transition screen up to the point when the issue is saved in the database. Therefore we can define the valid scope for the routine to be |
validators and |
certain post functions. |
It means that you will not be able to use it in conditions, SIL services, SIL listeners nor from the SIL Gadget. |
|
before the routines that save the issue in the database. The latter are default Jira post functions that can be easily recognized by their name, for instance "Update change history for an issue and store the issue in the database ", for a regular transition "Creates the issue originally ", for the "Create Issue " transition, and so on. |
</ac:structured-macro>
<h2>Description</h2>
<ac:structured-macro ac:name="excerpt" ac:schema-version="1" data-layout="default">
<ac:parameter ac:name="hidden">true</ac:parameter>
<ac:rich-text-body>
Description
Excerpt | ||
---|---|---|
| ||
Verifies if a field had input in the transition screen. |
</ac:rich-text-body>
</ac:structured-macro>
<p>Verifies Verifies if a field had input in the transition screen. Should only be used in transitions that require a screen.</p>
<h2>Parameters</h2>
<ac:structured-macro ac:name="table-plus" ac:schema-version="1" data-layout="default">
<ac:parameter ac:name="applyColStyleToCell">true</ac:parameter>
<ac:parameter ac:name="columnTypes">s
Parameters
Table plus | ||||
---|---|---|---|---|
|
...
| ||||||||
|
...
Return Type
Boolean
A "true" return value means that the specified field had input in the transition screen.</p><h2>Examples</h2>
<h3>Example
Examples
Example 1 - checking whether a certain custom field has any
...
value
Code Block |
---|
hasInput("customfield_12003"); |
...
Returns "true" if the customfield_12003 contains a value and "false" if the customfield_12003 is empty.</p> <h3>Example
Example 2 - checking whether a ticket has
...
comments
Code Block |
---|
hasInput("comment"); |
...
Returns "true" if the <strong>Comment</strong> Comment field contains a value and "false" if the <strong>Comment</strong> Comment field is empty.</p> <h3>Example
Example 3 - checking whether time was logged against a
...
ticket
<p>The The following line will check whether a <strong>Time Spent</strong> 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.</p> <ac:structured-macro ac:name="
Code Block |
---|
...
...
hasInput("worklog"); |
...
If you want to show a warning under the <strong>Time Spent</strong> Time Spent field for cases when the worklog wasn't entered for a ticket, consider using the following lines in the <ac:link><ri:page ri:space-key="JJUPIN" ri:content-title="Customizing workflows"/><ac:plain-text-link-body>workflow validator</ac:plain-text-link-body></ac:link>.<br/>In .
In addition you can use the <ac:link><ri:page ri:content-title="isNull"/><ac:plain-text-link-body>isNull(timeSpent)</ac:plain-text-link-body></ac:link> routine to check whether the time was logged against the ticket <strong>before</strong> before the transition.</p> <ac:structured-macro ac:name="
Code Block |
---|
...
...
return false, "worklog_timeLogged", "<error message>"; |
...
<p><ac:structured-macro ac:name="
Note |
---|
<ac:rich-text-body>
<p>Custom
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 <strong>Comment</strong> Comment field, using the keyword comment.<br/>The <strong>timetracking</strong>
The timetracking fields have different internal naming in this case, so you'll have to use the next mapping:<table><tbody><tr><th>Field</th><th>Key</th></tr><tr><td>estimate</td><td>timetracking_originalestimate</td></tr><tr><td>originalEstimate</td><td>timetracking_remainingestimate</td></tr><tr><td>worklog start date</td><td>worklog_startDate</td></tr><tr><td>worklog time logged</td><td>worklog_timeLogged</td></tr></tbody></table></p>
</ac:rich-text-body>
</ac:structured-macro></p><h2>See also</h2>
<p><ac:structured-macro ac:name="contentbylabel" ac:schema-version="4" data-layout="default">
<ac:parameter ac:name="showLabels">false</ac:parameter>
<ac:parameter ac:name="max">25</ac:parameter>
<ac:parameter ac:name="showSpace">false</ac:parameter>
<ac:parameter ac:name="cql">label
Field | Key |
---|---|
estimate | timetracking_originalestimate |
originalEstimate | timetracking_remainingestimate |
worklog start date | worklog_startDate |
worklog time logged | worklog_timeLogged |
See also
Filter by label (Content by label) | ||||||||
---|---|---|---|---|---|---|---|---|
|
...
...
|