当我在 OpenERP 7 的其他字段中写入值时如何更新字段?

How to update a field when I'm writing a value in other field in OpenERP 7?

我是 openerp 的新手,我正在尝试如何才能知道当我在其他字段中写入值时如何编写代码来计算字段中的结果,例如:

field1 = 5000 

field2 = field1 * 5

我已阅读文档并尝试使用编程函数,但总是出现错误。

onchange 是您问题的解决方案。

这是 .py 端的示例:

def onchange_field1(self, cr, uid, ids, field1, context=None):
    vals = {}
    if field1 > 0:
        vals['field12'] = field1 * 5
    return {'value': vals}

这是 .xml 方面的示例:

<field name="field1" on_change="onchange_field1(field1)"/>

经过几天的尝试终于解决了,我使用了这个代码:

def _get_salario_diario(self, cr, uid, ids, field_name, arg, context=None):
    res= {}
    for record in self.browse(cr, uid, ids, context=context):
        res[record.id]= record.month_wage / 30
    return res
_columns = {
    'month_wage': fields.float('Salario Mensual Bs.', digits=(16,2)),
    'diary_wage': fields.function(_get_salario_diario, method=True, type='float', string='Salario Diario Bs.', store=True),
}

def onchange_month_wage(self, cr, uid, ids, month_wage, context=None):
        vals = {}
        if month_wage > 0:
            vals['diary_wage'] = salario_mensual / 30
        return {'value': vals}

在我的 xml 文件中

<field name='month_wage' on_change="onchange_month_wage(month_wage)"/>
<field name='diary_wage'/>

它解决了我的问题并且我的模块工作正常,我希望它能帮助任何需要它的人。

毕竟,非常感谢您的帮助!