fix migration script

This commit is contained in:
Luc De Meyer 2021-09-30 09:26:56 +02:00
parent eed09b9184
commit 59e71670ff

View File

@ -27,7 +27,7 @@ def _ebics_config_upgrade(env, version):
state = cfg_data['state'] == 'active' and 'confirm' or 'draft' state = cfg_data['state'] == 'active' and 'confirm' or 'draft'
cfg.write({ cfg.write({
'company_ids': [(6, 0, [cfg_data['company_id']])], 'company_ids': [(6, 0, [cfg_data['company_id']])],
'journal_ids': [(6, 0, [journal.ids])], 'journal_ids': [(6, 0, journal.ids)],
'ebics_keys': ebics_keys_root, 'ebics_keys': ebics_keys_root,
'state': state, 'state': state,
}) })