I need to add a new option to the status invoiced field, how can I do this? I need that when making a credit note it is reflected as a new state to show
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
I need to add a new option to the status invoiced field, how can I do this? I need that when making a credit note it is reflected as a new state to show
override the field you want to add option:
class YourClass(models.Model):
_inherit = 'module.model'field = fields.Selection(
selection_add=[
("new_option", "New Option"),
]
)
How could I apply the activation of my new status when making a credit note?
Hi,
https://www.odoo.com/forum/help-1/add-value-in-selection-field-without-overwrite-whole-field-160683
Refer the above forum post to add a new option for the selection field in Odoo
And for updating the invoice status, you can use the _get_invoice_status(self) compute function which can be found from sale_order.py file in Sale module.
Regards
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 | |
---|---|---|---|---|
|
1
abr. 22
|
18170 | ||
|
2
nov. 22
|
3405 | ||
|
1
mai. 25
|
888 | ||
|
2
nov. 24
|
2095 | ||
|
4
fev. 24
|
12240 |