The condition supposed to be only if this field is filled other field do not need to filled. Now with this code i have to fill out all the fields.
if (self.start==None and self.end==None) or (self.running==None and self.walking==None ) :
raise ValidationError(
{
"start": _("Need to be filled"),
"end": _("Need to be filled"),
"running": _("Need to be filled"),
"walking": _("Need to be filled")
}
)
Try this: