[DOC] Comment the whole code of the bank statement improvement modules suite.

(lp:c2c-financial-addons/6.1 rev 24.1.24)
This commit is contained in:
Joël Grand-Guillaume
2012-06-20 16:01:43 +02:00
parent 0e70448fac
commit 52e490104f
21 changed files with 499 additions and 341 deletions

View File

@@ -26,8 +26,10 @@ class account_move(Model):
_inherit='account.move'
def unlink(self, cr, uid, ids, context=None):
"""Delete the reconciliation when we delete the moves. This
allow an easier way of cancelling the bank statement."""
"""
Delete the reconciliation when we delete the moves. This
allow an easier way of cancelling the bank statement.
"""
for move in self.browse(cr, uid, ids, context=context):
for move_line in move.line_id:
if move_line.reconcile_id: