You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.1 KiB
31 lines
1.1 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Inherited purchase report purchase order document-->
|
|
<template id="purchase_order_report"
|
|
inherit_id="purchase.report_purchaseorder_document">
|
|
<xpath expr="//table[hasclass('table')]//tr//th[@name='th_description']"
|
|
position="before">
|
|
<th name="th_sequence" class="text-start">#</th>
|
|
</xpath>
|
|
<xpath expr="//tbody//tr//td"
|
|
position="before">
|
|
<td name="td_sequence">
|
|
<span t-esc="line.sequence_number"/>
|
|
</td>
|
|
</xpath>
|
|
</template>
|
|
|
|
<template id="purchase_quotation_report"
|
|
inherit_id="purchase.report_purchasequotation_document">
|
|
<xpath expr="//table[hasclass('table')]//tr//th[@name='th_description']"
|
|
position="before">
|
|
<th name="th_sequence" class="text-start">#</th>
|
|
</xpath>
|
|
<xpath expr="//tbody//tr//td"
|
|
position="before">
|
|
<td name="td_sequence">
|
|
<span t-esc="order_line.sequence_number"/>
|
|
</td>
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|
|
|