diff --git a/helpdesk_portal_ticket_custom/.gitignore b/helpdesk_portal_ticket_custom/.gitignore new file mode 100644 index 0000000..6da5887 --- /dev/null +++ b/helpdesk_portal_ticket_custom/.gitignore @@ -0,0 +1,2 @@ +*.*~ +*pyc diff --git a/helpdesk_portal_ticket_custom/README.md b/helpdesk_portal_ticket_custom/README.md new file mode 100644 index 0000000..b2f6b90 --- /dev/null +++ b/helpdesk_portal_ticket_custom/README.md @@ -0,0 +1,37 @@ +==================================== +helpdesk_portal_ticket_custom +==================================== + +Customization for ticket portal view. + +# Installation + +Use Odoo normal module installation procedure to install +`helpdesk_portal_ticket_custom`. + +# Known issues / Roadmap + +None yet. + +# Bug Tracker + +Bugs are tracked on `our issues website `\_. In case of +trouble, please check there if your issue has already been +reported. If you spotted it first, help us smashing it by providing a +detailed and welcomed feedback. + +# Credits + +## Contributors + +- Joris Scampucci + +## Funders + +The development of this module has been financially supported by: + +- Elabore (https://elabore.coop) + +## Maintainer + +This module is maintained by Elabore. diff --git a/helpdesk_portal_ticket_custom/__init__.py b/helpdesk_portal_ticket_custom/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/helpdesk_portal_ticket_custom/__manifest__.py b/helpdesk_portal_ticket_custom/__manifest__.py new file mode 100644 index 0000000..e2e48d2 --- /dev/null +++ b/helpdesk_portal_ticket_custom/__manifest__.py @@ -0,0 +1,35 @@ +# Copyright 2024 Joris Scampucci" (Elabore) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + "name": "helpdesk_portal_ticket_custom", + "version": "16.0.1.0.0", + "author": "Elabore", + "website": "https://elabore.coop", + "maintainer": "Joris Scampucci", + "license": "AGPL-3", + "category": "Tools", + "summary": "Customization for ticket portal view.", + # any module necessary for this one to work correctly + "depends": [ + "base", + "helpdesk_mgmt", + ], + "qweb": [], + "external_dependencies": { + "python": [], + }, + # always loaded + "data": [ + "views/portal_ticket_views.xml", + ], + # only loaded in demonstration mode + "demo": [], + "js": [], + "css": [], + "installable": True, + # Install this module automatically if all dependency have been previously + # and independently installed. Used for synergetic or glue modules. + "auto_install": False, + "application": False, +} diff --git a/helpdesk_portal_ticket_custom/views/portal_ticket_views.xml b/helpdesk_portal_ticket_custom/views/portal_ticket_views.xml new file mode 100644 index 0000000..d795ff8 --- /dev/null +++ b/helpdesk_portal_ticket_custom/views/portal_ticket_views.xml @@ -0,0 +1,29 @@ + + + + + + + + + \ No newline at end of file