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.
		
		
		
		
		
			
		
			
				
					
					
						
							52 lines
						
					
					
						
							2.1 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							52 lines
						
					
					
						
							2.1 KiB
						
					
					
				| # -*- coding: utf-8 -*- | |
| ############################################################################# | |
| # | |
| #    Cybrosys Technologies Pvt. Ltd. | |
| # | |
| #    Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) | |
| #    Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>) | |
| # | |
| #    You can modify it under the terms of the GNU LESSER | |
| #    GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. | |
| # | |
| #    You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE | |
| #    (LGPL v3) along with this program. | |
| #    If not, see <http://www.gnu.org/licenses/>. | |
| # | |
| ############################################################################# | |
| from odoo import fields, models | |
| 
 | |
| 
 | |
| class HrEmployeeBase(models.AbstractModel): | |
|     """The inherited class HrEmployee to add new fields to 'hr.employee' """ | |
|     _inherit = "hr.employee.base" | |
| 
 | |
|     disable_payment = fields.Boolean( | |
|         string="POS-Disable Payment", | |
|         help="Disable the payment button on the POS") | |
|     disable_customer = fields.Boolean( | |
|         string="POS-Disable Customer", | |
|         help="Disable the customer selection button on the POS") | |
|     disable_plus_minus = fields.Boolean( | |
|         string="POS-Disable Plus-Minus", | |
|         help="Disable the +/- button on the POS") | |
|     disable_numpad = fields.Boolean( | |
|         string="POS-Disable Numpad", | |
|         help="Disable the number pad on the POS") | |
|     disable_qty = fields.Boolean( | |
|         string="POS-Disable Qty", | |
|         help="Disable the Qty button on the POS") | |
|     disable_discount = fields.Boolean( | |
|         string="POS-Disable Discount", | |
|         help="Disable the %Disc button on the POS") | |
|     disable_price = fields.Boolean( | |
|         string="POS-Disable price", | |
|         help="Disable the %Price button on the POS") | |
|     disable_remove_button = fields.Boolean( | |
|         string="POS-Disable Remove Button", | |
|         help="Disable the back button on the POS")
 | |
| 
 |