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.
13 lines
691 B
13 lines
691 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- This XML snippet is used to extend the 'report_purchasequotation_document' template. -->
|
|
<template id="report_purchasequotation_document_inherit_order_line_note" inherit_id="purchase.report_purchasequotation_document">
|
|
<!-- Add a 'Note' column header after the 'Description' column header in the report. -->
|
|
<xpath expr="//thead//th[@name='th_description']" position="after">
|
|
<th name="th_note" class="text-start">Note</th>
|
|
</xpath>
|
|
<xpath expr="//tbody//td" position="after">
|
|
<td name="td_note"><span t-field="order_line.note"/></td>
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|
|
|