58 lines
1.8 KiB
Python
Executable File
58 lines
1.8 KiB
Python
Executable File
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
|
# this repository contains the full copyright notices and license terms.
|
|
from trytond.pool import Pool, PoolMeta
|
|
from trytond.tools import grouped_slice
|
|
|
|
|
|
class Move(metaclass=PoolMeta):
|
|
__name__ = 'account.move'
|
|
|
|
@classmethod
|
|
def _get_origin(cls):
|
|
models = super(Move, cls)._get_origin()
|
|
return models + ['account.payment']
|
|
|
|
|
|
def _payments_to_update(reconciliations):
|
|
pool = Pool()
|
|
Payment = pool.get('account.payment')
|
|
Reconciliation = pool.get('account.move.reconciliation')
|
|
|
|
moves = set()
|
|
others = set()
|
|
for reconciliation in reconciliations:
|
|
for line in reconciliation.lines:
|
|
moves.add(line.move)
|
|
others.update(line.reconciliations_delegated)
|
|
|
|
payments = set()
|
|
for sub_moves in grouped_slice(moves):
|
|
payments.update(Payment.search([
|
|
('clearing_move', 'in', [m.id for m in sub_moves]),
|
|
], order=[]))
|
|
if others:
|
|
payments.update(_payments_to_update(Reconciliation.browse(others)))
|
|
|
|
return payments
|
|
|
|
|
|
class MoveReconciliation(metaclass=PoolMeta):
|
|
__name__ = 'account.move.reconciliation'
|
|
|
|
@classmethod
|
|
def create(cls, vlist):
|
|
pool = Pool()
|
|
Payment = pool.get('account.payment')
|
|
reconciliations = super().create(vlist)
|
|
Payment.__queue__.update_reconciled(
|
|
list(_payments_to_update(reconciliations)))
|
|
return reconciliations
|
|
|
|
@classmethod
|
|
def delete(cls, reconciliations):
|
|
pool = Pool()
|
|
Payment = pool.get('account.payment')
|
|
payments = _payments_to_update(reconciliations)
|
|
super().delete(reconciliations)
|
|
Payment.__queue__.update_reconciled(list(payments))
|