I've got custom field type (numeric) field.
Value of this field is id of one of active objects, linked to specific project.
So when i'm moving issue to another project, i wish to update custom field value according to new project.
How this can be done?
Code.
Two options spring to mind - hacking the "move" functionality in the core of JIRA, and not actually doing it in the move at all.
The second option means writing a listener that could catch the "move" event, have a look at the issue and change the number as appropriate (technically, this would happen after the move, not as part of it, but it will usually be fast enough that the users will see it as the same action)
Second is not an option, because there's no way to automatically assign new value.
Basically, i need my field to work just like "fixVersion" do when issue is moved to another project.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It asks for a fix version because fix version lists are different between projects.
You could configure your field so that it has two separate option lists, that would cause similar behaviour.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is exactly what i need.
Where this confuguration should be done?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It's in the field context stuff. Custom fields -> find your field -> configure
You should find a screen that says "this field belongs to some projects and has the following options", along with the ability to edit the options.
Towards the top of that, you'll find an "add context" button, use that and choose which project(s) or issue type(s) to apply it to. Then define the new list.
Note - this may be destructive, I can't remember how it works!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thing is, that value of my custom field is actually ID of active object, which is created/updated/deleted through custom editor in project administration interface..
I've examined JIRA MoveIssueUpdateFields class and found that there's hasValue() method of OrderableField object, which determines if the field has a value for the given issue. Fix version uses that.
Bad news is that custom fields created through "customfield-type" plugin module doesn't inherit OrderableField.
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.