Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
2 Risposte
2782 Visualizzazioni

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?

Avatar
Abbandona
Risposta migliore

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.

Avatar
Abbandona
Risposta migliore

Hi,

Define the x_studio_total as a compute field .

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


Thanks

Avatar
Abbandona