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.
		
		
		
		
		
			
		
			
				
					
					
						
							42 lines
						
					
					
						
							1.7 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							42 lines
						
					
					
						
							1.7 KiB
						
					
					
				
								# -*- coding: utf-8 -*-
							 | 
						|
								################################################################################
							 | 
						|
								#
							 | 
						|
								#    Cybrosys Technologies Pvt. Ltd.
							 | 
						|
								#
							 | 
						|
								#    Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
							 | 
						|
								#    Author: ADVAITH B G (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 models
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								class PosSession(models.Model):
							 | 
						|
								    _inherit = 'pos.session'
							 | 
						|
								
							 | 
						|
								    def _get_pos_ui_product_product(self, params):
							 | 
						|
								        result = super()._get_pos_ui_product_product(params)
							 | 
						|
								        service_product_id = self.config_id.service_product_id.id
							 | 
						|
								        product_ids_set = {product['id'] for product in result}
							 | 
						|
								
							 | 
						|
								        if self.config_id.is_service_charges and (
							 | 
						|
								                service_product_id) not in product_ids_set:
							 | 
						|
								            product_model = self.env['product.product'].with_context(
							 | 
						|
								                **params['context'])
							 | 
						|
								            product = product_model.search_read([(
							 | 
						|
								                'id', '=', service_product_id
							 | 
						|
								            )], fields=params['search_params']['fields'])
							 | 
						|
								            self._process_pos_ui_product_product(product)
							 | 
						|
								            result.extend(product)
							 | 
						|
								        return result
							 | 
						|
								
							 |