odoo10学习笔记十三:qweb报表
2021-06-26 15:04
标签:port name ext 需要 对象 完成 二维 标签 code 一:概述 报表是使用qweb定义的,报表的pdf导出是使用wkhtmltopdf来完成的。 如果需要为一个模型创建报表,需要定义report及对应模板。 如果有需要的话还可以指定特定的纸张格式, 如果需要访问其他模型,就需要定义Custom Report。 二:Report This object‘s name is 通过调用 模板id需与报表声明中一致,比如上面的 四:报表嵌入二维码 在controller中生成二维码,然后在生成报表时嵌入: odoo10学习笔记十三:qweb报表 标签:port name ext 需要 对象 完成 二维 标签 code 原文地址:http://www.cnblogs.com/ygj0930/p/7151732.htmlreport
标签可用于定义一个报表:id - 生成的数据的id
name (必选) - 报表名用于查找及描述
model (必选) - 报表所对应的模型
report_type (必选) - qweb-pdf: pdf | qweb-html : html
report_name - 输出pdf时文件名
groups - Many2many字段用于指定可以查看使用该报表的用户组
attachment_use - 如果设置为true时,该报表会以记录的附件的形式保存,一般用于一次生成多次使用的报表
attachment - 用于定义报表名的python表达式,记录可以通过object对象访问
paperformat - 用于打印报表的文件格式的外部id(默认是公司的格式)(可以自定义格式)
report
id="account_invoices"
model="account.invoice"
string="Invoices"
report_type="qweb-pdf"
name="account.report_invoice"
file="account.report_invoice"
attachment_use="True"
attachment="(object.state in (‘open‘,‘paid‘)) and
(‘INV‘+(object.number or ‘‘).replace(‘/‘,‘‘)+‘.pdf‘)" //拼接文件名
/>
三:报表模板"report_invoice">
Report title
external_layout
来给报表添加默认的头部和尾部,pdf内容会是account.report_invoice
,由于这是qweb模板,可以在docs
对象中取得字段内容。![](‘/report/barcode/QR/%s‘ % ‘My text in qr code‘)
还可以使用查询url来传多个参数:"‘/report/barcode/?
type=%s&value=%s&width=%s&height=%s‘%(‘QR‘, ‘text‘, 200, 200)"/>
下一篇:生产环境常见的HTTP状态码列表
文章标题:odoo10学习笔记十三:qweb报表
文章链接:http://soscw.com/index.php/essay/98106.html