Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
2 Odgovori
11229 Prikazi

Hello, Odoo community,

What is the best way in Odoo 11 Saas to add date validation? if I have an end_date field and start_date field, I would like to ensure that end_date is greater than start_end. How can I do that?

if it helps

view_type=form

model=account.invoice

Avatar
Opusti
Best Answer

Dear Shaheryar,

Try This:

from odoo.exceptions import  ValidationError

    @api.multi
    @api.constrains('end_date', 'start_date')
    def date_constrains(self):

              for rec in self:

                      if rec.end_date < rec.start_date:

                           raise ValidationError(_('Sorry, End Date Must be greater Than Start Date...'))


I hope I help you...

Avatar
Opusti
Avtor Best Answer

Hello Ayman,

Thanks for replying. How can I do this on Odoo Studio, the online Saas version?

I tried to use the following in Automated actions but that did not work.

def date_constrains(self):

              for rec in self:

                      if rec.end_date < rec.start_date:

                           raise ValidationError(_('Sorry, End Date Must be greater Than Start Date...'))

Avatar
Opusti
Related Posts Odgovori Prikazi Aktivnost
4
jan. 20
5083
3
mar. 22
26383
2
jul. 24
2632
1
jun. 24
5100
1
okt. 23
10790