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: 

I am trying to add a behaviour to Time Spent field to restrict the entries

Soumya Rajeshkumar
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
December 1, 2021

Used the below code for the same, but it is not working, Any help will be appreciated,Where can I see the logs?

 

import com.atlassian.jira.component.ComponentAccessor

import com.onresolve.jira.groovy.user.FormField

import com.onresolve.jira.groovy.user.FieldBehaviours

import groovy.transform.BaseScript

 

@BaseScript FieldBehaviours fieldBehaviours

 

getFieldById(getFieldChanged()).clearError()

 

def tsvalue = getFieldById(getFieldChanged()). getValue()

if(tsvalue.endsWith(’m’) && toInteger (tsvalue.minus(“m”))< 15)  {

getFieldById(getFieldChanged()).setError(“Value is not proper”)

}

if(tsvalue.endsWith(’h’) && toInteger (tsvalue.minus(“h”)) > 8)  {

getFieldById(getFieldChanged()).setError(“Value is not proper”)

}

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Answer accepted
Sarika Dalal
Community Champion
December 6, 2021

Hi @Soumya Rajeshkumar ,

 

To see the logs for the behavior script please import logger package like 

import org.apache.log4j.Level
import org.apache.log4j.Logger

def myLog = Logger.getLogger("com.jira.groovy.behaviour")

myLog.setLevel(Level.DEBUG)
myLog.debug(" Custom message write here")

Soumya Rajeshkumar
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
December 7, 2021

Thanks a lot, but the script is not working . Need a solution for that also

TAGS
AUG Leaders

Atlassian Community Events