1

在 openerp 中,我们有一个 html 字段fields.html()。表单包含html编辑器,html代码存储在数据库中。是否可以使用格式打印 rml 报告中的 html 值(即必须呈现 html 并且必须在 rml 报告中打印结果)请建议我一种方法。谢谢你的时间。

4

1 回答 1

-1

RML 无法解析 HTML 标签,但您必须为所有标签创建自己的解析器。但是,如果您在第 647 行添加“openerp\report\render\rml2pdf”,RML 可以解析简单的标签(如粗体、斜体、...):

if isinstance(rc1, unicode): rc111 = str(rc1) rc111 = unicode(rc111.replace('lg;', '<').replace('gt;', '>'))

于 2015-01-20T12:10:17.653 回答