我需要在几个报告的标题中显示一个字符串,该字符串必须根据要打印的报告而更改。
现在,我已经做到了:
<template id="external_layout_header" inherit_id="report.external_layout_header">
...
<t t-if="o._table=='sale_order'">
... Print here what I need to show in sale order reports ...
</t>
...
</template>
它对我来说很好用,但是现在,字符串不取决于模型/表格,而是取决于打印的报告。
我有一个模型,其中有两个要打印的报告。如果打印了一个,则必须在标题中显示“ X”,如果打印了另一个,则必须在标题中显示“ Y”。它们之间没有区别,我的意思是,模型中没有可以识别它们的属性。
例如,在以前的情况下,尽管具有相同的模型,但由于state
字段的值,我仍然能够显示正确的字符串:
<template id="external_layout_header" inherit_id="report.external_layout_header">
...
<t t-if="o._table=='sale_order'">
<t t-if="o.state=='draft'">
... Print Sale Quotation ...
</t>
<t t-if="o.state!='draft'">
... Print Sale Order ...
</t>
</t>
...
</template>
但是在这种情况下,没有任何领域对我有帮助。仅报告名称,因此我需要从标题中获取它。
有人知道如何实现这一目标吗?
答案 0 :(得分:2)
我尝试过此方法,希望您能理解。首先有一些 我知道(但不确定)的事实使我想到了这种逻辑。
docs
或o
(传递给报告的RecordSet)上设置属性。o.env.context
。我们不仅仅使用o.with_context
来向魔术属性上下文添加键,而不是添加属性
使用t-set
的功能,我们可以添加一个额外的key
,但是我们需要确保在执行此操作之前
我们在报告模板中调用<t t-call="report.external_layout">
,以便external_layout
可以找到
上下文^^
key
<!-- add extra key to context -->
<!-- you can set it one time on docs it's better -->
<t t-set="o" t-value="o.with_context(report_name='hello_report')"/>
<t t-call="report.external_layout">
现在,因为上下文是Frozendict实例或类似的实例(我不确定),所以我们可以在默认情况下使用get
检查该特殊键是否在上下文中传递的值。
<template id="external_layout_header" inherit_id="report.external_layout_header">
...
<t t-if="o.env.context.get('report_name', False) == 'hello_report'">
<!-- show what you want to show for this report -->
或者您也可以通过仅在上下文中传递值本身来使这种行为具有普遍性,从而使其变得更好
这样可以减少您external_layout上if statements
的数量。
<template id="external_layout_header" inherit_id="report.external_layout_header">
...
<t t-if="o.env.context.get('extra_value', False)">
<p t-esc="o.env.context.get('extra_value')"></p>
因此对于任何需要此行为的报告。
如果已存在,则继承模板,并确保在使用external_layout
调用x-path
之前添加密钥。
编辑:
这是在odoo 8.0
中的结果示例,我没有使用继承,而是直接更新了副本。
sale.order模板
<template id="report_saleorder_document">
<t t-set="o" t-value="o.with_context(extra_info='show this on header')"/>
<t t-call="report.external_layout">
报告的外部布局
<template id="external_layout_header">
<div class="header">
<div class="row">
<t t-if=" 'extra_info' in o.env.context" >
<p t-esc="o.env.context.get('extra_info')"></p>
</t>
<div class="col-xs-3">
<img t-if="company.logo" t-att-src="'data:image/png;base64,%s' % company.logo" style="max-height: 45px;"/>
</div>
<div class="col-xs-9 text-right" style="margin-top:20px;" t-field="company.rml_header1"/>
</div>
....
.....
...
结果是