13 lines
398 B
Python
13 lines
398 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
|
|
|
from flectra 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)
|