mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
[WIP] Correct indentation.
This commit is contained in:
committed by
Stefan Rijnhart
parent
6ef58a47e7
commit
158ecaa401
@@ -26,12 +26,12 @@ class AccountBankStatementLine(orm.Model):
|
||||
"""Extend account.bank.statement.line to use transaction date in moves."""
|
||||
_inherit = 'account.bank.statement.line'
|
||||
|
||||
def process_reconciliation(
|
||||
def process_reconciliation(
|
||||
self, cr, uid, id, mv_line_dicts, context=None):
|
||||
"""Put marker in context to use period from date in move line."""
|
||||
ctx = context.copy() or {}
|
||||
ctx['override_period_from_date'] = True
|
||||
return super(AccountBankStatementLine, self).process_reconciliation(
|
||||
cr, uid, id, mv_line_dicts, context=ctx)
|
||||
"""Put marker in context to use period from date in move line."""
|
||||
ctx = context.copy() or {}
|
||||
ctx['override_period_from_date'] = True
|
||||
return super(AccountBankStatementLine, self).process_reconciliation(
|
||||
cr, uid, id, mv_line_dicts, context=ctx)
|
||||
|
||||
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
|
||||
|
||||
Reference in New Issue
Block a user