Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions oca_dependencies.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
helpdesk
88 changes: 88 additions & 0 deletions spreadsheet_dashboard_helpdesk_oca/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
.. image:: https://odoo-community.org/readme-banner-image
:target: https://odoo-community.org/get-involved?utm_source=readme
:alt: Odoo Community Association

==================================
Spreadsheet dashboard for helpdesk
==================================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:ae03011402cac074f10571f3194b90d3a005fda27d1ce6dda6c057380e5f7583
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fspreadsheet-lightgray.png?logo=github
:target: https://github.com/OCA/spreadsheet/tree/19.0/spreadsheet_dashboard_helpdesk_oca
:alt: OCA/spreadsheet
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/spreadsheet-19-0/spreadsheet-19-0-spreadsheet_dashboard_helpdesk_oca
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/spreadsheet&target_branch=19.0
:alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|

Spreadsheet dashboard for helpdesk tickets.

**Table of contents**

.. contents::
:local:

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/spreadsheet/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/spreadsheet/issues/new?body=module:%20spreadsheet_dashboard_helpdesk_oca%0Aversion:%2019.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Do not contact contributors directly about support or help with technical issues.

Credits
=======

Authors
-------

* Domatix

Contributors
------------

- Domatix

Maintainers
-----------

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

.. |maintainer-domatix| image:: https://github.com/domatix.png?size=40px
:target: https://github.com/domatix
:alt: domatix

Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:

|maintainer-domatix|

This module is part of the `OCA/spreadsheet <https://github.com/OCA/spreadsheet/tree/19.0/spreadsheet_dashboard_helpdesk_oca>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
1 change: 1 addition & 0 deletions spreadsheet_dashboard_helpdesk_oca/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
13 changes: 13 additions & 0 deletions spreadsheet_dashboard_helpdesk_oca/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "Spreadsheet dashboard for helpdesk",
"category": "Hidden",
"depends": ["spreadsheet_dashboard", "helpdesk_mgmt"],
"version": "19.0.1.0.0",
"website": "https://github.com/OCA/spreadsheet",
"author": "Domatix, Odoo Community Association (OCA)",
"maintainers": ["domatix"],
"data": ["data/dashboards.xml"],
"installable": True,
"auto_install": ["helpdesk_mgmt"],
"license": "AGPL-3",
}
27 changes: 27 additions & 0 deletions spreadsheet_dashboard_helpdesk_oca/data/dashboards.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="utf-8" ?>
<!-- Copyright 2026 Domatix
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
<odoo>
<record id="spreadsheet_dashboard_helpdesk" model="spreadsheet.dashboard">
<field name="name">Helpdesk</field>
<field
name="spreadsheet_binary_data"
type="base64"
file="spreadsheet_dashboard_helpdesk_oca/data/files/helpdesk_dashboard.json"
/>
<field
name="main_data_model_ids"
eval="[(4, ref('helpdesk_mgmt.model_helpdesk_ticket'))]"
/>
<field
name="dashboard_group_id"
ref="spreadsheet_dashboard.spreadsheet_dashboard_group_project"
/>
<field
name="group_ids"
eval="[Command.link(ref('helpdesk_mgmt.group_helpdesk_manager'))]"
/>
<field name="sequence">100</field>
<field name="is_published">True</field>
</record>
</odoo>
Loading
Loading