Set summary with Number Field using post function
I would like it appears like 400 000. (separately)
Hello,
You could use the Power Scripts add-on:
You could add a post function with a code like this:
summary = summary + "400000 AZN";
You can read more about post functions here:
https://confluence.cprime.io/display/JJUPIN/Customizing+workflows
Hi sir,
400 000 it is amount of money.
It can be 10 000, 100 000 or etc.
Post-function takes value from number field(custom-field) and add this to summary.
In this case if amount is 130 000 it shows like this:130000.
Is there any function(without script) which I can use in post function to separate zero.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can not do it out of the box. You would need a plugin. With the Power Scripts add-on your script would look like this:
summary = summary + #{your number custom field name};
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No. You need to script/code this, which means writing an App, or using an existing one.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Nic Brough -Adaptavist-
I used script for separate number and it worked.
Thank you!
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.