mirror of
https://gitlab.com/flectra-community/l10n-switzerland-flectra.git
synced 2024-11-17 03:22:03 +00:00
22ee40100d
[FIX] l10n_ch_zip [ADD] Added latest OCA Modules [REMOVE] Removed QR modules which are not required anymore
21 lines
672 B
Python
21 lines
672 B
Python
# Copyright 2020 Camptocamp SA
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from flectra import fields, models
|
|
|
|
|
|
class ResPartnerBank(models.Model):
|
|
|
|
_inherit = "res.partner.bank"
|
|
|
|
l10n_ch_isrb_id_number = fields.Char(
|
|
string="ISR-B Custmer ID",
|
|
help=(
|
|
"ISR-B Customer ID number for ISR. Used only when generating ISR"
|
|
" reference through a bank. It is not necessary for standard ISR from"
|
|
" Postfinance. The ISR reference will contains this number in the"
|
|
" first digits.\ne.g. 999999 will generate 99 9999x xxxxx xxxxx xxxxx"
|
|
" xxxxx xx references"
|
|
),
|
|
)
|