diff --git a/all_in_one_dynamic_custom_fields/README.rst b/all_in_one_dynamic_custom_fields/README.rst new file mode 100755 index 000000000..d29e7a39b --- /dev/null +++ b/all_in_one_dynamic_custom_fields/README.rst @@ -0,0 +1,47 @@ +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +All in One Custom Dynamic Fields +================================ +The features of module facilitates the addition of fields to any view within a model, +allowing users to specify attributes and properties at their preferred location. + +Configuration +============= +- www.odoo.com/documentation/17.0/setup/install.html +- Install our custom addon + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +AFFERO General Public License, Version 3 (AGPL v3). +(http://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +Developer: (V18) NIHALA KP, Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, +please check there if your issue has already been reported. + +Maintainer +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com + +This module is maintained by Cybrosys Technologies. +For support and more information, please visit `Our Website `__ + +Further information +=================== +HTML Description: ``__ diff --git a/all_in_one_dynamic_custom_fields/__init__.py b/all_in_one_dynamic_custom_fields/__init__.py new file mode 100644 index 000000000..2ff09a5c3 --- /dev/null +++ b/all_in_one_dynamic_custom_fields/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Nihala KP (odoo@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 . +# +############################################################################### +from . import models diff --git a/all_in_one_dynamic_custom_fields/__manifest__.py b/all_in_one_dynamic_custom_fields/__manifest__.py new file mode 100644 index 000000000..191b2a9d2 --- /dev/null +++ b/all_in_one_dynamic_custom_fields/__manifest__.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Nihala KP (odoo@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 . +# +############################################################################### +{ + 'name': 'All in One Dynamic Fields', + 'version': '18.0.1.0.0', + 'category': 'Extra Tools', + 'summary': 'Create Custom Fields As Per Your Need Without Any Coding.', + 'description': "The features of module facilitates the addition of fields" + "to any view within a model, allowing users to specify" + "attributes and properties at their preferred " + "location.", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['base'], + 'data': [ + 'data/dynamic_field_widgets_data.xml', + 'security/all_in_one_dynamic_custom_fields_security.xml', + 'security/ir.model.access.csv', + 'views/dynamic_fields_views.xml', + ], + 'images': ['static/description/banner.png'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/all_in_one_dynamic_custom_fields/data/dynamic_field_widgets_data.xml b/all_in_one_dynamic_custom_fields/data/dynamic_field_widgets_data.xml new file mode 100755 index 000000000..fd2795e61 --- /dev/null +++ b/all_in_one_dynamic_custom_fields/data/dynamic_field_widgets_data.xml @@ -0,0 +1,47 @@ + + + + + + image + binary + Image + + + + many2many_tags + many2many + Many2many Tags + + + + binary + many2many + Binary + + + + radio + selection + Radio + + + + priority + selection + Priority + + + + monetary + float + Monetary + + + + selection + many2one + Selection + + + diff --git a/all_in_one_dynamic_custom_fields/doc/RELEASE_NOTES.md b/all_in_one_dynamic_custom_fields/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..8a59b9bb3 --- /dev/null +++ b/all_in_one_dynamic_custom_fields/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 2.11.2024 +#### Version 18.0.1.0.0 +##### ADD + +- Initial commit for All in One Dynamic Fields diff --git a/all_in_one_dynamic_custom_fields/models/__init__.py b/all_in_one_dynamic_custom_fields/models/__init__.py new file mode 100755 index 000000000..67da3fcd8 --- /dev/null +++ b/all_in_one_dynamic_custom_fields/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Nihala KP (odoo@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 . +# +############################################################################### +from . import dynamic_field_widgets +from . import dynamic_fields +from . import ir_model_fields diff --git a/all_in_one_dynamic_custom_fields/models/dynamic_field_widgets.py b/all_in_one_dynamic_custom_fields/models/dynamic_field_widgets.py new file mode 100755 index 000000000..0496f556b --- /dev/null +++ b/all_in_one_dynamic_custom_fields/models/dynamic_field_widgets.py @@ -0,0 +1,39 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Nihala KP (odoo@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 . +# +############################################################################### +from odoo import fields, models + + +class DynamicFieldWidgets(models.Model): + """We can't filter a selection field dynamically + so when we select a field its widgets also need to change according to + the selected field type, we can't do it by a 'selection' field, + need a 'Many 2 one' field.""" + + _name = 'dynamic.field.widgets' + _rec_name = 'description' + _description = 'Field Widgets' + + name = fields.Char(string="Name", help="Technical name of the widget") + data_type = fields.Char(string="Data Type", help="Datatype suitable for" + " the widget") + description = fields.Char(string="Description", help="Description of" + " the widget") diff --git a/all_in_one_dynamic_custom_fields/models/dynamic_fields.py b/all_in_one_dynamic_custom_fields/models/dynamic_fields.py new file mode 100755 index 000000000..21c52025e --- /dev/null +++ b/all_in_one_dynamic_custom_fields/models/dynamic_fields.py @@ -0,0 +1,293 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Nihala KP (odoo@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 . +# +############################################################################### +import xml.etree.ElementTree as ET +from odoo import api, fields, models, _ + + +class DynamicFields(models.Model): + """Creates dynamic fields model to create and manage new fields""" + _name = 'dynamic.fields' + _rec_name = 'field_description' + _description = 'Custom Dynamic Fields' + _inherit = 'ir.model.fields' + + @api.model + def get_possible_field_types(self): + """Return all available field types other than 'o2m' and + 'reference' fields.""" + field_list = sorted((key, key) for key in fields.MetaField.by_type) + field_list.remove(('one2many', 'one2many')) + field_list.remove(('reference', 'reference')) + return field_list + + @api.onchange('model_id') + def _onchange_model_id(self): + """Pass selected model into model field to filter position fields, + set values to form_view_ids to filter form view ids and pass + values to tree_view_ids to filter tree view ids""" + for rec in self: + rec.model = rec.model_id.model + rec.write({'form_view_ids': [(6, 0, rec.model_id.view_ids.filtered( + lambda view: view.type == 'form' and view.mode == 'primary') + .ids)]}) + rec.write({'tree_view_ids': + [(6, 0, self.model_id.view_ids.filtered( + lambda + view: view.type == 'list' and view.mode == 'primary') + .ids)]}) + + model = fields.Char(string='Model', help="To store selected model name") + position_field_id = fields.Many2one(comodel_name='ir.model.fields', + string='Field Name', + required=True, ondelete='cascade', + help="Position field for new field", + domain=lambda + self: "[('model', '=', model)]") + position = fields.Selection(selection=[('before', 'Before'), + ('after', 'After')], + string='Position', + required=True, help="Position of new field") + model_id = fields.Many2one(comodel_name='ir.model', string='Model', + required=True, + index=True, + help="The model this field belongs to") + ref_model_id = fields.Many2one(comodel_name='ir.model', string='Rezlational' + 'Model', + index=True, help="Relational model" + " for relational fields") + selection_field = fields.Char(string="Selection Options", + help="The model this field belongs to") + field_type = fields.Selection(selection='get_possible_field_types', + string='Field Type', required=True, + help="Data type of new field") + tree_field_ids = fields.Many2many('ir.model.fields', + 'tree_field_ids', + compute='_compute_tree_field_ids') + ttype = fields.Selection(string="Field Type", related='field_type', + help="Field type of field") + widget_id = fields.Many2one(comodel_name='dynamic.field.widgets', + string='Widget', help="Widgets for field" , + domain=lambda self: "[('data_type', '=', " + "field_type)]") + groups = fields.Many2many('res.groups', + 'dynamic_fields_group_rel', + 'dynamic_field_id', + 'dynamic_group_id', + help="Groups of field") + extra_features = fields.Boolean(string="Show Extra Properties", + help="Enable to add extra features") + status = fields.Selection(selection=[('draft', 'Draft'), + ('form', 'Field Created')], + string='Status', + index=True, readonly=True, tracking=True, + copy=False, default='draft', + help='State for record') + form_view_ids = fields.Many2many(comodel_name='ir.ui.view', + string="Form View IDs", + help="Stores form view ids") + tree_view_ids = fields.Many2many(comodel_name='ir.ui.view', + relation="rel_tree_view", + string="Tree View IDs", + help="Stores tree view ids") + form_view_id = fields.Many2one(comodel_name='ir.ui.view', + string="Form View ID", + required=True, + help="Form view id of the model", + domain=lambda self: "[('id', 'in', " + "form_view_ids)]") + form_view_inherit_id = fields.Char(string="Form View Inherit Id", + related='form_view_id.xml_id', + help="Form view inherit id(adds" + " by selecting form view id)") + add_field_in_tree = fields.Boolean(string="Add Field to the Tree View", + help="Enable to add field in tree view") + tree_view_id = fields.Many2one(comodel_name='ir.ui.view', + string="Tree View ID", + help="Tree view id of the model", + domain=lambda self: "[('id', 'in', " + "tree_view_ids)]") + tree_view_inherit_id = fields.Char(string="External Id", + related='tree_view_id.xml_id', + help="Tree view inherit id(adds" + " by selecting tree view id)") + tree_field_id = fields.Many2one('ir.model.fields', + string='Tree Field', + help='Position for new field', + domain="[('id', 'in', tree_field_ids)]") + tree_field_position = fields.Selection(selection=[('before', 'Before'), + ('after', 'After')], + string='Tree Position', + help="Position of new field in " + "tree view") + is_visible_in_tree_view = fields.Boolean(string='Visible In List View', + help="Enable to make the field " + "visible in selected list " + "view of the model") + created_tree_view_id = fields.Many2one('ir.ui.view', + string='Created Tree view', + help='This is the currently ' + 'created tree view') + created_form_view_id = fields.Many2one('ir.ui.view', + string='Created form view', + help='Created form view id for the ' + 'dynamic field') + + @api.depends('tree_view_id') + def _compute_tree_field_ids(self): + """Compute function to find the tree view fields of selected tree view + in field tree_view_id""" + for rec in self: + if rec.tree_view_id: + field_list = [] + if rec.tree_view_id.xml_id: + fields = ET.fromstring(self.env.ref( + rec.tree_view_id.xml_id).arch).findall(".//field") + for field in fields: + field_list.append(field.get('name')) + inherit_id = rec.tree_view_id.inherit_id if ( + rec.tree_view_id.inherit_id) else False + while inherit_id: + if inherit_id.xml_id: + fields = ET.fromstring(self.env.ref( + inherit_id.xml_id).arch).findall(".//field") + for field in fields: + field_list.append(field.get('name')) + inherit_id = inherit_id.inherit_id if ( + inherit_id.inherit_id) else False + self.tree_field_ids = self.env['ir.model.fields'].search( + [('model_id', '=', self.model_id.id), + ('name', 'in', field_list)]) + else: + rec.tree_field_ids = False + + @api.onchange('add_field_in_tree') + def _onchange_add_field_in_tree(self): + """Function to clear values of tree_view_id and tree_field_id""" + if not self.add_field_in_tree: + self.tree_view_id = False + self.tree_field_id = False + + def action_create_dynamic_field(self): + """Function to create dynamic field to a particular model, data type, + properties and etc""" + self.write({'status': 'form'}) + if self.field_type == 'monetary' and not self.env[ + 'ir.model.fields'].sudo().search([('model', '=', self.model_id.id), + ('name', '=', 'currency_id')]): + self.env['ir.model.fields'].sudo().create({ + 'name': 'x_currency_id', + 'field_description': 'Currency', + 'model_id': self.model_id.id, + 'ttype': 'many2one', + 'relation': 'res.currency', + 'is_dynamic_field': True + }) + self.env['ir.model.fields'].sudo().create({ + 'name': self.name, + 'field_description': self.field_description, + 'model_id': self.model_id.id, + 'ttype': self.field_type, + 'relation': self.ref_model_id.model, + 'required': self.required, + 'index': self.index, + 'store': self.store, + 'help': self.help, + 'readonly': self.readonly, + 'selection': self.selection_field, + 'copied': self.copied, + 'is_dynamic_field': True + }) + inherit_form_view_name = str( + self.form_view_id.name) + ".inherit.dynamic.custom." + str( + self.field_description) + ".field" + xml_id = self.form_view_id.xml_id + inherit_id = self.env.ref(xml_id) + arch_base = _('' + '' + '' + '' + '' + '') % (self.position_field_id.name, + self.position, self.name) + if self.widget_id: + arch_base = _('' + '' + '' + '' + '' + '') % (self.position_field_id.name, + self.position, self.name, + self.widget_id.name) + self.created_form_view_id = self.env['ir.ui.view'].sudo().create({ + 'name': inherit_form_view_name, + 'type': 'form', + 'model': self.model_id.model, + 'mode': 'extension', + 'inherit_id': inherit_id.id, + 'arch_base': arch_base, + 'active': True + }) + self.action_create_to_tree_view() + return { + 'type': 'ir.actions.client', + 'tag': 'reload', + } + + def action_create_to_tree_view(self): + """Function to add field to tree view""" + if self.add_field_in_tree: + optional = "show" if self.is_visible_in_tree_view else "hide" + tree_view_arch_base = (_(f''' + + + + + ''')) + inherit_tree_view_name = str( + self.tree_view_id.name) + ".inherit.dynamic.custom" + \ + str(self.field_description) + ".field" + self.created_tree_view_id = self.env['ir.ui.view'].sudo().create( + { + 'name': inherit_tree_view_name, + 'type': 'list', + 'model': self.model_id.model, + 'mode': 'extension', + 'inherit_id': self.tree_view_id.id, + 'arch_base': tree_view_arch_base, + 'active': True + }) + return { + 'type': 'ir.actions.client', + 'tag': 'reload', + } + + def unlink(self): + """Custom unlink method to handle linked records.""" + # Deactivate related form and tree views for the dynamic field + if self.created_form_view_id: + self.created_form_view_id.active = False + if self.created_tree_view_id: + self.created_tree_view_id.active = False + model = self.env[self.model_id.model] + if self.name in model._fields: + model._pop_field(self.name) + return super(DynamicFields, self).unlink() \ No newline at end of file diff --git a/all_in_one_dynamic_custom_fields/models/ir_model_fields.py b/all_in_one_dynamic_custom_fields/models/ir_model_fields.py new file mode 100755 index 000000000..f16967dc5 --- /dev/null +++ b/all_in_one_dynamic_custom_fields/models/ir_model_fields.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Nihala KP(odoo@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 . +# +############################################################################### +from odoo import models, fields + + +class IrModelFields(models.Model): + """Adding a new field to understand the dynamically created fields.""" + + _inherit = 'ir.model.fields' + + is_dynamic_field = fields.Boolean(string="Dynamic Field", + help="To filter dynamically" + " created fields") diff --git a/all_in_one_dynamic_custom_fields/security/all_in_one_dynamic_custom_fields_security.xml b/all_in_one_dynamic_custom_fields/security/all_in_one_dynamic_custom_fields_security.xml new file mode 100755 index 000000000..e36f8db15 --- /dev/null +++ b/all_in_one_dynamic_custom_fields/security/all_in_one_dynamic_custom_fields_security.xml @@ -0,0 +1,30 @@ + + + + + All in One Custom Dynamic Fields + Helps you handle your All-in-One Custom + Dynamic Fields Permissions + + 5 + + + + User + + + + + Administrator + + + + + diff --git a/all_in_one_dynamic_custom_fields/security/ir.model.access.csv b/all_in_one_dynamic_custom_fields/security/ir.model.access.csv new file mode 100755 index 000000000..e8d222874 --- /dev/null +++ b/all_in_one_dynamic_custom_fields/security/ir.model.access.csv @@ -0,0 +1,4 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_all_in_one_dynamic_custom_fields_administrator,dynamic.fields,model_dynamic_fields,all_in_one_dynamic_custom_fields.group_all_in_one_dynamic_custom_fields_administrator,1,1,1,1 +access_all_in_one_dynamic_custom_fields_user,dynamic.fields,model_dynamic_fields,all_in_one_dynamic_custom_fields.group_all_in_one_dynamic_custom_fields_user,1,0,0,0 +access_dynamic_field_widgets,dynamic.field.widgets,model_dynamic_field_widgets,base.group_user,1,1,1,1 diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/cybro-icon.png b/all_in_one_dynamic_custom_fields/static/description/assets/cybro-icon.png new file mode 100644 index 000000000..06e73e11d Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/cybro-icon.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/cybro-odoo.png b/all_in_one_dynamic_custom_fields/static/description/assets/cybro-odoo.png new file mode 100644 index 000000000..ed02e07a4 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/cybro-odoo.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/h2.png b/all_in_one_dynamic_custom_fields/static/description/assets/h2.png new file mode 100644 index 000000000..0bfc4707d Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/h2.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/arrows-repeat.svg b/all_in_one_dynamic_custom_fields/static/description/assets/icons/arrows-repeat.svg new file mode 100644 index 000000000..1d7efabc5 --- /dev/null +++ b/all_in_one_dynamic_custom_fields/static/description/assets/icons/arrows-repeat.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/banner-1.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/banner-1.png new file mode 100644 index 000000000..c180db172 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/banner-1.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/banner-2.svg b/all_in_one_dynamic_custom_fields/static/description/assets/icons/banner-2.svg new file mode 100644 index 000000000..e606d97d9 --- /dev/null +++ b/all_in_one_dynamic_custom_fields/static/description/assets/icons/banner-2.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/banner-bg.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/banner-bg.png new file mode 100644 index 000000000..a8238d3c0 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/banner-bg.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/banner-bg.svg b/all_in_one_dynamic_custom_fields/static/description/assets/icons/banner-bg.svg new file mode 100644 index 000000000..b1378103e --- /dev/null +++ b/all_in_one_dynamic_custom_fields/static/description/assets/icons/banner-bg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/banner-call.svg b/all_in_one_dynamic_custom_fields/static/description/assets/icons/banner-call.svg new file mode 100644 index 000000000..96c687e81 --- /dev/null +++ b/all_in_one_dynamic_custom_fields/static/description/assets/icons/banner-call.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/banner-mail.svg b/all_in_one_dynamic_custom_fields/static/description/assets/icons/banner-mail.svg new file mode 100644 index 000000000..cbf0d158d --- /dev/null +++ b/all_in_one_dynamic_custom_fields/static/description/assets/icons/banner-mail.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/banner-pattern.svg b/all_in_one_dynamic_custom_fields/static/description/assets/icons/banner-pattern.svg new file mode 100644 index 000000000..9c1c7e101 --- /dev/null +++ b/all_in_one_dynamic_custom_fields/static/description/assets/icons/banner-pattern.svg @@ -0,0 +1,343 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/banner-promo.svg b/all_in_one_dynamic_custom_fields/static/description/assets/icons/banner-promo.svg new file mode 100644 index 000000000..d52791b11 --- /dev/null +++ b/all_in_one_dynamic_custom_fields/static/description/assets/icons/banner-promo.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/brand-pair.svg b/all_in_one_dynamic_custom_fields/static/description/assets/icons/brand-pair.svg new file mode 100644 index 000000000..d8db7fc1e --- /dev/null +++ b/all_in_one_dynamic_custom_fields/static/description/assets/icons/brand-pair.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/check.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/check.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/chevron.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/chevron.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/close-icon.svg b/all_in_one_dynamic_custom_fields/static/description/assets/icons/close-icon.svg new file mode 100644 index 000000000..df8cce37a --- /dev/null +++ b/all_in_one_dynamic_custom_fields/static/description/assets/icons/close-icon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/cogs.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/cogs.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/collabarate-icon.svg b/all_in_one_dynamic_custom_fields/static/description/assets/icons/collabarate-icon.svg new file mode 100644 index 000000000..dd4e10518 --- /dev/null +++ b/all_in_one_dynamic_custom_fields/static/description/assets/icons/collabarate-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/consultation.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/consultation.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/cybro-logo.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/cybro-logo.png new file mode 100644 index 000000000..ff4b78220 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/cybro-logo.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/down.svg b/all_in_one_dynamic_custom_fields/static/description/assets/icons/down.svg new file mode 100644 index 000000000..f21c36271 --- /dev/null +++ b/all_in_one_dynamic_custom_fields/static/description/assets/icons/down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/ecom-black.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/ecom-black.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/education-black.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/education-black.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/faq.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/faq.png new file mode 100644 index 000000000..4250b5b81 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/faq.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/feature-icon.svg b/all_in_one_dynamic_custom_fields/static/description/assets/icons/feature-icon.svg new file mode 100644 index 000000000..fa0ea6850 --- /dev/null +++ b/all_in_one_dynamic_custom_fields/static/description/assets/icons/feature-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/feature.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/feature.png new file mode 100644 index 000000000..ac7a785c0 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/feature.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/gear.svg b/all_in_one_dynamic_custom_fields/static/description/assets/icons/gear.svg new file mode 100644 index 000000000..0cc66b6ea --- /dev/null +++ b/all_in_one_dynamic_custom_fields/static/description/assets/icons/gear.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/hero.gif b/all_in_one_dynamic_custom_fields/static/description/assets/icons/hero.gif new file mode 100644 index 000000000..037a0a185 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/hero.gif differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/hire-odoo.svg b/all_in_one_dynamic_custom_fields/static/description/assets/icons/hire-odoo.svg new file mode 100644 index 000000000..e1ac089b0 --- /dev/null +++ b/all_in_one_dynamic_custom_fields/static/description/assets/icons/hire-odoo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/hotel-black.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/hotel-black.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/license.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/license.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/life-ring-icon.svg b/all_in_one_dynamic_custom_fields/static/description/assets/icons/life-ring-icon.svg new file mode 100644 index 000000000..3ae6e1d89 --- /dev/null +++ b/all_in_one_dynamic_custom_fields/static/description/assets/icons/life-ring-icon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/lifebuoy.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/lifebuoy.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/mail.svg b/all_in_one_dynamic_custom_fields/static/description/assets/icons/mail.svg new file mode 100644 index 000000000..1eedde695 --- /dev/null +++ b/all_in_one_dynamic_custom_fields/static/description/assets/icons/mail.svg @@ -0,0 +1,3 @@ + + + diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/manufacturing-black.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/manufacturing-black.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/notes.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/notes.png new file mode 100644 index 000000000..ee5e95404 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/notes.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/notification icon.svg b/all_in_one_dynamic_custom_fields/static/description/assets/icons/notification icon.svg new file mode 100644 index 000000000..053189973 --- /dev/null +++ b/all_in_one_dynamic_custom_fields/static/description/assets/icons/notification icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/odoo-consultancy.svg b/all_in_one_dynamic_custom_fields/static/description/assets/icons/odoo-consultancy.svg new file mode 100644 index 000000000..e05f65bde --- /dev/null +++ b/all_in_one_dynamic_custom_fields/static/description/assets/icons/odoo-consultancy.svg @@ -0,0 +1,4 @@ + + + + diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/odoo-licencing.svg b/all_in_one_dynamic_custom_fields/static/description/assets/icons/odoo-licencing.svg new file mode 100644 index 000000000..2606c88b0 --- /dev/null +++ b/all_in_one_dynamic_custom_fields/static/description/assets/icons/odoo-licencing.svg @@ -0,0 +1,3 @@ + + + diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/odoo-logo.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/odoo-logo.png new file mode 100644 index 000000000..0e4d0eb5a Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/odoo-logo.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/patter.svg b/all_in_one_dynamic_custom_fields/static/description/assets/icons/patter.svg new file mode 100644 index 000000000..25c9c0a8f --- /dev/null +++ b/all_in_one_dynamic_custom_fields/static/description/assets/icons/patter.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/pattern1.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/pattern1.png new file mode 100644 index 000000000..09ab0fb2d Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/pattern1.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/pos-black.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/pos-black.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/puzzle-piece-icon.svg b/all_in_one_dynamic_custom_fields/static/description/assets/icons/puzzle-piece-icon.svg new file mode 100644 index 000000000..3e9ad9373 --- /dev/null +++ b/all_in_one_dynamic_custom_fields/static/description/assets/icons/puzzle-piece-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/puzzle.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/puzzle.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/replace-icon.svg b/all_in_one_dynamic_custom_fields/static/description/assets/icons/replace-icon.svg new file mode 100644 index 000000000..d0e3a7af1 --- /dev/null +++ b/all_in_one_dynamic_custom_fields/static/description/assets/icons/replace-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/restaurant-black.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/restaurant-black.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/screenshot-main.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/screenshot-main.png new file mode 100644 index 000000000..575f8e676 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/screenshot-main.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/screenshot.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/screenshot.png new file mode 100644 index 000000000..cef272529 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/screenshot.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/service-black.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/service-black.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/skype-fill.svg b/all_in_one_dynamic_custom_fields/static/description/assets/icons/skype-fill.svg new file mode 100644 index 000000000..c17423639 --- /dev/null +++ b/all_in_one_dynamic_custom_fields/static/description/assets/icons/skype-fill.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/skype.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/skype.png new file mode 100644 index 000000000..51b409fb3 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/skype.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/skype.svg b/all_in_one_dynamic_custom_fields/static/description/assets/icons/skype.svg new file mode 100644 index 000000000..df3dad39b --- /dev/null +++ b/all_in_one_dynamic_custom_fields/static/description/assets/icons/skype.svg @@ -0,0 +1,3 @@ + + + diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/star-1.svg b/all_in_one_dynamic_custom_fields/static/description/assets/icons/star-1.svg new file mode 100644 index 000000000..7e55ab162 --- /dev/null +++ b/all_in_one_dynamic_custom_fields/static/description/assets/icons/star-1.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/star-2.svg b/all_in_one_dynamic_custom_fields/static/description/assets/icons/star-2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/all_in_one_dynamic_custom_fields/static/description/assets/icons/star-2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/support.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/support.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/test-1 - Copy.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/test-1 - Copy.png new file mode 100644 index 000000000..f6a902663 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/test-1 - Copy.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/test-1.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/test-1.png new file mode 100644 index 000000000..0908add2b Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/test-1.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/test-2.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/test-2.png new file mode 100644 index 000000000..4671fe91e Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/test-2.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/trading-black.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/trading-black.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/training.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/training.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/translate.svg b/all_in_one_dynamic_custom_fields/static/description/assets/icons/translate.svg new file mode 100644 index 000000000..af9c8a1aa --- /dev/null +++ b/all_in_one_dynamic_custom_fields/static/description/assets/icons/translate.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/update.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/update.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/user.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/user.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/video.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/video.png new file mode 100644 index 000000000..576705b17 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/video.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/whatsapp.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/whatsapp.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/wrench-icon.svg b/all_in_one_dynamic_custom_fields/static/description/assets/icons/wrench-icon.svg new file mode 100644 index 000000000..174b5a465 --- /dev/null +++ b/all_in_one_dynamic_custom_fields/static/description/assets/icons/wrench-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/icons/wrench.png b/all_in_one_dynamic_custom_fields/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/icons/wrench.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/modules/1.jpg b/all_in_one_dynamic_custom_fields/static/description/assets/modules/1.jpg new file mode 100644 index 000000000..5bb653900 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/modules/1.jpg differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/modules/2.jpg b/all_in_one_dynamic_custom_fields/static/description/assets/modules/2.jpg new file mode 100644 index 000000000..23a54fe6b Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/modules/2.jpg differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/modules/3.jpg b/all_in_one_dynamic_custom_fields/static/description/assets/modules/3.jpg new file mode 100644 index 000000000..67f1a6437 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/modules/3.jpg differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/modules/4.png b/all_in_one_dynamic_custom_fields/static/description/assets/modules/4.png new file mode 100644 index 000000000..ecea68d98 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/modules/4.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/modules/5.jpg b/all_in_one_dynamic_custom_fields/static/description/assets/modules/5.jpg new file mode 100644 index 000000000..4bd9278e3 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/modules/5.jpg differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/modules/6.jpg b/all_in_one_dynamic_custom_fields/static/description/assets/modules/6.jpg new file mode 100644 index 000000000..31a56b08c Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/modules/6.jpg differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/screenshots/1.png b/all_in_one_dynamic_custom_fields/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..ec94ce42a Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/screenshots/1.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/screenshots/2.png b/all_in_one_dynamic_custom_fields/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..6ea9271ee Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/screenshots/2.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/screenshots/3.png b/all_in_one_dynamic_custom_fields/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..0911f0b80 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/screenshots/3.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/screenshots/4.png b/all_in_one_dynamic_custom_fields/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..4bc9d5959 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/screenshots/4.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/screenshots/5.png b/all_in_one_dynamic_custom_fields/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..0f892f998 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/screenshots/5.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/screenshots/6.png b/all_in_one_dynamic_custom_fields/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..bf73425ae Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/screenshots/6.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/screenshots/all_in_one_dynamic_custom_fields_screenshots.zip b/all_in_one_dynamic_custom_fields/static/description/assets/screenshots/all_in_one_dynamic_custom_fields_screenshots.zip new file mode 100644 index 000000000..a08240f24 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/screenshots/all_in_one_dynamic_custom_fields_screenshots.zip differ diff --git a/all_in_one_dynamic_custom_fields/static/description/assets/y18.jpg b/all_in_one_dynamic_custom_fields/static/description/assets/y18.jpg new file mode 100644 index 000000000..eea1714f2 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/assets/y18.jpg differ diff --git a/all_in_one_dynamic_custom_fields/static/description/banner.png b/all_in_one_dynamic_custom_fields/static/description/banner.png new file mode 100644 index 000000000..cf3ef442f Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/banner.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/icon.png b/all_in_one_dynamic_custom_fields/static/description/icon.png new file mode 100644 index 000000000..01480e821 Binary files /dev/null and b/all_in_one_dynamic_custom_fields/static/description/icon.png differ diff --git a/all_in_one_dynamic_custom_fields/static/description/index.html b/all_in_one_dynamic_custom_fields/static/description/index.html new file mode 100644 index 000000000..42e908e00 --- /dev/null +++ b/all_in_one_dynamic_custom_fields/static/description/index.html @@ -0,0 +1,1057 @@ + + + + + + All In One Dynamic Fields + + + + + + + + + + +
+
+ + + +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+
+

+ Create Custom Fields In As Per You Need Without + Any Coding. +

+

All in One Dynamic Fields +

+
+
+ +
+ +
+ +
+
+
+ +
+
+ +
+
+
+
+ +
+
+
+

Key + Highlights

+
+
+
+
+ +
+
+ Creates custom fields +
+

+ Creates custom fields in any modules without + coding.

+
+
+
+
+
+ +
+
+ Set position easily +
+

+ The position of the fields can be easily + set. +

+
+
+
+
+
+ +
+
+ Use field widgets +
+

+ Widgets can be selected for custom fields. +

+
+
+
+
+
+ +
+
+ Set field properties +
+

+ Can set the field properties + (help,required,copied,read-only,indexed).

+
+
+
+
+ +
+
+
+ All in One Dynamic Fields +

+ Are you ready to make your business more + organized? +
Improve now! +

+ +
+
+ +
+
+
+ + + + +
+
+ +
+
+
+
+ acc_bg +
+ +
+
+
+
+

+ Create Custom + + Dynamic Fields. +

+
+
+

+ After installation, give the + user access to 'Create Custom + Dynamic Fields' from user + settings. +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ Create + + Fields. +

+
+
+

+ Open the module and Click Create + Button to create new custom + fields and fill the details.Then + click the Create Field. +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ Model + +

+
+
+

+ Select the model for which you + want to create a custom field. +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ Field Type + + +

+
+
+

+ Choose the field type. +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ List / Tree + + + View +

+
+
+

+ The custom field also we can add + to the module List/Tree view. +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ Sale Order + + + Form View +

+
+
+

+ A new custom field is created in + the sale order form view. +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ Sale Order + + + Tree/List View +

+
+
+

+ A new custom field is created in + the sale order tree view. +

+
+
+
+ +
+
+
+
+
+
+
+
+ +
+
+
+
+ +
+

+ Creates custom fields in any + modules without coding

+
+ +
+
+
+
+
+
+ +
+

+ The position of the fields can + be easily set. +

+
+
+
+
+
+
+
+ +
+

+ Widgets can be selected for + custom fields. + .

+
+
+
+
+
+
+
+ +
+

+ Can set the field properties + (help,required,copied,read-only,indexed)

+
+ +
+
+
+
+ +
+ +
+
+

+ Latest Release 18.0.1.0.0 +

+ + 1st October, 2024 + +
+
+
+
+
+ Add +
+
+
+
    +
  • + Initial Commit +
  • + +
+
+
+
+
+
+
+
+
+
+ + + + + + +
+

+ Our Services

+ +
+ +
+
+ .... +
+
+ +
+ + +
+
+ + + + + + diff --git a/all_in_one_dynamic_custom_fields/views/dynamic_fields_views.xml b/all_in_one_dynamic_custom_fields/views/dynamic_fields_views.xml new file mode 100644 index 000000000..521ded7f2 --- /dev/null +++ b/all_in_one_dynamic_custom_fields/views/dynamic_fields_views.xml @@ -0,0 +1,137 @@ + + + + + dynamic.fields.view.list + dynamic.fields + + + + + + + + + + + + dynamic.fields.view.form + dynamic.fields + +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + + + Custom Dynamic Fields + dynamic.fields + list,form + +

+ Create New Custom Dynamic Field! +

+
+
+ + + + + + +