mirror of
https://gitlab.com/flectra-community/partner-contact.git
synced 2024-11-15 02:32:04 +00:00
16 lines
574 B
Python
16 lines
574 B
Python
|
# Copyright 2018 Eficent Business and IT Consulting Services, S.L.
|
||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||
|
|
||
|
from flectra import fields, models
|
||
|
|
||
|
|
||
|
class ResConfigSettings(models.TransientModel):
|
||
|
_inherit = 'res.config.settings'
|
||
|
|
||
|
group_use_partner_industry_for_person = fields.Boolean(
|
||
|
'Use industry for individuals',
|
||
|
help="Set if you want to be able to use industries for "
|
||
|
"individuals also.",
|
||
|
implied_group='partner_industry_secondary.'
|
||
|
'group_use_partner_industry_for_person')
|