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
- 회계
- 재고 관리
- PoS
- Project
- MRP
신고된 질문입니다
1
회신
9516
화면
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?
관련 게시물 | 답글 | 화면 | 활동 | |
---|---|---|---|---|
|
0
3월 15
|
4581 | ||
|
0
3월 15
|
3528 | ||
|
2
9월 23
|
7735 | ||
|
2
3월 23
|
46828 | ||
|
2
12월 23
|
57749 |
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.