769eafb483
Flectra is Forked from Odoo v11 commit : (6135e82d73
)
13 lines
386 B
Python
13 lines
386 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = 'res.config.settings'
|
|
|
|
l10n_ch_isr_print_bank_location = fields.Boolean(string="Print bank on ISR",
|
|
related="company_id.l10n_ch_isr_print_bank_location",
|
|
required=True)
|