From b12f4908d2dbd612d162d68e32acdf9b8c4778a7 Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Mon, 8 Feb 2016 11:22:09 +0100 Subject: [PATCH] [IMP] if there's a date but no period, ger the date's period --- .../models/account_bank_statement_import.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/account_bank_statement_import/models/account_bank_statement_import.py b/account_bank_statement_import/models/account_bank_statement_import.py index 0c4399c..71185d7 100644 --- a/account_bank_statement_import/models/account_bank_statement_import.py +++ b/account_bank_statement_import/models/account_bank_statement_import.py @@ -7,7 +7,7 @@ from zipfile import ZipFile, BadZipfile # BadZipFile in Python >= 3.2 from openerp import api, models, fields from openerp.tools.translate import _ -from openerp.exceptions import Warning as UserError +from openerp.exceptions import Warning as UserError, RedirectWarning _logger = logging.getLogger(__name__) # pylint: disable=invalid-name @@ -349,6 +349,15 @@ class AccountBankStatementImport(models.TransientModel): bank_account_id = bank_obj and bank_obj.id or False line_vals['partner_id'] = partner_id line_vals['bank_account_id'] = bank_account_id + if 'date' in stmt_vals and 'period_id' not in stmt_vals: + # if the parser found a date but didn't set a period for this date, + # do this now + try: + stmt_vals['period_id'] =\ + self.env['account.period'].find(dt=stmt_vals['date']).id + except RedirectWarning: + # if there's no period for the date, ignore resulting exception + pass return stmt_vals @api.model