mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
13 lines
323 B
Python
13 lines
323 B
Python
# Copyright 2023 Noviat
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = "res.config.settings"
|
|
|
|
transfer_journal_id = fields.Many2one(
|
|
related="company_id.transfer_journal_id", readonly=False
|
|
)
|