Ir al contenido
Menú
Se marcó esta pregunta
1 Responder
2808 Vistas

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

Avatar
Descartar
Mejor respuesta

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 

Avatar
Descartar
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.

Publicaciones relacionadas Respuestas Vistas Actividad
1
sept 22
2858
3
sept 25
3263
0
ago 25
802
1
ago 25
3025
2
jul 25
8658