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.5 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							52 lines
						
					
					
						
							2.5 KiB
						
					
					
				| # -*- coding: utf-8 -*- | |
| ############################################################################# | |
| # | |
| #    Cybrosys Technologies Pvt. Ltd. | |
| # | |
| #    Copyright (C) 2024-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 RiskIncidents(models.Model): | |
|     """ Risk Incident """ | |
|     _name = 'risk.incident' | |
|     _inherit = ['mail.thread', 'mail.activity.mixin'] | |
|     _rec_name = 'risk_incident' | |
| 
 | |
|     risk_incident = fields.Char(string='Title', tracking=True, required=True, help='Risk Incident Name') | |
|     project_id = fields.Many2one('project.project', string='Project', | |
|                                  tracking=True, help='Project of the Risk Incident') | |
|     user_id = fields.Many2one('res.users', string='Assigned to', | |
|                               help='Select user', | |
|                               tracking=True, default=lambda self: self.env.user) | |
|     deadline = fields.Date(string='Deadline', tracking=True, help='Deadline of the Risk Incident') | |
|     tag_ids = fields.Many2many('risk.tag', string='Tags', tracking=True, help='Risk Tag') | |
|     partner_id = fields.Many2one('res.partner', string='Customer', | |
|                                  tracking=True, help='Partner of the Risk Incident') | |
|     state = fields.Selection( | |
|         [('new', 'New'), ('to_do', 'To Do'), | |
|          ('advanced', 'Advanced'), ('progress', 'In Progress'), | |
|          ('done', 'Done'), ('cancel', 'Cancelled')], | |
|         string='Status', default='new', tracking=True, help='states', | |
|         group_expand='_group_expand_states') | |
|     note = fields.Text(string='Description', help='Description') | |
|     incident_image = fields.Binary(string='Incident Image', help='Image') | |
| 
 | |
|     def _group_expand_states(self, state, domain, order): | |
|         return [key for | |
|                 key, val in type(self).state.selection]
 | |
| 
 |