Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

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

Soumya Rajeshkumar 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

Suggest an answer

Log in or Sign up to answer
0 votes
Answer accepted
Sarika Dalal
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
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 December 7, 2021

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

TAGS
AUG Leaders

Atlassian Community Events