Please could someone tell me what I'm doing wrong....
Trying to change reports properly by using modules.
Have created module
Have edited the __manifest__.py
'category': 'Accounting & Finance',
'version': '0.1',
# any module necessary for this one to work correctly
'depends': ['base', 'account',],
# always loaded
'data': [ 'views/templates.xml',],
Have created my templates.xml
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<template id="report_invoice_document_multzer_inherit" inherit_id="account.report_invoice_document">
<xpath expr="(//table[@class='table table-condensed'])[1]//thead/tr" position="replace">
<tr>
<th>Description</th>
<th class="hidden">Source Document</th>
<th class="text-right">Quantity</th>
<th class="text-right">Unit Price</th>
<th t-if="display_discount" class="text-right">Disc.(%)</th>
<th class="text-right">VAT</th>
<th class="text-right">VAT Excluded Price</th>
</tr>
</xpath>
</template>
</data>
</odoo>Have added the module
Have changed ?debug>Settings>Technical>Reports>Invocies>Advanced Properties - to NOT reload from attachement
and.....
Nothing :(
Any guidance please
EDIT
It appears is is already overwritten by "report_invoice_layouted"which is part of sale - will have to investigate further?:)