Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
3 Відповіді
6333 Переглядів
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

Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
1
квіт. 22
18358
2
лист. 22
3546
1
трав. 25
1042
2
лист. 24
2228
4
лют. 24
12431