콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
3 답글
4296 화면

we want total of all quantity in invoice report 

아바타
취소
베스트 답변

Hi, You can check the below free app:

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

아바타
취소
작성자 베스트 답변

thanks its working

아바타
취소
베스트 답변
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


아바타
취소

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