mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-21 15:32:11 +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,15 @@
|
|||
# Copyright 2019 ACSONE SA/NV
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class PosConfig(models.Model):
|
||||
|
||||
_inherit = "pos.config"
|
||||
|
||||
payment_amount_readonly = fields.Boolean(
|
||||
help="Payment lines amount would be readonly. This should be used"
|
||||
"with the 'Prefill Cash Payment' option"
|
||||
)
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
from odoo import fields, models
|
||||
|
||||
|
||||
class ResConfigSettings(models.TransientModel):
|
||||
_inherit = "res.config.settings"
|
||||
|
||||
pos_payment_amount_readonly = fields.Boolean(
|
||||
related="pos_config_id.payment_amount_readonly",
|
||||
readonly=False,
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue