如何将一个光标的值添加到两个字段中,具体取决于将光标置于其中一个字段时单击该按钮的时间。
python代码
from odoo import models, fields, api
class your_class(models.Model):
_name= 'your.model'
f1 = fields.Float('field1')
f2 = fields.Float('Field2')
result = fields.Float('Result')
@api.one
def n1(self):
self.write({'f1': '1'})
@api.one
def n2(self):
self.write({'f1': '2'})
@api.one
def n3(self):
self.write({'f1': '3'})
xml代码
<field name="f1"/>
<field name="f2" default_focus= "1"/>
<field name="result"/>
<button name="n1" string="1" type="object"/>
<button name="n2" string="2" type="object"/>
<button name="n3" string="3" type="object"/>