How can I store additional value per Jira worklog

CST JIRA Confluence Admin 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

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

 

 

Suggest an answer

Log in or Sign up to answer