跳至內容
選單
此問題已被標幟
2 回覆
2786 瀏覽次數

Let's say I create 2 integers in Studio:


x_studio_1


x_studio_2


How do I add them up together?


x_studio_total = x_studio_1 + x_studio_2

Does something like this work?

頭像
捨棄
最佳答案

Yes, it's quite simple to do with Computed Fields:

Select the field x_studio_total and then click on “More”

(Screenshot for illustration only, your field name is different)

  1. Stored
    • This should be set to FALSE in most cases.
    • If it is set to TRUE, the value of the computed field will only be changed if the value of one of the dependent fields changes, but it does mean that you can use the field in filters, grouping, domain, etc.
  2. Dependencies
    • Fields used in the calculation  - in your example: x_studio_1, x_studio_2  
  3. Compute (Python code)
for record in self: 
record['x_studio_total'] = record.x_studio_1 + record.x_studio_2

Then save your changes.

頭像
捨棄
最佳答案

Hi,

Define the x_studio_total as a compute field .

See:  https://www.youtube.com/watch?v=uKlafP54WsM


Thanks

頭像
捨棄