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

Example: In product.product there is field qty_available which is compute field and no store, so in the change of that field i want to put some logic if quantity will less than zero.


Thanks

Awatar
Odrzuć
Najlepsza odpowiedź

You can override compute method and add your custom code to track changes of that field and make your custom code work.Try below code.

def _compute_quantities(self):
    super()._compute_quantities()
    # Add Your custom code here 

Awatar
Odrzuć
Autor

Thanks, I thought too this same but this method is using by many fields so i thought it will risky but let's try if no any other alternative solution is there.

Powiązane posty Odpowiedzi Widoki Czynność
1
wrz 22
2851
3
wrz 25
3257
0
sie 25
799
1
sie 25
3023
2
lip 25
8654