mirror of
https://github.com/bringout/oca-edi.git
synced 2026-04-24 19:52:05 +02:00
Initial commit: OCA Edi packages (42 packages)
This commit is contained in:
commit
df976c03db
2184 changed files with 571602 additions and 0 deletions
|
|
@ -0,0 +1 @@
|
|||
from . import res_config_settings
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
# Copyright 2017-2022 Akretion France (http://www.akretion.com/)
|
||||
# @author: Alexis de Lattre <alexis.delattre@akretion.com>
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class ResConfigSettings(models.TransientModel):
|
||||
_inherit = "res.config.settings"
|
||||
|
||||
facturx_level = fields.Selection(related="company_id.facturx_level", readonly=False)
|
||||
facturx_refund_type = fields.Selection(
|
||||
related="company_id.facturx_refund_type", readonly=False
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue