Я использую Odoo V12 и в шаблоне website_sale.cart_products, я хочу добавить некоторое содержимое в HTML-тег:
Исходный шаблон просмотра
<template id="cart_products">
<table id="products" t-if="website_sale_order ..........">
<tr><th class="text-center">Origin Text Header</th>.....</tr>
</table>
</template>
Я хочуДля этого:
Изменение вида шаблона происхождения
<template id="cart_products" inherit_id="website_sale.cart_products">
<xpath expr="//table[@id='products']/tr" position="inside">
<th class="text-center" id="is_compo">Is a component</th>
</xpath>
</template>
Я не получил ошибок, но мой HTML-тег не отображается.
Помогите, пожалуйста.