Browse Source

[FIX] fix 'typo' self instead of rec

pull/105/head
Thibault Francois 6 years ago
committed by Elouan
parent
commit
a97f331abe
  1. 3
      beesdoo_shift/models/cooperative_status.py

3
beesdoo_shift/models/cooperative_status.py

@ -84,9 +84,8 @@ class CooperativeStatus(models.Model):
alert_delay = int(self.env['ir.config_parameter'].get_param('alert_delay', 28))
grace_delay = int(self.env['ir.config_parameter'].get_param('default_grace_delay', 10))
update = int(self.env['ir.config_parameter'].get_param('always_update', False))
print update
for rec in self:
if update or not self.today:
if update or not rec.today:
rec.status = 'ok'
rec.can_shop = True
continue

Loading…
Cancel
Save