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.
93 lines
3.4 KiB
93 lines
3.4 KiB
# Copyright 2019 Coop IT Easy SCRL fs
|
|
# Houssine Bakkali <houssine@coopiteasy.be>
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
|
|
from odoo import api, fields, models
|
|
|
|
|
|
class ResCompany(models.Model):
|
|
_inherit = "res.company"
|
|
|
|
def _compute_base_logo(self):
|
|
base_url = (
|
|
self.env["ir.config_parameter"].sudo().get_param("web.base.url")
|
|
)
|
|
self.logo_url = base_url + "/logo.png"
|
|
|
|
coop_email_contact = fields.Char(
|
|
string="Contact email address for the" " cooperator"
|
|
)
|
|
subscription_maximum_amount = fields.Float(
|
|
string="Maximum authorised" " subscription amount"
|
|
)
|
|
default_country_id = fields.Many2one(
|
|
"res.country",
|
|
string="Default country",
|
|
default=lambda self: self.country_id,
|
|
)
|
|
default_lang_id = fields.Many2one("res.lang", string="Default lang")
|
|
allow_id_card_upload = fields.Boolean(string="Allow ID Card upload")
|
|
create_user = fields.Boolean(
|
|
string="Create user for cooperator", default=False
|
|
)
|
|
board_representative = fields.Char(string="Board representative name")
|
|
signature_scan = fields.Binary(string="Board representative signature")
|
|
property_cooperator_account = fields.Many2one(
|
|
"account.account",
|
|
company_dependent=True,
|
|
string="Cooperator Account",
|
|
domain=[
|
|
("internal_type", "=", "receivable"),
|
|
("deprecated", "=", False),
|
|
],
|
|
help="This account will be"
|
|
" the default one as the"
|
|
" receivable account for the"
|
|
" cooperators",
|
|
required=True,
|
|
)
|
|
unmix_share_type = fields.Boolean(
|
|
string="Unmix share type",
|
|
default=True,
|
|
help="If checked, A cooperator will be"
|
|
" authorised to have only one type"
|
|
" of share",
|
|
)
|
|
display_logo1 = fields.Boolean(string="Display logo 1")
|
|
display_logo2 = fields.Boolean(string="Display logo 2")
|
|
bottom_logo1 = fields.Binary(string="Bottom logo 1")
|
|
bottom_logo2 = fields.Binary(string="Bottom logo 2")
|
|
logo_url = fields.Char(string="logo url", compute="_compute_base_logo")
|
|
display_data_policy_approval = fields.Boolean(
|
|
help="Choose to display a data policy checkbox on the cooperator"
|
|
" website form."
|
|
)
|
|
data_policy_approval_required = fields.Boolean(
|
|
string="Is data policy approval required?"
|
|
)
|
|
data_policy_approval_text = fields.Html(
|
|
translate=True,
|
|
help="Text to display aside the checkbox to approve data policy.",
|
|
)
|
|
display_internal_rules_approval = fields.Boolean(
|
|
help="Choose to display an internal rules checkbox on the"
|
|
" cooperator website form."
|
|
)
|
|
internal_rules_approval_required = fields.Boolean(
|
|
string="Is internal rules approval required?"
|
|
)
|
|
internal_rules_approval_text = fields.Html(
|
|
translate=True,
|
|
help="Text to display aside the checkbox to approve internal rules.",
|
|
)
|
|
|
|
@api.onchange("data_policy_approval_required")
|
|
def onchange_data_policy_approval_required(self):
|
|
if self.data_policy_approval_required:
|
|
self.display_data_policy_approval = True
|
|
|
|
@api.onchange("internal_rules_approval_required")
|
|
def onchange_internal_rules_approval_required(self):
|
|
if self.internal_rules_approval_required:
|
|
self.display_internal_rules_approval = True
|