mirror of https://github.com/muk-it/muk_base
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.
105 lines
3.6 KiB
105 lines
3.6 KiB
###################################################################################
|
|
#
|
|
# Copyright (C) 2017 MuK IT GmbH
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# 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 for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
###################################################################################
|
|
|
|
from odoo import api, fields, models
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
|
|
_inherit = 'res.config.settings'
|
|
|
|
#----------------------------------------------------------
|
|
# Database
|
|
#----------------------------------------------------------
|
|
|
|
module_muk_web_branding = fields.Boolean(
|
|
string="Web Branding",
|
|
help="Customize the backend according to your needs.")
|
|
|
|
module_muk_mail_branding = fields.Boolean(
|
|
string="Mail Branding",
|
|
help="Brand your outgoing mails with your own style.")
|
|
|
|
module_muk_website_branding = fields.Boolean(
|
|
string="Website Branding",
|
|
help="Brand the website according to your needs.")
|
|
|
|
module_muk_pos_branding = fields.Boolean(
|
|
string="PoS Branding",
|
|
help="Brand the PoS panel according to your needs.")
|
|
|
|
branding_system_name = fields.Char(
|
|
string='System Name')
|
|
|
|
branding_publisher = fields.Char(
|
|
string='Publisher')
|
|
|
|
branding_website = fields.Char(
|
|
string='Website URL')
|
|
|
|
branding_documentation = fields.Char(
|
|
string='Documentation URL')
|
|
|
|
branding_support = fields.Char(
|
|
string='Support URL')
|
|
|
|
branding_store = fields.Char(
|
|
string='Store URL')
|
|
|
|
branding_share = fields.Char(
|
|
string='Share URL')
|
|
|
|
branding_company_name = fields.Char(
|
|
string='Company Name',
|
|
related='company_id.name',
|
|
readonly=False)
|
|
|
|
branding_company_logo = fields.Binary(
|
|
string='Company Logo',
|
|
related='company_id.logo',
|
|
readonly=False)
|
|
|
|
branding_company_favicon = fields.Binary(
|
|
string='Company Favicon',
|
|
related='company_id.favicon',
|
|
readonly=False)
|
|
|
|
#----------------------------------------------------------
|
|
# Functions
|
|
#----------------------------------------------------------
|
|
|
|
@api.model
|
|
def get_values(self):
|
|
res = super(ResConfigSettings, self).get_values()
|
|
params = self.env['ir.config_parameter'].sudo()
|
|
res.update(params.get_branding_settings_params())
|
|
return res
|
|
|
|
@api.multi
|
|
def set_values(self):
|
|
res = super(ResConfigSettings, self).set_values()
|
|
self.env['ir.config_parameter'].set_params({
|
|
'muk_branding.system_name': self.branding_system_name or '',
|
|
'muk_branding.publisher': self.branding_publisher or '',
|
|
'muk_branding.website': self.branding_website or '',
|
|
'muk_branding.documentation': self.branding_documentation or '',
|
|
'muk_branding.support': self.branding_support or '',
|
|
'muk_branding.store': self.branding_store or '',
|
|
'muk_branding.share': self.branding_share or '',
|
|
})
|
|
return res
|