Hi,
We want to add Predefined Downloadable Templates File to Attachment Field .So that users can download their Required File From the Attachment field on the View Screen and can fill their details and re attached to the attachment field which saves a lot of time.
Best,
P Nagendra Babu
Hello,
You would need an add-on for it.
For example you could use the Power Scripts add-on:
You could write a listener on the Create issue event with a code like this:
string path_to_file;
string issue;
path_to_file =
"C:/jira/home/attachment/file_to_attach_1.jpg"
;
issue =
"PRJ-239"
;
attachFile(path_to_file, issue);
In this case after an issue has been created, it will have a file attached to this issue. A user can download it, fill it and attach back.
You can read more info about listeners here:
https://confluence.cprime.io/pages/viewpage.action?pageId=6558205
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.