diff options
| author | Mqdd <ahmadmiqdad27@gmail.com> | 2025-12-29 16:12:38 +0700 |
|---|---|---|
| committer | Mqdd <ahmadmiqdad27@gmail.com> | 2025-12-29 16:12:38 +0700 |
| commit | cd171091ddb3382c54000e2837afe9f6d9dd66a2 (patch) | |
| tree | 31f620dde34f6a6238112420f3b2388b0f9a0223 | |
| parent | 95bcefaef503bcbe787f71ff0aadd2aa2faa47d5 (diff) | |
<Miqdad> redirect to overview accounting
| -rwxr-xr-x | fixco_custom/__manifest__.py | 1 | ||||
| -rw-r--r-- | fixco_custom/views/accounting_dashboard.xml | 12 |
2 files changed, 13 insertions, 0 deletions
diff --git a/fixco_custom/__manifest__.py b/fixco_custom/__manifest__.py index 7a796ad..2ba6f87 100755 --- a/fixco_custom/__manifest__.py +++ b/fixco_custom/__manifest__.py @@ -48,6 +48,7 @@ 'views/vit_kota.xml', 'views/token_log.xml', 'views/wizard_purchase_pricelist.xml', + 'views/accounting_dashboard.xml', ], 'demo': [], 'css': [], diff --git a/fixco_custom/views/accounting_dashboard.xml b/fixco_custom/views/accounting_dashboard.xml new file mode 100644 index 0000000..3580f9b --- /dev/null +++ b/fixco_custom/views/accounting_dashboard.xml @@ -0,0 +1,12 @@ +<odoo> + <data> + <record id="action_account_invoice_report_all" model="ir.actions.client"> + <field name="name">Accounting Overview</field> + <field name="tag">invoice_dashboard</field> + </record> + <record id="account.menu_board_journal_1" model="ir.ui.menu"> + <field name="action" ref="account.open_account_journal_dashboard_kanban"/> + <field name="sequence">1</field> + </record> + </data> +</odoo> |
