Se rendre au contenu
Menu
Cette question a été signalée
2 Réponses
3778 Vues

Hi, 
Can anyone help me with this?
I need a popup/alert everytime the user(s) set the selling price less than the cost price, so that they would have to set the selling price equal to or greater than the cost price.

Thanks.

Avatar
Ignorer

You can use "@api.constrains".

@api.constrains("your_field")

def alert(self):

if ??<??:

raise exceptions.ValidationError(u"Your Alert")

Meilleure réponse
from openerp.exceptions import ValidationError
 
#check your desired condition....
raise ValidationError("""your alert message goes here""")

Hope this will helps you

Avatar
Ignorer
Publications associées Réponses Vues Activité
3
avr. 25
1418
1
août 24
2250
3
mai 24
11669
1
sept. 23
3777
0
août 23
1831