I want to create a custom module in order to have subtotals on quotations (so we can group sales order lines). How can i do that ? Thanks
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Akuntansi
- Inventaris
- PoS
- Project
- MRP
Pertanyaan ini telah diberikan tanda
1
Balas
7255
Tampilan
In order to sort sale.order.line, you need to have something you can use to sort. You probably want to add a new field, which you fill when saving/modifying the sale.order.line.
This requires you (in global wordings):
- to create your own module, which extends sale.order.line, and add the new sort field
- change the default sort order
- override create
- override write
Also:
- create a module which extends sale.order
- at break of sort of sale.order.line, add a line subtotal
I probably have forgotten some things, but I hope you get the general idea.
Menikmati diskusi? Jangan hanya membaca, ikuti!
Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!
DaftarPost Terkait | Replies | Tampilan | Aktivitas | |
---|---|---|---|---|
order line item entry
Diselesaikan
|
|
4
Des 24
|
11589 | |
sales pricelist based on supplier prices
Diselesaikan
|
|
10
Sep 20
|
28405 | |
|
1
Feb 17
|
4372 | ||
|
2
Mei 16
|
17034 | ||
|
1
Mei 15
|
4291 |
You mean you want to calculate total amount from all quotations?
How can i calculate total amount of all quotations of a particular customer?