odoo - get value from many2one field

99封情书 提交于 2019-12-06 03:47:07

For many2one field, we need to first take id of that record and than browse that record with id and take desire value from that.

Try with this code:

def _amount_insurance(self, cr, uid, ids, val1, context=None):
    val = 0.0
    for insurance in self.browse(cr, uid, ids,context=context):
        if insurance.xx_insurance_type:
            val = (val1 * (insurance.xx_insurance_type.insurance_percentage/100))
    return val
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!