diff --git a/odoo_dynamic_dashboard/__manifest__.py b/odoo_dynamic_dashboard/__manifest__.py index fff509c05..0ab083c15 100644 --- a/odoo_dynamic_dashboard/__manifest__.py +++ b/odoo_dynamic_dashboard/__manifest__.py @@ -21,12 +21,10 @@ ############################################################################# { 'name': "Odoo Dynamic Dashboard", - 'version': '17.0.2.0.0', + 'version': '17.0.2.0.1', 'category': 'Productivity', 'summary': """Create Configurable Dashboards Easily""", - 'description': """Create Configurable Odoo Dynamic Dashboard to get the - information that are relevant to your business, department, or a specific - process or need""", + 'description': """Odoo Dynamic Dashboard, Dynamic Dashboard, Odoo Dashboard, Web Dynamic Dashboard, Dashboard with AI, Analytic Dashboard, AI Dashboard, Odoo17 Dashboard, Responsive Dashboard, Odoo17, Dashboard""", 'author': 'Cybrosys Techno Solutions', 'company': 'Cybrosys Techno Solutions', 'maintainer': 'Cybrosys Techno Solutions', diff --git a/odoo_dynamic_dashboard/doc/RELEASE_NOTES.md b/odoo_dynamic_dashboard/doc/RELEASE_NOTES.md index b34341b2f..400bc0632 100644 --- a/odoo_dynamic_dashboard/doc/RELEASE_NOTES.md +++ b/odoo_dynamic_dashboard/doc/RELEASE_NOTES.md @@ -5,9 +5,14 @@ ##### ADD - Initial commit for Odoo Dynamic Dashboard -## Module - #### 20.07.2024 #### Version 17.0.2.0.0 ##### UPDT -- New Features has been Added. \ No newline at end of file +- New Features has been Added. + +#### 25.09.2024 +#### Version 17.0.2.0.1 +##### UPDT +- Updated to open the the records from the tile with single click other wise it + was working on double click. Also while opening it only showed the tree view + not it will show the form view also. \ No newline at end of file diff --git a/odoo_dynamic_dashboard/static/src/js/dynamic_dashboard_tile.js b/odoo_dynamic_dashboard/static/src/js/dynamic_dashboard_tile.js index 8cfd238f0..b084e1008 100644 --- a/odoo_dynamic_dashboard/static/src/js/dynamic_dashboard_tile.js +++ b/odoo_dynamic_dashboard/static/src/js/dynamic_dashboard_tile.js @@ -46,8 +46,8 @@ export class DynamicDashboardTile extends Component { await this.doAction({ type: 'ir.actions.act_window', res_model: model_name, - view_mode: 'tree', - views: [[false, "tree"]], + view_mode: 'tree,form', + views: [[false, "tree"], [false, "form"]], domain: this.props.widget.domain, }); } @@ -55,7 +55,7 @@ export class DynamicDashboardTile extends Component { } DynamicDashboardTile.template = xml `