Hi all,
I have a customized report that including vendor cost, budget and remaining cost per JIRA worklog. Are there any ways to store the remaining cost per worklog? Need to show left over amount of budget.
For example:
The issue has the custom field name: Approved Amount = 10000 USD
I have a groovy script to calculate the vendor cost = hours * rate
Worklog id 01: vendor cost: 500 USD, remaining cost = 9500 USD
Worklog id 02: vendor cost: 400 USD, remaining cost = 9100 USD
The script for calculation is ready. Just want to know is it possible to store a value per worklog on Tempo or JIRA database.
You can use properties... they're not that flexible in that you can't use JQL query on them unless you write your own JQL function. But they should be fine if you just want to display an additional value or use it in a report.
Sample:
import com.atlassian.core.ofbiz.util.OFBizPropertyUtils import com.atlassian.jira.component.ComponentAccessor import com.atlassian.jira.issue.worklog.WorklogManager def worklogManager = ComponentAccessor.getComponent(WorklogManager) def issueManager = ComponentAccessor.getIssueManager() def issue = issueManager.getIssueObject("JRA-1") def worklogs = worklogManager.getByIssue(issue) def worklog = worklogs.first() def propertySet = OFBizPropertyUtils.getPropertySet("Worklog", worklog.id) propertySet.setDouble("budget", 100) // retrieving log.debug propertySet.getDouble("budget")
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.