Commit 0d06c8d4 by François COLOMBIER

Intégration modif. certaines-absences-engendrent-une-erreur

parent f53cba2f
Pipeline #3947 failed with stage
...@@ -773,20 +773,28 @@ class CagetteServices(models.Model): ...@@ -773,20 +773,28 @@ class CagetteServices(models.Model):
canceled_reg_ids.append(int(r['id'])) canceled_reg_ids.append(int(r['id']))
# coop_logger.info("Traitement absences shift_registration ids %s", ids) # coop_logger.info("Traitement absences shift_registration ids %s", ids)
f = {'state': absence_status, 'date_closed': now.isoformat()} f = {'state': absence_status, 'date_closed': now.isoformat()}
update_shift_reg_result = {'update': api.update('shift.registration', ids, f), 'reg_shift': res, 'errors': []} update_shift_reg_result = {'update': False, 'reg_shift': res, 'errors': []}
if update_shift_reg_result['update'] is True: individual_update_result = {}
update_shift_reg_result['process_status_res'] = api.execute('res.partner','run_process_target_status', []) for mysregid in ids:
# change shift state by triggering button_done method for all related shifts try:
if len(canceled_reg_ids) > 0: individual_update_result[str(mysregid)] = api.update('shift.registration', [mysregid], f)
f = {'state': 'cancel', 'date_closed': now.isoformat()} except Exception as e:
api.update('shift.registration', canceled_reg_ids, f) coop_logger.error("Error on updating shift.registration ids %s : %s", str(mysregid), str(e))
for sid in shift_ids: update_shift_reg_result['update'] = individual_update_result
try:
api.execute('shift.shift', 'button_done', sid) # With new way of overriding awesomefoodcoop status management, the following line is no more useful
except Exception as e: # update_shift_reg_result['process_status_res'] = api.execute('res.partner','run_process_target_status', [])
marshal_none_error = 'cannot marshal None unless allow_none is enabled' # change shift state by triggering button_done method for all related shifts
if not (marshal_none_error in str(e)): if len(canceled_reg_ids) > 0:
update_shift_reg_result['errors'].append({'shift_id': sid, 'msg' :str(e)}) f = {'state': 'cancel', 'date_closed': now.isoformat()}
api.update('shift.registration', canceled_reg_ids, f)
for sid in shift_ids:
try:
api.execute('shift.shift', 'button_done', sid)
except Exception as e:
marshal_none_error = 'cannot marshal None unless allow_none is enabled'
if not (marshal_none_error in str(e)):
update_shift_reg_result['errors'].append({'shift_id': sid, 'msg' :str(e)})
return update_shift_reg_result return update_shift_reg_result
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment