Browse Source

: Dec 04: [FIX] Bug Fixed 'all_in_one_dynamic_custom_fields'

pull/331/merge
Risvana Cybro 2 weeks ago
parent
commit
917346454c
  1. 2
      all_in_one_dynamic_custom_fields/__manifest__.py
  2. 5
      all_in_one_dynamic_custom_fields/doc/RELEASE_NOTES.md
  3. 2
      all_in_one_dynamic_custom_fields/models/dynamic_fields.py

2
all_in_one_dynamic_custom_fields/__manifest__.py

@ -21,7 +21,7 @@
################################################################################
{
'name': 'All in One Dynamic Fields',
'version': '17.0.1.1.1',
'version': '17.0.1.1.2',
'category': 'Extra Tools',
'summary': 'Create Custom Fields As Per Your Need Without Any Coding.',
'description': "The features of module facilitates the addition of fields"

5
all_in_one_dynamic_custom_fields/doc/RELEASE_NOTES.md

@ -10,3 +10,8 @@
#### Version 17.0.1.1.1
##### UPDATE
- The latest module update includes enhancements to the list view configuration. You can now add the newly created field to the selected list view at the desired position, with the option to enable or disable its visibility by default.
#### 03.12.2025
#### Version 17.0.1.1.2
##### UPDATE
- Fixed the package issue during module installation

2
all_in_one_dynamic_custom_fields/models/dynamic_fields.py

@ -19,7 +19,7 @@
# If not, see <http://www.gnu.org/licenses/>.
#
################################################################################
from xlrd.xlsx import ET
import xml.etree.ElementTree as ET
from odoo import api, fields, models, _

Loading…
Cancel
Save