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.
		
		
		
		
		
			
		
			
				
					
					
						
							54 lines
						
					
					
						
							2.2 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							54 lines
						
					
					
						
							2.2 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 UserApprovalWindow(models.Model): | |
|     """Store Information of Attachment in a One2many Field""" | |
|     _name = 'user.approval.window' | |
|     _description = 'Attachment Details in User Approval Window' | |
| 
 | |
|     attachments = fields.Binary(string='Attachments', attachment=True, | |
|                                 help="Store the uploaded document") | |
|     approval_id = fields.Many2one('res.users.approve', | |
|                                   help="Signup information's of user") | |
| 
 | |
| 
 | |
| class SignupApproval(models.Model): | |
|     """Store Information's of User""" | |
|     _name = 'signup.approval' | |
|     _description = "Approval Request Details" | |
| 
 | |
|     login = fields.Char(string='Email', help="login details of user") | |
|     name = fields.Char(string='Name', help="name of the user") | |
|     approved_date = fields.Datetime(string='Approved Date', copy=False, | |
|                                     help="Approval date of signup request") | |
|     for_approval_menu = fields.Boolean(string='For Approval menu', | |
|                                        help="Check the request is approved") | |
| 
 | |
|     def action_approve_login(self): | |
|         """To approve the request from website""" | |
|         self.env['res.users'].create({ | |
|             'name': self.name, | |
|             'login': self.login, | |
|         }) | |
|         self.env.ref('base.group_user').users.ids.pop()
 | |
| 
 |