Skip to Content
This question has been flagged
1 Reply
4823 Views

i would like to create a calculator operation on odoo using buttons.. but i like to use third field to show the computed values of two other fields.. whenever i hit the button with operations like Addition,division,multipulication etc.. the third field should show the result of the resulting button operation.

Avatar
Discard

Hi Anil Kesariya, Thanks for your code it helped me a lot for beginning with the button operations

Best Answer

@Gopalakrishan,

Here you go!

define realted methods in class which has been called from button as name value.

#your py field code

from openerp import models, fields, api

class your_class(models.Model)

    _name= 'your.model'

    f1 = fields.Integer("Field1")

    f2 = fields.Integer("Field2")

    result = fields.Iteger("Result")

#method defination those will trigger from button.

 @api.multi
    def add(self):

        self.result = self.f1 + self.f2

        return True

@api.multi
    def mul(self):

        self.result = self.f1  *  self.f2

        return True

@api.multi
    def div(self):

        self.result = self.f1 / self.f2

        return True

 

<!-- inside xml file. 

Here in xml field you will define button with type="object" and specific button call the related method from the class which is assigned as name in button.

-->

......

<header>

    <button name="add" string="Addition" type="object"/>

    <button name="mul" string="Multiplication" type="object"/>

    <button name="div" string="Division" type="object"/>

</header>

<field name="f1"/>

<field name="f2"/>

<field name="result"/>

 

.....

Hope this will work for you.

Regards,

Anil.
 

Avatar
Discard