Hi, can I add a transition validator/simple script to check the project and then DueDate?
Something like
project == 'foo' and issue.DueDate is not EMPTY
If the above condition was met, then there would be an error stating that the duedate was required for this project. I am trying to avoid having multiple workflows ...
Was trying to do this with the simple scripted validator, but not having much luck.
Thanks in advance!
Yes, it would make it mandatory for all the projects.
As I have seen here: https://confluence.atlassian.com/display/JIRA060/Specifying+Field+Behaviour, you may have multiple field cofigurations.
So, you can create a new field configuration scheme and a new field configuration. In the field configuration you should due date required. Now, all you have to do is to use the new field configuration scheme for the project in case.
I have tried this, it works.
This is my last idea - I have seen though you don't want many schemes...
Yeah, I would have to have custom field scheme for this one project to do this?
I have tried to stay organised and have only a couple of schemes and workflows across all my projects.
Changing this in the field scheme would make it mandatory for all my projects I think?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If all you want to do is make the field mandatory, you can set it as required from the project administration, but that would make the field mandatory for all the projects.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Alexandra, unfortunately getting new plugins is a slow process, is there anyway I can just write a JQL query to use in the simple script section that's available by default?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Paul,
Using JJUPIN plugin you can write a validator as simple as this:
if(isNull(dueDate)) { return false, "duedate", "Due date should not be null!"; }
The result would look like this:
Capture.PNG
I hope this helps,
Alexandra
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.