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
- Financeiro
- Inventário
- PoS
- Project
- MRP
Esta pergunta foi sinalizada
1
Responder
7339
Visualizações
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.
Está gostando da discussão? Não fique apenas lendo, participe!
Crie uma conta hoje mesmo para aproveitar os recursos exclusivos e interagir com nossa incrível comunidade!
Inscreva-sePublicações relacionadas | Respostas | Visualizações | Atividade | |
---|---|---|---|---|
order line item entry
Resolvido
|
|
4
dez. 24
|
11651 | |
sales pricelist based on supplier prices
Resolvido
|
|
10
set. 20
|
28463 | |
|
1
fev. 17
|
4463 | ||
|
2
mai. 16
|
17129 | ||
|
1
mai. 15
|
4359 |
You mean you want to calculate total amount from all quotations?
How can i calculate total amount of all quotations of a particular customer?