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.
		
		
		
		
		
			
		
			
				
					
					
						
							53 lines
						
					
					
						
							2.3 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							53 lines
						
					
					
						
							2.3 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 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 DashboardTheme(models.Model): | |
|     _name = 'dashboard.theme' | |
|     _description = 'Dashboard Theme' | |
| 
 | |
|     name = fields.Char(string='Theme Name', help='Name of the theme') | |
|     color_x = fields.Char(string='Color X', help='Select the color_x for theme', | |
|                           default='#4158D0') | |
|     color_y = fields.Char(string='Color Y', help='Select the color_y for theme', | |
|                           default='#C850C0') | |
|     color_z = fields.Char(string='Color Z', help='Select the color_z for theme', | |
|                           default='#FFCC70') | |
|     body = fields.Html(string='Body', help='Preview of the theme will be shown') | |
|     style = fields.Char(string='Style', | |
|                         help='It store the style of the gradient') | |
| 
 | |
|     @api.constrains('name', 'color_x', 'color_y', 'color_z') | |
|     def save_record(self): | |
|         """ | |
|             Function for saving the datas including body and style | |
|         """ | |
|         self.body = f"<div style='width:300px; height:300px;background-image: linear-gradient(50deg, {self.color_x} 0%, {self.color_y} 46%, {self.color_z} 100%);'/>" | |
|         self.style = f"background-image: linear-gradient(50deg, {self.color_x} 0%, {self.color_y} 46%, {self.color_z} 100%);" | |
| 
 | |
|     def get_records(self): | |
|         """ | |
|             Function for returning all records with fields name and style | |
|         """ | |
|         records = self.search_read([], ['name', 'style']) | |
|         return records
 | |
| 
 |