mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
[FIX] account_statement_ext_voucher: use period of voucher date when no period is found
(lp:c2c-financial-addons/6.1 rev 74)
This commit is contained in:
@@ -26,16 +26,25 @@ class AccountVoucher(Model):
|
|||||||
_inherit = 'account.voucher'
|
_inherit = 'account.voucher'
|
||||||
|
|
||||||
def _get_period(self, cr, uid, context=None):
|
def _get_period(self, cr, uid, context=None):
|
||||||
"""If perdiod not in context, take it from the move lines"""
|
"""If period not in context, take it from the move lines"""
|
||||||
if context is None: context = {}
|
if context is None:
|
||||||
|
context = {}
|
||||||
if not context.get('period_id') and context.get('move_line_ids'):
|
if not context.get('period_id') and context.get('move_line_ids'):
|
||||||
res = self.pool.get('account.move.line').browse(cr, uid , context.get('move_line_ids'))[0].period_id.id
|
res = self.pool.get('account.move.line').browse(cr, uid , context.get('move_line_ids'))[0].period_id.id
|
||||||
context['period_id'] = res
|
context['period_id'] = res
|
||||||
|
elif context.get('date'):
|
||||||
|
periods = self.pool.get('account.period').find(
|
||||||
|
cr, uid, dt=context['date'], context=context)
|
||||||
|
if periods:
|
||||||
|
context['period_id'] = periods[0]
|
||||||
return super(AccountVoucher, self)._get_period(cr, uid, context)
|
return super(AccountVoucher, self)._get_period(cr, uid, context)
|
||||||
|
|
||||||
def create(self, cr, uid, values, context=None):
|
def create(self, cr, uid, values, context=None):
|
||||||
"""If no period defined in values, ask it from moves."""
|
"""If no period defined in values, ask it from moves."""
|
||||||
if values.get('period_id') == False and context.get('move_line_ids'):
|
if context is None:
|
||||||
values['period_id'] = self._get_period(cr, uid, context)
|
context = {}
|
||||||
|
if not values.get('period_id'):
|
||||||
|
ctx = dict(context, date=values.get('date'))
|
||||||
|
values['period_id'] = self._get_period(cr, uid, ctx)
|
||||||
return super(AccountVoucher, self).create(cr, uid, values, context)
|
return super(AccountVoucher, self).create(cr, uid, values, context)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user