diff --git a/addons/account/account_invoice.py b/addons/account/account_invoice.py index 1092ec33aeaa7c37259bb7ebc518860410388350..5b45f8dd02abe53b266875317cf539b6fd911b93 100644 --- a/addons/account/account_invoice.py +++ b/addons/account/account_invoice.py @@ -572,8 +572,8 @@ class account_invoice(models.Model): if 'journal_id' in journal_defaults: values['journal_id'] = journal_defaults['journal_id'] if not values.get('journal_id'): - field_desc = journals.fields_get(['journal_id']) - type_label = next(t for t, label in field_desc['journal_id']['selection'] if t == journal_type) + field_desc = journals.fields_get(['type']) + type_label = next(t for t, label in field_desc['type']['selection'] if t == journal_type) action = self.env.ref('account.action_account_journal_form') msg = _('Cannot find any account journal of type "%s" for this company, You should create one.\n Please go to Journal Configuration') % type_label raise RedirectWarning(msg, action.id, _('Go to the configuration panel'))