12 lines
330 B
Python
12 lines
330 B
Python
# -*- coding: utf-8 -*-
|
|
from odoo import fields, models
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = 'res.config.settings'
|
|
|
|
pos_hide_cash_in_out_button = fields.Boolean(
|
|
string="Hide Cash In/Out Button (Navbar)",
|
|
related='pos_config_id.hide_cash_in_out_button',
|
|
readonly=False
|
|
)
|