Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
2 Odpowiedzi
10631 Widoki

i added a button to update a field in product template from another computed field but when i press this button only self product be update and the method didn't go over all product

i tried a lotin this problem but i can't solve it and this the simple i have added

@api.multi
def button_name(self):
    for template in self:
        self.name4 = self.name3

    pass
Awatar
Odrzuć
Najlepsza odpowiedź

Try this

@api.multi
def button_name(self):
    products = self.env['product.template'].search([]) for product in products:
product.name4 = product.name3
pass
Awatar
Odrzuć

hello, dear is this automatically saving updated value in DB . or do I have to run the write function

Autor

yes the values updated after press the button automatically

Najlepsza odpowiedź

Use lamda function

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
1
paź 23
10678
1
gru 22
10547
2
gru 22
2561
0
lis 23
1186
3
mar 21
4862