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.
		
		
		
		
		
			
		
			
				
					
					
						
							59 lines
						
					
					
						
							2.5 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							59 lines
						
					
					
						
							2.5 KiB
						
					
					
				
								# -*- coding: utf-8 -*-
							 | 
						|
								###############################################################################
							 | 
						|
								#
							 | 
						|
								#    Cybrosys Technologies Pvt. Ltd.
							 | 
						|
								#
							 | 
						|
								#    Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
							 | 
						|
								#    Author: Vishnu K P (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 ResUsers(models.Model):
							 | 
						|
								    """This model adds additional fields to the `res.users` model to restrict
							 | 
						|
								     user access to certain locations and warehouses."""
							 | 
						|
								    _inherit = 'res.users'
							 | 
						|
								
							 | 
						|
								    restrict_location = fields.Boolean(string="Restrict Location",
							 | 
						|
								                                       help='Restrict location for the user.')
							 | 
						|
								    location_ids = fields.Many2many(comodel_name='stock.location',
							 | 
						|
								                                    string='Restricted Locations',
							 | 
						|
								                                    help='Restricted locations for users.')
							 | 
						|
								    allowed_warehouse_ids = fields.Many2many(
							 | 
						|
								        comodel_name='stock.warehouse', string='Allowed Warehouse',
							 | 
						|
								        help='Allowed Warehouse for user.')
							 | 
						|
								    check_user = fields.Boolean(string="Check", compute='_compute_check_user',
							 | 
						|
								                                help="Indicates whether the user has warehouse"
							 | 
						|
								                                     " location restrictions.")
							 | 
						|
								
							 | 
						|
								    @api.model
							 | 
						|
								    def create(self, vals):
							 | 
						|
								        self.clear_caches()
							 | 
						|
								        return super(ResUsers, self).create(vals)
							 | 
						|
								
							 | 
						|
								    def write(self, vals):
							 | 
						|
								        self.clear_caches()
							 | 
						|
								        return super(ResUsers, self).write(vals)
							 | 
						|
								
							 | 
						|
								    def _compute_check_user(self):
							 | 
						|
								        """To determine if the user has warehouse location restrictions.
							 | 
						|
								        Sets the check_user field accordingly."""
							 | 
						|
								        restriction_group_id = self.env.ref(
							 | 
						|
								            'user_warehouse_restriction.user_warehouse_restriction_group_user').id
							 | 
						|
								        for record in self:
							 | 
						|
								            record.check_user = False
							 | 
						|
								            if restriction_group_id in record.groups_id.mapped('id'):
							 | 
						|
								                record.check_user = True
							 | 
						|
								
							 |