mirror of
https://gitlab.com/flectra-community/bank-payment.git
synced 2024-11-22 13:42:07 +00:00
23 lines
860 B
Python
23 lines
860 B
Python
# © 2015-2016 Akretion - Alexis de Lattre <alexis.delattre@akretion.com>
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from flectra import models, api
|
|
|
|
|
|
class BankPaymentLine(models.Model):
|
|
_inherit = 'bank.payment.line'
|
|
|
|
@api.multi
|
|
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(BankPaymentLine, self).\
|
|
move_line_offsetting_account_hashcode()
|
|
hashcode += '-' + str(self.mandate_id.recurrent_sequence_type)
|
|
return hashcode
|