我是在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编码是什么?
答案 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)