0

系统: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="{&quot;widget&quot;: &quot;contact&quot;, &quot;fields&quot;: [&quot;address&quot;, &quot;name&quot;], &quot;no_marker&quot;: true}" style="border-bottom: 1px solid black;"/>
            </div>
        </div>
    </div>
</t>

页脚和页眉似乎都包括在内。但所有 PDF 报告的结果是: - 没有页眉 - 内容正常(但没有字体或样式) - 页脚正常(但没有字体或样式)

谢谢

4

2 回答 2

0

我发现我的问题与此类似:https ://github.com/odoo/odoo/issues/1105

这是由于 web.base.url 值不同,具体取决于在一个地方或另一个地方工作。然后我只是将它修复为最常见的值,并且不得不忘记在一些带有隧道的计算机上工作。检查详细信息以修复值:https ://bugs.launchpad.net/openobject-server/+bug/1295022

于 2015-04-23T13:51:07.920 回答
0

你好斯蒂芬·坦皮尼,

请阅读这篇文章

点击查看您有问题的帖子的答案

我希望这对你有帮助..:)

于 2015-04-23T05:13:41.353 回答