[FIX] account: prevent crash onchange company_id

(rebase of #1534)
This commit is contained in:
cod-odoo 2014-07-28 16:10:46 +05:30 committed by Richard Mathot
parent 5f6fc4735a
commit 2d54afef9e
1 changed files with 2 additions and 2 deletions

View File

@ -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'))