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.
84 lines
3.7 KiB
84 lines
3.7 KiB
# -*- coding: utf-8 -*-
|
|
#############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
|
|
# Author: Noorjahan N A (<https://www.cybrosys.com>)
|
|
#
|
|
# You can modify it under the terms of the GNU LESSER
|
|
# 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
|
|
#
|
|
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
|
|
# (LGPL v3) along with this program.
|
|
# If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
#############################################################################
|
|
from odoo import models, fields
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = 'res.config.settings'
|
|
|
|
rfq_done_based_on = fields.Selection([
|
|
('based_on_price', 'Minimum Quoted Price'),
|
|
('based_on_delivery_time', 'Minimum Delivery time')
|
|
], string="Set RFQs Based on", default='based_on_price')
|
|
quote_submission_msg = fields.Text(
|
|
help="Status message to display if a quote was submitted")
|
|
quote_accept_msg = fields.Text(
|
|
help="Status message to display if a quote was accepted")
|
|
quote_not_accept_msg = fields.Text(
|
|
help="Status message to display if a quote was not accepted"
|
|
)
|
|
quote_cancel_msg = fields.Text(
|
|
help="Status message to display if a quote was cancelled")
|
|
quote_to_po_msg = fields.Text(
|
|
help="Status message to display if a quote was converted to PO")
|
|
|
|
def set_values(self):
|
|
"""vendor rfq's setting field values"""
|
|
res = super(ResConfigSettings, self).set_values()
|
|
self.env['ir.config_parameter'].set_param(
|
|
'vendor_portal_odoo.rfq_done_based_on', self.rfq_done_based_on)
|
|
self.env['ir.config_parameter'].set_param(
|
|
'vendor_portal_odoo.quote_submission_msg',
|
|
self.quote_submission_msg)
|
|
self.env['ir.config_parameter'].set_param(
|
|
'vendor_portal_odoo.quote_accept_msg', self.quote_accept_msg)
|
|
self.env['ir.config_parameter'].set_param(
|
|
'vendor_portal_odoo.quote_not_accept_msg',
|
|
self.quote_not_accept_msg)
|
|
self.env['ir.config_parameter'].set_param(
|
|
'vendor_portal_odoo.quote_cancel_msg', self.quote_cancel_msg)
|
|
self.env['ir.config_parameter'].set_param(
|
|
'vendor_portal_odoo.quote_to_po_msg', self.quote_to_po_msg)
|
|
return res
|
|
|
|
def get_values(self):
|
|
"""vendor rfq's getting field values"""
|
|
res = super(ResConfigSettings, self).get_values()
|
|
res['rfq_done_based_on'] = self.env[
|
|
'ir.config_parameter'].sudo().get_param(
|
|
'vendor_portal_odoo.rfq_done_based_on')
|
|
res['quote_submission_msg'] = self.env[
|
|
'ir.config_parameter'].sudo().get_param(
|
|
'vendor_portal_odoo.quote_submission_msg')
|
|
res['quote_accept_msg'] = self.env[
|
|
'ir.config_parameter'].sudo().get_param(
|
|
'vendor_portal_odoo.quote_accept_msg')
|
|
res['quote_not_accept_msg'] = self.env[
|
|
'ir.config_parameter'].sudo().get_param(
|
|
'vendor_portal_odoo.quote_not_accept_msg')
|
|
res['quote_cancel_msg'] = self.env[
|
|
'ir.config_parameter'].sudo().get_param(
|
|
'vendor_portal_odoo.quote_cancel_msg')
|
|
res['quote_to_po_msg'] = self.env[
|
|
'ir.config_parameter'].sudo().get_param(
|
|
'vendor_portal_odoo.quote_to_po_msg')
|
|
return res
|
|
|