Dear all,
Is there anyway that we can display full Invoice and Delivery addresses on Quotation/Sales Order, without having to click the customer name in order to see the address details?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Dear all,
Is there anyway that we can display full Invoice and Delivery addresses on Quotation/Sales Order, without having to click the customer name in order to see the address details?
Create auxiliary fields.
Since addresses are made of several fields, you should probably do something like this:
invoice_address = fields.Text('Invoice address', compute='_get_invoice_address')
... and then, obviously, write the _get_invoice_address method.
Finally, add the field to the view.
Perhaps another approach could be using on_change. When you change the partner_id field, the invoice_address one gets populated.
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
2
May 24
|
10684 | ||
|
2
May 15
|
3469 | ||
|
4
Oct 22
|
8601 | ||
|
1
Jun 15
|
5289 | ||
|
1
Mar 15
|
3302 |