Skip to Content
Menu
This question has been flagged
3 Replies
4240 Rodiniai

we want total of all quantity in invoice report 

Portretas
Atmesti
Autorius Best Answer

thanks its working

Portretas
Atmesti
Best Answer
Hello Tahera
add below tempalate in your module



if you can't add this template in your module let me know will
make a module and push to odoo apps then you can use it easily


Portretas
Atmesti

<template id="report_total_quantity_document" inherit_id="account.report_invoice_document">
<xpath expr="//p[@name='payment_term']" position="after">
<p>
<strong >Total Quantity </strong>
<span t-esc="sum([x.quantity for x in o.invoice_line_ids])"/>
</p>
</xpath>
</template>