You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Hi, I want to limit the logging work on issues if the remaining estimated field reached to zero, I mean maximum value that users can log work is equal to remaining estimated that report set,
below is the code I wrote, I create a behavior with below code and mapped it to Timespent field,
@BaseScript FieldBehaviours fieldBehaviours
FormField logtime = getFieldById(getFieldChanged())
def issueManager = ComponentAccessor.getIssueManager()
def mIssue = underlyingIssue as MutableIssue
//def timeSpent = mIssue.getTimeSpent()
def remainingEstimate = mIssue.getEstimate()
def a = remainingEstimate.value
def b1 = logtime.getValue()
Number b=(Number)b1
if(b.compareTo(a)>0)
{ logtime.setHelpText("Due date of Sub-Task can not be after Due date of the Task, Due Date can be maximum") logtime.setFormValue("") }
else
{ logtime.clearHelpText() }
we are using Tempo timesheet for logging work, of course I test it with jira log work too but it does not work
Hi Crs co, did you find any path for this? We have similar need and neither Jira or Tempo provide a native solution...
The manager’s daily activities include a list of challenges to reach high levels of efficiency for their teams. Part of these challenges is related to how to deal with the worklog systems sin...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.