mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-18 03:31:59 +02:00
11 lines
231 B
Python
11 lines
231 B
Python
# SPDX-FileCopyrightText: 2024 Coop IT Easy SC
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class PosConfig(models.Model):
|
|
_inherit = "pos.config"
|
|
|
|
invoice_by_default = fields.Boolean()
|