diff --git a/account_banking_sepa_direct_debit/models/bank_payment_line.py b/account_banking_sepa_direct_debit/models/bank_payment_line.py index 5eb0b26b7..0321cf03d 100644 --- a/account_banking_sepa_direct_debit/models/bank_payment_line.py +++ b/account_banking_sepa_direct_debit/models/bank_payment_line.py @@ -9,7 +9,7 @@ class BankPaymentLine(models.Model): _inherit = 'bank.payment.line' @api.multi - def move_line_transfer_account_hashcode(self): + 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 @@ -18,6 +18,6 @@ class BankPaymentLine(models.Model): reconciliation of the bank statement. """ hashcode = super(BankPaymentLine, self).\ - move_line_transfer_account_hashcode() + move_line_offsetting_account_hashcode() hashcode += '-' + unicode(self.mandate_id.recurrent_sequence_type) return hashcode