我正在使用Odoo 10,并且我不希望在销售订单报告上打印产品内部参考(默认代码)。我只想从报告中删除,以便客户看不到内部参考。
我尝试在另一篇文章中看到下面的内容,但是没有用。
<!-- remove internal reference form Sales report.-->
<template id="sale_order_fields_inherit_saleorder_document" inherit_id="sale.report_saleorder_document">
<strong><span t-field="l.product_id.name"/></strong>
</template>
答案 0 :(得分:1)
继承sale_order_document report
并将l.name
替换为product_id.name
,这里是完整的代码:
<template id="sale_order_fields_inherit_saleorder_document"
inherit_id="sale.report_saleorder_document">
<xpath expr="//span[@t-field='l.name']" position="replace">
<span t-field="l.product_id.name"/>
</xpath>
</template>
您可以尝试这个!!,也许会对您有所帮助!!