美好的一天!我只想在Odoo的树视图中使用多种颜色,这将显示一个Record state ==已批准的颜色为蓝色 state == post colors为红色
现在我只有一种处于批准状态的颜色。 非常感谢您的帮助!!
答案 0 :(得分:5)
亲爱的,请参阅此link并使用属性颜色
示例强>
<record id="view_model_tree" model="ir.ui.view">
<field name="name">model_tree</field>
<field name="model">model name</field>
<field name="arch" type="xml">
<tree colors="blue:state == 'draft';gray:state in ('cancel','done');black:state == 'open'" >
<field name="state"/>
</tree>
</field>
</record>
现在您可以在v10和v11中使用
<tree decoration-info="template_stage_id==eco_stage_id"> <field name="template_stage_id"/> <field name="eco_stage_id" />
</tree>
您可以使用更多属性,如:
**decoration-muted**
**decoration-dange**
答案 1 :(得分:0)
<tree colors="blue:state == 'approved';red:state == 'post'">
<field name="state"/>
</tree>