如何从树属性的值调用函数

时间:2014-11-19 06:11:54

标签: function view colors tree field

我有树视图:

<tree string="quality" colors="red:expire_date &lt; **current_date**;">
  <field name="code"/>
  <field name="supplier"/>
  <field name="approved"/>
  <field name="invoice"/>
  <field name="**expire_date**"/>
</tree>
塔尔工作很可疑。在属性&#34;颜色&#34;我想调用一个函数:

def fecha_restada (self,cr,uid,ids,context = None):         return(datetime.today() - relativedelta(days = 10))。strftime(&#39;%d-%m-%Y&#39;)

Itryed:但它发给我错误:fecha_restada没有被定义。但我的功能是返回正确的值,但我无法从那里调用它。

如果我解决了这个问题,在我将参数expired_date调用函数并通过我的expire_date参数来替换datetime.today()之后。

...谢谢你的时间!!!!

0 个答案:

没有答案