From e85229ff922ad46d1122705ea1337da0e747e67e Mon Sep 17 00:00:00 2001 From: AjmalCybro Date: Thu, 3 Aug 2023 14:14:51 +0530 Subject: [PATCH] [FIX] Bug Fixed 'all_in_one_dynamic_custom_fields' --- all_in_one_dynamic_custom_fields/__manifest__.py | 2 +- all_in_one_dynamic_custom_fields/doc/RELEASE_NOTES.md | 4 ++-- all_in_one_dynamic_custom_fields/models/dynamic_fields.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/all_in_one_dynamic_custom_fields/__manifest__.py b/all_in_one_dynamic_custom_fields/__manifest__.py index 443b4e65e..1d273915d 100644 --- a/all_in_one_dynamic_custom_fields/__manifest__.py +++ b/all_in_one_dynamic_custom_fields/__manifest__.py @@ -22,7 +22,7 @@ ################################################################################### { 'name': 'All in One Dynamic Fields', - 'version': '16.0.1.1.1', + 'version': '16.0.1.1.2', 'summary': 'Create Custom Fields As Per Your Need Without Any Coding.', 'description': 'All in One Dynamic Fields, All in One Custom Fields, Dynamic Fields, Custom Fields, Create Fields Dynamically', 'category': 'Extra Tools', diff --git a/all_in_one_dynamic_custom_fields/doc/RELEASE_NOTES.md b/all_in_one_dynamic_custom_fields/doc/RELEASE_NOTES.md index 17b075a81..e8dbd268d 100644 --- a/all_in_one_dynamic_custom_fields/doc/RELEASE_NOTES.md +++ b/all_in_one_dynamic_custom_fields/doc/RELEASE_NOTES.md @@ -1,6 +1,6 @@ ## Module -#### 01.08.2023 -#### Version 16.0.1.1.1 +#### 02.08.2023 +#### Version 16.0.1.1.2 ##### ADD - Initial commit for All in One Custom Dynamic Fields diff --git a/all_in_one_dynamic_custom_fields/models/dynamic_fields.py b/all_in_one_dynamic_custom_fields/models/dynamic_fields.py index d247d32f9..40d64c51c 100644 --- a/all_in_one_dynamic_custom_fields/models/dynamic_fields.py +++ b/all_in_one_dynamic_custom_fields/models/dynamic_fields.py @@ -126,7 +126,7 @@ class DynamicFields(models.Model): '') % (self.position_field.name, self.position, self.name, self.widget.name) - self.form_view_id = self.env['ir.ui.view'].sudo().create({ + self.env['ir.ui.view'].sudo().create({ 'name': inherit_form_view_name, 'type': 'form', 'model': self.model_id.model, @@ -153,7 +153,7 @@ class DynamicFields(models.Model): '''''' '''''' '''''') % self.name - self.tree_view_id = self.env['ir.ui.view'].sudo().create({ + self.env['ir.ui.view'].sudo().create({ 'name': inherit_tree_view_name, 'type': 'tree', 'model': self.model_id.model,