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.
60 lines
2.5 KiB
60 lines
2.5 KiB
# -*- coding: utf-8 -*-
|
|
################################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
|
|
# Author: Adarsh K (odoo@cybrosys.com)
|
|
#
|
|
# You can modify it under the terms of the GNU AFFERO
|
|
# GENERAL PUBLIC LICENSE (AGPL 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 (AGPL v3) for more details.
|
|
#
|
|
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
# (AGPL v3) along with this program.
|
|
# If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
################################################################################
|
|
from odoo import api, fields, models
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
""" Class for inherited model res partner. Contains required fields and
|
|
functions of the module.
|
|
Methods:
|
|
get_views(self, views, options=None):
|
|
Super get_views function to write into related user when
|
|
opening the view. """
|
|
_inherit = 'res.partner'
|
|
|
|
related_user_id = fields.Many2one('res.users',
|
|
string='Related User', readonly=True,
|
|
help='This field contains the related '
|
|
'user of the partner if there is any.')
|
|
is_have_user = fields.Boolean(string='Have User',
|
|
help='This field helps to check if there is '
|
|
'any user related to the partner.')
|
|
|
|
@api.model
|
|
def get_views(self, views, options=None):
|
|
""" Super get_views function to write into related user when opening
|
|
the view.
|
|
:param views: list of [view_id, view_type]
|
|
:param dict options: a dict optional boolean flags, set to enable:
|
|
:return: dictionary with fields_views, fields and optionally filters
|
|
"""
|
|
res = super().get_views(views, options)
|
|
res_users = self.env['res.users'].search([])
|
|
for users in res_users:
|
|
res_partner = self.search([])
|
|
for partner in res_partner:
|
|
if users.partner_id.id == partner.id:
|
|
partner.write({
|
|
'related_user_id': users,
|
|
'is_have_user': True
|
|
})
|
|
return res
|
|
|