Merge pull request #58 from hbrunn/8.0-set_period_id_from_date

[IMP] if there's a date but no period, ger the date's period
This commit is contained in:
Pedro M. Baeza
2016-02-09 09:15:05 +01:00

View File

@@ -7,7 +7,7 @@ from zipfile import ZipFile, BadZipfile # BadZipFile in Python >= 3.2
from openerp import api, models, fields from openerp import api, models, fields
from openerp.tools.translate import _ 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 _logger = logging.getLogger(__name__) # pylint: disable=invalid-name
@@ -353,6 +353,17 @@ class AccountBankStatementImport(models.TransientModel):
bank_account_id = bank_obj and bank_obj.id or False bank_account_id = bank_obj and bank_obj.id or False
line_vals['partner_id'] = partner_id line_vals['partner_id'] = partner_id
line_vals['bank_account_id'] = bank_account_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']\
.with_context(account_period_prefer_normal=True)\
.find(dt=stmt_vals['date']).id
except RedirectWarning:
# if there's no period for the date, ignore resulting exception
pass
return stmt_vals return stmt_vals
@api.model @api.model