在Odoo中,如何在渲染完成之前从python代码更新任何视图?

时间:2019-02-06 10:03:07

标签: python python-3.x odoo odoo-10 odoo-11

我在view元素中传递colors参数的值时遇到问题。 所以我有可以返回颜色的模型:

class MyTask(models.Model):
     _inherit = "project.task"
     is_special=fields.Boolean()     

     @api.model
     def get_colors(self):
          return 'red: is_special == true;'

我也有这样的观点:

<record id="my_module_timeline" model="ir.ui.view">
<field name="model">project.task</field>
<field name="type">timeline</field>
<field name="arch" type="xml">
    <timeline date_start="date_start"
            date_stop="date_end"
            default_group_by="project_id"
            event_open_popup="true"
            colors= <-- how can i get the value from my model get_colors() function?
            >
    </timeline>
</field>

颜色参数必须为字符串,并且不能为模型字段。 我尝试了很多方法来从模型函数中获取此字符串,但效果不佳。

<timeline>只是示例,它也可以是树,日历等。 对于测试,我来自:

https://github.com/OCA/web/tree/11.0/web_timeline

可以这样吗?

谢谢。

1 个答案:

答案 0 :(得分:2)

您可以使用fields_view_get方法从python代码动态更新视图(在呈现视图之前)。这只是我在Odoo中找到的一个示例:

@api.model
def fields_view_get(self, view_id=None, view_type='form', toolbar=False, submenu=False):
    res = super(MailThread, self).fields_view_get(
        view_id=view_id, view_type=view_type, toolbar=toolbar, submenu=submenu
    )
    if view_type == 'form':
        doc = etree.XML(res['arch'])
        for node in doc.xpath("//field[@name='message_ids']"):
            # the 'Log a note' button is employee only
            options = safe_eval(node.get('options', '{}'))
            is_employee = self.env.user.has_group('base.group_user')
            options['display_log_button'] = is_employee
            # save options on the node
            node.set('options', repr(options))
        res['arch'] = etree.tostring(doc, encoding='unicode')
    return res

将其放置在模型中。用doc.xpath查找节点,并用node.set

更新