[WIP] Correct indentation.

This commit is contained in:
Ronald Portier (Therp BV)
2015-02-26 16:39:12 +01:00
committed by Stefan Rijnhart
parent 6ef58a47e7
commit 158ecaa401

View File

@@ -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: