Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
3 Antwoorden
4230 Weergaven

we want total of all quantity in invoice report 

Avatar
Annuleer
Beste antwoord

Hi, You can check the below free app:

Total number of Products and Quantity on Invoices | Odoo Apps Store

Avatar
Annuleer
Auteur Beste antwoord

thanks its working

Avatar
Annuleer
Beste antwoord
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


Avatar
Annuleer

<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>