Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
5 Odpowiedzi
10716 Widoki

Hello, 

i have two fields 

        one = fields.Float()

        two = fields.Float()

i want

toto = one + two 

how can i do that??

ODOO 11

Awatar
Odrzuć

Exactly as you did. You can now apply the sum (one + two) to a variable which is shown in the frontend.

Najlepsza odpowiedź

try this one.

one = fields.Float()

two = fields.Float()

total = fields.Float(compute='_get_sum')


    @api.depends('one', 'two')

    def _get_sum(self):

        for rec in self:

           rec.update({

                'total': rec.one+rec.two,

            })

Awatar
Odrzuć

sjmple and to the point:) My father nabaged to add field using your advice (he is non IT 60+). Thanks

Najlepsza odpowiedź

Tested in Odoo v11

one = fields.Float()

two = fields.Float()

total = fields.Float(compute='_get_sum')


    @api.depends('one', 'two')

    def _get_sum(self):

        for rec in self:

          rec.total = rec.one+rec.two


Awatar
Odrzuć
Najlepsza odpowiedź

hello ,

you can add new field as compute field, and that new field make the total of field1 and field2.

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
1
wrz 19
6524
0
kwi 23
2973
0
maj 15
4479
2
mar 15
3762
2
wrz 24
2408