如何使用python为openerp报告在sxw中设置日期和时间?

时间:2014-05-29 10:14:18

标签: date time

我是在openerp的生成报告。这样,我创建了sxw并将其转换为rml,然后将rml转换为pdf。现在工作正常。我怀疑的是,当试图获得日期和时间字段值时,它只获得日期。时间不会出现在pdf报告中。

python中的字段名称:' sample_receipt_date':datetime(....)

在sxw中:[[formatLang(o.sample_receipt_date,date = True)]]

转换pdf后:dd / mm / yy

但是我希望这种格式为pdf中的dd / mm / yy / min / sec。

sxw文档中的python编码是什么?

2 个答案:

答案 0 :(得分:1)

[[ time.ctime() ]]应该在RML中使用,否则,请查看https://doc.openerp.com/6.1/vi/developer/05_reports/或完整的RML for Idiots手册

答案 1 :(得分:0)

试试这个:

replace (date=True) By (date_time=True)