Hello,
I have a custom field that I would like to update depending on what value is entered for an Extension for Jira Service Desk's bundled custom field. When I access the value of a bundled field from a groovy script in a workflow post function I use something like:
Integer row = 0
for(row = 0; row < 10; row++){
def finalTravelExpenses = ComponentAccessor.getCustomFieldManager().getCustomFieldObjectByName("Final expense 2")
String finalExpenseValue = issue.getCustomFieldValue(finalTravelExpenses)
if(finalTravelExpenses != null){
Object jsonValue = new JsonSlurper().parseText(finalExpenseValue)
List fields = getFieldsForRow(row, (Map) jsonValue)
Map expensePaidToOther = getFieldByName("Amount Paid to Other", fields)
def expensePaidToOtherValue = getFieldValue(expensePaidToOther)
}
}
def String getOptionValue(Map field) {
List<Map> options = (List<Map>) field.options
Map option = options.find { it.id == field.value }
return option ? option.name : null
}
def Map getFieldByName(fieldName, List<Map> fields) {
return fields.find { it.name == fieldName }
}
def List getFieldsForRow(row, Map json) {
List fields = null
int i = 0
json.each { k, v ->
if (i == row) {
fields = ((Map) v).get("fields")
}
i++
}
return fields
}
What I was wondering is, is if I want to get this field's value in the customer portal using groovy script and a tool like ScriptRunner's Behaviours, is it possible to obtain, or is it only available to access after the issue is created.
Thank you
I've entered a ticket with Deviniti support on this topic, I believe it is something they are working towards.
Hi, do you have any news on this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Here is the response I got from Deviniti support.
"Please be informed that due to the numerous other urgent tasks we have planned for the current months, the ETA for the new feature you requested (to support setHidden and setRequired methods),
I can provide you at the moment is the end of Q3 2021.
I wish I could provide you with a better answer, nevertheless, I hope you will understand our position."
So hopefully soon or it at least looks like they are recognizing the need for this.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
do we know if this has been implemented?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I meet same problem, seems no answer or solution yet
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.