0

我在 account.invoice 中为日期范围添加了两个字段,它工作正常,但我无法在报告中打印日期。这是我的代码:

'date_from':fields.function(lambda *a,k:{}, method=True, type='date',string="Date from"), 'date_to':fields.function(lambda *a,k:{ }, method=True, type='date',string="Date to"),

<field name="date_from" filter_domain="[('date_invoice','&gt;=',self)]"/>
<field name="date_to" filter_domain="[('date_invoice','&lt;=',self)]"/>
4

1 回答 1

0

在你的 rml 报告中试试这个 对于 date_from [[date_format(object.date_from)]] 和 For a date_to [[date_format(object.date_to)]]

于 2013-10-28T06:14:32.193 回答