Skip to Content
Menu
This question has been flagged
2 Replies
5333 Views

Hello dear community,


I created my own report (invoice) in odoo 11.0. For using it I've to make an action binding (at least in odoo 8.0 it was necessary). So.. how can i make an action binding in odoo 11.0 or is it even possible? Or do I have to do something else to use the template I created?


Thanks in advance.

Joe

Avatar
Discard

Have you tried creating one in Odoo 11? The steps are same.

Best Answer

You can create custom report in odoo11 and model = account.invoice in xml file, it'll make action binding to that model

for example: 

<report
    id="account_invoices"
    model="account.invoice"
    string="Invoices"
    report_type="qweb-pdf"
    name="account.report_invoice"
    file="account.report_invoice"
/>

This file will add report to action button in invoice model. for custom report creation
in odoo11 you refer this link

Avatar
Discard
Related Posts Replies Views Activity
2
Dec 23
56296
2
Apr 23
10044
0
Dec 22
1039
1
Dec 19
3678
3
Dec 23
18265