Hi, I am using Openoffice for reports in openerp. I want to sum all the rows of a single column as total. Please help me,its urgent!
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Comptabilité
- Inventaire
- PoS
- Project
- MRP
Cette question a été signalée
1
Répondre
9397
Vues
sum(YOUR_LINES, 'FIELD_TO_SUM')
for example, if you want sum all the price_unit of invoice lines you code must be:
sum(o.invoice_line, 'price_unit')
Sum is a native function in aeroo
I would like to sum amount_tax as one and total as one in my report, I don't have lines in my report. Please help.
any solution?
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !
Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !
S'inscrirePublications associées | Réponses | Vues | Activité | |
---|---|---|---|---|
|
0
mars 15
|
4452 | ||
|
0
mars 15
|
3427 | ||
|
2
sept. 23
|
7518 | ||
|
2
mars 23
|
46563 | ||
|
2
déc. 23
|
57515 |
I would like to sum amount_tax as one and total as one in my report, I don't have lines in my report. Please help.