我正在尝试在预览页面中更改销售订单的报价。我需要将页面中的“由odoo徽标提供支持”替换为其他内容。这是页面的屏幕截图。
我试图在addons文件夹中找到销售页面和相关模块。 尝试 grep -rnw'/ path / to / addons /'-e'Odoo徽标'查找视图,但注释视图中的行却无济于事。如何创建此预览页?如何在此页面中进行更改?
答案 0 :(得分:1)
您必须更改ID为“ portal_record_sidebar”的QWeb模板。您可以在门户应用程序中找到它。
Odoo代码中有很多示例如何扩展/更改QWeb客户端模板。
以下是Odoo module website_sale中的一个随机示例:
<template id="website_sale.brand_promotion" inherit_id="website.brand_promotion">
<xpath expr="//div[hasclass('o_brand_promotion')]" position="replace">
<div class="o_brand_promotion">
Powered by <a target="_blank" class="badge badge-danger" href="http://www.odoo.com/page/website-builder?utm_source=db&utm_medium=website">Odoo</a>,
the #1 <a target="_blank" href="http://www.odoo.com/page/e-commerce?utm_source=db&utm_medium=website">Open Source eCommerce</a>.
</div>
</xpath>
</template>