You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
2.3 KiB
55 lines
2.3 KiB
# -*- coding: utf-8 -*-
|
|
#############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
|
|
# Author:Ayana KP(<https://www.cybrosys.com>)
|
|
# You can modify it under the terms of the GNU AFFERO
|
|
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU AFFERO GENERAL PUBLIC LICENSE (LGPL v3) for more details.
|
|
#
|
|
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
# (LGPL v3) along with this program.
|
|
# If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
#############################################################################
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
"""Extends the res.config.settings model to include configuration
|
|
settings for QR code prefixes."""
|
|
_inherit = 'res.config.settings'
|
|
|
|
customer_prefix = fields.Char(string="Customer QR Prefix",
|
|
help='Customer Qr prefix')
|
|
product_prefix = fields.Char(string="Product QR Prefix",
|
|
help='Product Qr prefix')
|
|
|
|
def get_values(self):
|
|
"""fRetrieve the current configuration values for QR code prefixes."""
|
|
res = super().get_values()
|
|
customer_prefix = self.env["ir.config_parameter"].get_param(
|
|
"customer_product_qr.config.customer_prefix")
|
|
product_prefix = self.env["ir.config_parameter"].get_param(
|
|
"customer_product_qr.config.product_prefix")
|
|
res.update({
|
|
'customer_prefix': customer_prefix if type(
|
|
customer_prefix) else False,
|
|
'product_prefix': product_prefix if type(product_prefix) else False
|
|
}
|
|
)
|
|
return res
|
|
|
|
def set_values(self):
|
|
"""Set the configuration values for QR code prefixes."""
|
|
self.env['ir.config_parameter'].sudo().set_param(
|
|
'customer_product_qr.config.customer_prefix', self.customer_prefix)
|
|
self.env['ir.config_parameter'].sudo().set_param(
|
|
'customer_product_qr.config.product_prefix', self.product_prefix)
|
|
super().set_values()
|
|
|