当结束日期小于字段上的当前日期时,我想将字段值更改为红色?我有字段名称followup_date,如果已经过了跟进日期,那么它应该在网格上标记为红色。该方法将创建前一个日期小于当前日期,但我不知道如何编写此方法?这怎么可能?谁能帮我吗?在此先感谢...
答案 0 :(得分:1)
如果按网格表示One2many表格。这是一个可以帮助你的例子。
<tree colors="red:followup_date < current_date">
<field name="followup_date"/>
</tree>
答案 1 :(得分:1)
我解决了我的问题,它现在为我工作。
<tree string="Claims" position="attributes">
<attribute name="colors">red:followup_date < current_date;</attribute>
</tree>
<field name="stage_id" position="after">
<field name="followup_date" invisible="1"/>
<field name="current_date" invisible="1"/>
</field>