在 xml 视图中获取 odoo 12 字段选项的当前日期?

Get current date in xml view for field options in odoo 12?

想要使用当前选项属性评估日期格式值

<field name="last_date" position="attributes">
    <attribute name="options"> {
      "bg_color": "red: last_date <= datetime.datetime.now().strftime('%Y-%m-%d 00:00:00')",
      "fg_color": "black"
    }</attribute>
</field>

我也累了"& l e;"相反,两者都引发了 none define entity

的错误

有人知道怎么解决吗?

使用变量 current_date 而不是将其与另一个日期一起使用。你会得到结果。

{ "bg_color": "red: last_date &lt=; current_date", "fg_color": "black" }

谢谢