You can use math expressions to insert values into fields or set values of a number custom field anywhere where custom fields can be edited (create, edit & transition actions). Details of operators, functions and constants are in the math reference section.
数値型のカスタム フィールドでは、式によって値を設定できます。
1 + 4 sets the field to "5"
別のフィールドで数式を使用するには、次のように値を挿入します。
{{#=}}1 + 4{{/}} // more verbose but more obvious {{#math}}1 + 4{{/}} // increase a number by 1 {{#increment}}4{{/}}
数値フィールドを参照する
Jira の数値型カスタム フィールドによって計算を実行するには、計算式でフィールドをスマート値として参照するだけです。
{{#=}}3.2 * {{issue.My Number field}} + 43{{/}}
または、2 つのカスタム フィールドを追加する場合は、次の式を使用できます。
{{#=}}{{issue.Sale Amount}} * {{issue.Discount}}{{/}}