Hello, while setup a ticket/issue i was unable find a way to setup new fields visible to customers.
Case:
At this point i want to add a Field 'Price" and set agreed value "$4000" visible at all times.
What i tried:
Hello Alexey,
Thank you for reaching out to Community!
When it comes to showing a custom field in the portal, it's necessary that it's added to the request form and as you tested, this field will be available for the customer to edit when creating the issue.
Based on your tests with the automation, I found a workaround that may help you. It's a simple automation rule, not using JSON.
It's possible to add the value of the field Price to the summary or description when the field value is changed.
Please, take your time to test and let us know if you have any other questions.
Regards,
Angélica
You are awesome Angélica, Works perfectly!
BTW is there a way to limit that rule to run only once or update Summary and a description upon second use?
Season i'm asking, if agent makes a typo, then script runs again and add more data:
Testing automation + $40000 + $4000 ... + more with any touch of the {{field.price}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Alexey,
I'm glad that I could help and sorry for not realizing that this issue would happen.
With the help of my amazing colleagues, we found a workaround that adds the custom field value to the summary without appending new values everytime the field is updated.
Please, update your automation rule using the options below:
Here are the values for you to copy/paste:
{{issue.summary.substringBefore("$")}}${{issue.price}}
{{issue.summary}} ${{issue.price}}
1.
2. 3.
4.
5.
Gif:
Hope this helps!
If you face any issue or have any other questions, please let us know.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Angélica LuzThank you very much! Modified the script to
[{{issue.price}}] {{issue.summary.substringAfter("]")}}
[{{issue.price}}] {{issue.summary}}
For better clients' visibility and more flexibility in regards of a currency.
I've learned a lot from this case, how to use logic conditions and partial field editing.
Thank you for your time and effort!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.