Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged

In odoo 8 , while creating or editing contract Date of joining field(date_start) throws this validation error.Even after I given correct value.

def _check_dates(self, cr, uid, ids, context=None):
    for contract in self.read(cr, uid, ids, ['date_start', 'date_end'], context=context):
         if contract['date_start'] and contract['date_end'] and contract['date_start'] > contract['date_end']:
             return False
    return True

_constraints = [
    (_check_dates, 'Error! Contract start-date must be less than contract end-date.', ['date_start', 'date_end'])
]
Avatar
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
4
zář 15
4347
2
led 20
15223
16
srp 19
10183
1
led 19
5443
5
čvn 18
10843