Skip to Content
Menu
This question has been flagged
3 Replies
9271 Views

Good day all

I am brand new to OpenERP did a installation a day back, but I need to change the word (title) from Invoice to Tax Invoice and the word tax to VAT on my invoices and quotations (all prints ) as it works in South Africa please help. I did find the account_print_invoice .rml file but no luck with it.

Avatar
Discard
Best Answer

In odoo version 8
go to Settings menu > Technical > Reports > Reports
In the search type INVOICES and press ENTER
click on the record
click on purple text "Search associated QWeb views"
click on report_invoice_document
click EDIT button
under Architecture replace <span t-if="o.type == 'out_invoice' and (o.state == 'open' or o.state == 'paid')">Invoice</span> with <span t-if="o.type == 'out_invoice' and (o.state == 'open' or o.state == 'paid')">Tax Invoice</span>

Save
Just to be safe, Logout, restart your server and delete your browser cache
The next invoices printouts you generate will be labelled Tax Invoices. Old ones will not show remain showing Invoice even if you reprint after this change

Avatar
Discard
Best Answer

Hi Thanks, it helped, in odoo 14 it is nearly the same;

with developer mode on

go to Settings menu > Technical > Reporting > Reports
In the search type INVOICES and press ENTER
click on the Invoices without Payment record
click on " > QWeb views"
click on report_invoice_document
click EDIT button
under Architecture replace 

Invoice with
Tax Invoice

Avatar
Discard
Best Answer

If you want to change words, you have to modify the translation (Settigns -> Application terms -> Translated Terms.

Search for the terms you want to change.

Important: when you do an upgrade/installation of a language, do not tick the option: 'Over write existing terms'!

Avatar
Discard