when create one2many wizard with button , the button cannot able to click. Anyone explain.why?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Księgowość
- Zapasy
- PoS
- Project
- MRP
To pytanie dostało ostrzeżenie
Assume that you have
class ClassA
lines: fields.One2many('class.b', ....)
and class ClassB
def action_do_something(self):
...
Now in the form view of class A, you add a new item. What happens? you see a new line of class B in the list but it is only in the browser, it does not exist on server yet. Your button is linked to action_do_something of a not yet exist object of class B. How can you call that function of a not exist object? You can't. You must save object of class A first, so that new object of class B get saved too (actually, it is created). Then you can call its method.
Podoba Ci się ta dyskusja? Dołącz do niej!
Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!
Zarejestruj się