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.
		
		
		
		
		
			
		
			
				
					
					
						
							48 lines
						
					
					
						
							2.1 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							48 lines
						
					
					
						
							2.1 KiB
						
					
					
				
								# -*- coding: utf-8 -*-
							 | 
						|
								###############################################################################
							 | 
						|
								#
							 | 
						|
								#    Cybrosys Technologies Pvt. Ltd.
							 | 
						|
								#
							 | 
						|
								#    Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
							 | 
						|
								#    Author: Anagha S (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 ResConfigSettings(models.TransientModel):
							 | 
						|
								    """Add new fields to configuration settings to Restrict stock warehouse
							 | 
						|
								    for users."""
							 | 
						|
								    _inherit = 'res.config.settings'
							 | 
						|
								
							 | 
						|
								    group_user_warehouse_restriction = fields.Boolean(
							 | 
						|
								        string="Restrict Stock Warehouse",
							 | 
						|
								        implied_group='user_warehouse_restriction.'
							 | 
						|
								                      'user_warehouse_restriction_group_user',
							 | 
						|
								        help="Check if you want to restrict warehouse for users.")
							 | 
						|
								
							 | 
						|
								    @api.onchange('group_user_warehouse_restriction')
							 | 
						|
								    def _onchange_group_user_warehouse_restriction(self):
							 | 
						|
								        """This method is triggered when the 'group_user_warehouse_restriction'
							 | 
						|
								        field is changed. if it's true, assigns the current user as the
							 | 
						|
								        allowed user of all existing warehouses."""
							 | 
						|
								        warehouses = self.env['stock.warehouse'].search([])
							 | 
						|
								        for warehouse in warehouses:
							 | 
						|
								            if self.group_user_warehouse_restriction:
							 | 
						|
								                # Assign the current user to each warehouse
							 | 
						|
								                warehouse.user_ids = [(6, 0, [self.env.user.id])]
							 | 
						|
								            else:
							 | 
						|
								                # Clear the allowed users for each warehouse
							 | 
						|
								                warehouse.user_ids = [(5, 0, 0)]
							 | 
						|
								
							 |