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.
		
		
		
		
		
			
		
			
				
					
					
						
							45 lines
						
					
					
						
							2.0 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							45 lines
						
					
					
						
							2.0 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 fields, models
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								class DynamicFields(models.Model):
							 | 
						|
								    """One2many fields of dynamic template"""
							 | 
						|
								    _name = "dynamic.fields"
							 | 
						|
								    _description = "Dynamic Fields"
							 | 
						|
								
							 | 
						|
								    def set_domain(self):
							 | 
						|
								        """Fields of the product model"""
							 | 
						|
								        model_id = self.env['ir.model'].sudo().search(
							 | 
						|
								            [('model', '=', 'product.product')])
							 | 
						|
								        return [('model_id', '=', model_id.id), ('state', '=', 'base'), (
							 | 
						|
								            'name', '=',
							 | 
						|
								            ['name', 'categ_id', 'detailed_type', 'list_price'])]
							 | 
						|
								
							 | 
						|
								    size = fields.Char(string='Font Size', help="Set the size of the field")
							 | 
						|
								    color = fields.Char(string='Font Color', help="Set the colour of the field")
							 | 
						|
								    fd_name_id = fields.Many2one('ir.model.fields', string='Field Name',
							 | 
						|
								                              domain=set_domain, help='Name of the field')
							 | 
						|
								    type = fields.Selection(string='Type', related='fd_name_id.ttype',
							 | 
						|
								                            help='Type of the field name')
							 | 
						|
								    field_id = fields.Many2one('dynamic.template', string='Fields',
							 | 
						|
								                               help='Relation from dynamic templates')
							 | 
						|
								
							 |