mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
31 lines
1.3 KiB
Python
31 lines
1.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
# © 2013-2016 Akretion - Alexis de Lattre <alexis.delattre@akretion.com>
|
|
# © 2014 Serv. Tecnol. Avanzados - Pedro M. Baeza
|
|
# © 2016 Antiun Ingenieria S.L. - Antonio Espinosa
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
from openerp import models, fields
|
|
|
|
|
|
class AccountPaymentMode(models.Model):
|
|
_inherit = 'account.payment.mode'
|
|
|
|
initiating_party_issuer = fields.Char(
|
|
string='Initiating Party Issuer', size=35,
|
|
help="This will be used as the 'Initiating Party Issuer' in the "
|
|
"PAIN files generated by Odoo. If not defined, Initiating Party "
|
|
"Issuer from company will be used.\n"
|
|
"Common format (13): \n"
|
|
"- Country code (2, optional)\n"
|
|
"- Company idenfier (N, VAT)\n"
|
|
"- Service suffix (N, issued by bank)")
|
|
initiating_party_identifier = fields.Char(
|
|
string='Initiating Party Identifier', size=35,
|
|
help="This will be used as the 'Initiating Party Identifier' in "
|
|
"the PAIN files generated by Odoo. If not defined, Initiating Party "
|
|
"Identifier from company will be used.\n"
|
|
"Common format (13): \n"
|
|
"- Country code (2, optional)\n"
|
|
"- Company idenfier (N, VAT)\n"
|
|
"- Service suffix (N, issued by bank)")
|