Browse Source

Sep 25 [UPDT] Updated 'odoo_dynamic_dashboard'

pull/336/head
AjmalCybro 7 months ago
parent
commit
9403df42fb
  1. 6
      odoo_dynamic_dashboard/__manifest__.py
  2. 11
      odoo_dynamic_dashboard/doc/RELEASE_NOTES.md
  3. 6
      odoo_dynamic_dashboard/static/src/js/dynamic_dashboard_tile.js

6
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',

11
odoo_dynamic_dashboard/doc/RELEASE_NOTES.md

@ -5,9 +5,14 @@
##### ADD
- Initial commit for Odoo Dynamic Dashboard
## Module <odoo_dynamic_dashboard>
#### 20.07.2024
#### Version 17.0.2.0.0
##### UPDT
- New Features has been Added.
- 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.

6
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 `
<div class="resize-drag tile"
t-on-dblclick="getRecords"
t-on-click="getRecords"
t-att-data-id="this.props.widget.id"
t-att-data-x="this.props.widget.data_x"
t-att-data-y="this.props.widget.data_y"

Loading…
Cancel
Save