2
0

[IMP] a_i_c_chronology: improve/fox onchange

This commit is contained in:
Stéphane Bidoul (ACSONE) 2017-05-29 13:21:20 +02:00 committed by Zina Rasoamanana
parent 383441d230
commit 1d7a9fe2d8

View File

@ -10,10 +10,7 @@ class AccountJournal(models.Model):
check_chronology = fields.Boolean(string='Check Chronology', default=False)
@api.multi
@api.onchange('type')
def on_change_type(self):
for rec in self:
if rec.type not in ['sale', 'purchase']:
rec.check_chronology = False
return True
def _onchange_type(self):
if self.type not in ['sale', 'purchase']:
self.check_chronology = False