生成 html 并在 qweb 中渲染
Generate html and render in qweb
是否可以在 .py 文件中生成 html 并在 qweb 中呈现?
<openerp>
<data>
<record id="paperformat_time" model="report.paperformat">
<field name="name">Time</field>
<field name="font_size">10</field>
</record>
<report id="time_qweb" model="hr_timesheet_sheet.sheet" string="Time"
report_type="qweb-pdf" name="time.report_time" file="time.report_time" />
<record id="time_qweb" model="ir.actions.report.xml">
<field name="paperformat_id" ref="time.paperformat_time" />
</record>
</data>
</openerp>
qweb
<template id="report_time">
<t t-call="report.html_container">
<t t-foreach="docs" t-as="t">
<span t-esc="t.__compute_html()" />
<div class="page">
<span t-field="t.html_text " />
</div>
</t>
</t>
</template>
.py 文件
class Time(models.Model):
_inherit = 'hr_timesheet_sheet.sheet'
html_text = fields.Html(string = 'Html')
@api.one
def _compute_html(self):
html_value = "<h1>TEST</h1>"
html_value += "<h1>TEST 2</h1>"
self.html_text = html_value
例如。
html_value = "<h1> + employee_id.name + "</h1>"
html_value += "<h1> + employee_id.phone + "</h1>"
现在我需要 html_value 在 qweb 中渲染 <div class="page"> put here html_value </div>
现在我在数据库中保存文本,有更好的解决方案吗?................................
是的,如果你有一个具有 html 代码的变量,如果你使用 t-esc
或 t-field
,odoo 会将其打印为文本。
如果你想渲染它使用。 t-raw
<div t-raw="doc.some_attribute" > </div>
或
<t t-raw="doc.some_attribute" > </t>
你可以试试这个
<span t-raw="my_html_field"/>
这里 my_html_field 是你的 html 格式化数据
是否可以在 .py 文件中生成 html 并在 qweb 中呈现?
<openerp>
<data>
<record id="paperformat_time" model="report.paperformat">
<field name="name">Time</field>
<field name="font_size">10</field>
</record>
<report id="time_qweb" model="hr_timesheet_sheet.sheet" string="Time"
report_type="qweb-pdf" name="time.report_time" file="time.report_time" />
<record id="time_qweb" model="ir.actions.report.xml">
<field name="paperformat_id" ref="time.paperformat_time" />
</record>
</data>
</openerp>
qweb
<template id="report_time">
<t t-call="report.html_container">
<t t-foreach="docs" t-as="t">
<span t-esc="t.__compute_html()" />
<div class="page">
<span t-field="t.html_text " />
</div>
</t>
</t>
</template>
.py 文件
class Time(models.Model):
_inherit = 'hr_timesheet_sheet.sheet'
html_text = fields.Html(string = 'Html')
@api.one
def _compute_html(self):
html_value = "<h1>TEST</h1>"
html_value += "<h1>TEST 2</h1>"
self.html_text = html_value
例如。
html_value = "<h1> + employee_id.name + "</h1>"
html_value += "<h1> + employee_id.phone + "</h1>"
现在我需要 html_value 在 qweb 中渲染 <div class="page"> put here html_value </div>
现在我在数据库中保存文本,有更好的解决方案吗?................................
是的,如果你有一个具有 html 代码的变量,如果你使用 t-esc
或 t-field
,odoo 会将其打印为文本。
如果你想渲染它使用。 t-raw
<div t-raw="doc.some_attribute" > </div>
或
<t t-raw="doc.some_attribute" > </t>
你可以试试这个
<span t-raw="my_html_field"/>
这里 my_html_field 是你的 html 格式化数据