mirror of
https://github.com/bringout/oca-ocb-pos.git
synced 2026-04-22 06:22:01 +02:00
9 lines
256 B
Python
9 lines
256 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from odoo import fields, models, api
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = 'res.config.settings'
|
|
|
|
pos_gift_card_settings = fields.Selection(related='pos_config_id.gift_card_settings', readonly=False)
|