mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-19 14:32:02 +02:00
Initial commit: OCA Technical packages (595 packages)
This commit is contained in:
commit
2cc02aac6e
24950 changed files with 2318079 additions and 0 deletions
|
|
@ -0,0 +1,2 @@
|
|||
from . import pos_config
|
||||
from . import res_config_settings
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
# Copyright (C) 2023 - Today: GRAP (http://www.grap.coop)
|
||||
# @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class PosConfig(models.Model):
|
||||
_inherit = "pos.config"
|
||||
|
||||
iface_important_buttons = fields.Text(
|
||||
string="Important Buttons",
|
||||
help="Set technical names of buttons that will"
|
||||
" be displayed in the main point of sale screen."
|
||||
" Other buttons will be available by clicking"
|
||||
" on the button 'More...'.",
|
||||
)
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
# Copyright (C) 2023 - Today: GRAP (http://www.grap.coop)
|
||||
# @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
|
||||
# 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"
|
||||
|
||||
pos_iface_important_buttons = fields.Text(
|
||||
related="pos_config_id.iface_important_buttons",
|
||||
readonly=False,
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue