mirror of
https://gitlab.com/flectra-community/bank-payment.git
synced 2024-11-22 13:42:07 +00:00
21 lines
776 B
Python
21 lines
776 B
Python
# Copyright 2020 Akretion - Alexis de Lattre
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from flectra import models
|
|
|
|
|
|
class BankPaymentLine(models.Model):
|
|
_inherit = "bank.payment.line"
|
|
|
|
def move_line_offsetting_account_hashcode(self):
|
|
"""
|
|
From my experience, even when you ask several direct debits
|
|
at the same date with enough delay, you will have several credits
|
|
on your bank statement: one for each mandate types.
|
|
So we split the transfer move lines by mandate type, so easier
|
|
reconciliation of the bank statement.
|
|
"""
|
|
hashcode = super().move_line_offsetting_account_hashcode()
|
|
hashcode += "-" + str(self.mandate_id.recurrent_sequence_type)
|
|
return hashcode
|