mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
[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:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user