系统:Odoo V8。
问题:在最后一个PDF 订单上,我发现不知何故未应用模板。(只有扁平丑陋的文本)所有字段都在这里,包括页脚但页眉不在这里,没有应用样式也没有图片(因为它在以前的报告中默认情况下) 所有的 PDF 报告都发生了同样的情况,所以我猜我以某种方式更改或终止了模板。我该如何解决?
之前:安装后一切正常。基本模板已应用并且适用于销售和采购 PDF 文件。
更新:公司设置中模型的内容(报告选项卡下的设置=>公司)是正确的(当我预览页面时一切正常)
external_layout qview 是:
<?xml version="1.0"?>
<t t-name="report.external_layout">
<!-- Multicompany -->
<t t-if="o and 'company_id' in o">
<t t-set="company" t-value="o.company_id"/>
</t>
<t t-if="not o or not 'company_id' in o">
<t t-set="company" t-value="res_company"/>
</t>
<t t-call="report.external_layout_header"/>
<t t-raw="0"/>
<t t-call="report.external_layout_footer"/>
</t>
external_layout_header qview 是(我们可以清楚地看到对 RML 标头的调用,这是预期的):
<?xml version="1.0"?>
<t t-name="report.external_layout_header">
<div class="header">
<div class="row">
<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>
<div class="row zero_min_height">
<div class="col-xs-12">
<div style="border-bottom: 1px solid black;"/>
</div>
</div>
<div class="row">
<div class="col-xs-3">
<div t-field="company.partner_id" t-field-options="{"widget": "contact", "fields": ["address", "name"], "no_marker": true}" style="border-bottom: 1px solid black;"/>
</div>
</div>
</div>
</t>
页脚和页眉似乎都包括在内。但所有 PDF 报告的结果是: - 没有页眉 - 内容正常(但没有字体或样式) - 页脚正常(但没有字体或样式)
谢谢