mirror of
https://gitlab.com/flectra-community/bank-payment.git
synced 2024-11-22 13:42:07 +00:00
16 lines
586 B
Python
16 lines
586 B
Python
# © 2017 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, fields
|
|
|
|
|
|
class AccountPaymentLine(models.Model):
|
|
_inherit = 'account.payment.line'
|
|
|
|
# local_instrument 'INST' used for instant credit transfers
|
|
# which will begin on November 21st 2017, cf
|
|
# https://www.europeanpaymentscouncil.eu/document-library/
|
|
# rulebooks/2017-sepa-instant-credit-transfer-rulebook
|
|
local_instrument = fields.Selection(
|
|
selection_add=[('INST', 'Instant Transfer')])
|