The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How can I store additional value per Jira worklog

CST JIRA Confluence Admin
Contributor
November 1, 2016

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.

 

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
JamieA
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
November 2, 2016

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")