Hello! How to set a custom or default values on a m2m tag widget?
for example:
In a tax types field, there are 3 types, "income", "value" and "excise"
i want that 3 to be the default value and there is no edit or create.
please help thanks!
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hello! How to set a custom or default values on a m2m tag widget?
for example:
In a tax types field, there are 3 types, "income", "value" and "excise"
i want that 3 to be the default value and there is no edit or create.
please help thanks!
Hello Nissan,
You can call a method in default and can set the taxes by searching the records.
Ex:
@api.model
def get_taxes(self):
return self.env['my.tax.tax'].search([('type', 'in', ['income', 'value', 'excise'])]).ids
my_taxes = fields.Many2many(default=get_taxes, ...)
Hope this help you.
Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!
Zarejestruj sięPowiązane posty | Odpowiedzi | Widoki | Czynność | |
---|---|---|---|---|
|
2
paź 21
|
5030 | ||
many2many_tags drag to change position
Rozwiązane
|
|
1
kwi 17
|
6141 | |
Many2many domain filter not working
Rozwiązane
|
|
1
sty 22
|
5606 | |
|
1
sty 22
|
10464 | ||
Adding Many2many field to Odoo Reports
Rozwiązane
|
|
2
cze 25
|
6150 |
Hello! thank you for fast reply. Sorry noob here but I don't understand what does def get_taxes do. Can you explain it to me please? and i want my field to like a combo box but in a m2m tag form/widget
get_taxes method will be called when you are creating a record. This method will return the IDs of those taxes which are of given type.