diff --git a/cybrosys_support_client/README.rst b/cybrosys_support_client/README.rst new file mode 100644 index 000000000..6edceb3ae --- /dev/null +++ b/cybrosys_support_client/README.rst @@ -0,0 +1,46 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Odoo Support Request +==================== +Create Odoo Support Request To Cybrosys + +Configuration +============= +- No configuration needed + +License +======= +GNU LESSER GENERAL PUBLIC LICENSE v3.0 (LGPL v3) +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developers: (V17) Ashwin A, +Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : http://www.cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com + +This module is maintained by Cybrosys Technologies. +For support and more information, please visit https://www.cybrosys.com + +Further information +=================== +HTML Description: ``__ diff --git a/cybrosys_support_client/__init__.py b/cybrosys_support_client/__init__.py new file mode 100644 index 000000000..64f028216 --- /dev/null +++ b/cybrosys_support_client/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################## +from . import wizard diff --git a/cybrosys_support_client/__manifest__.py b/cybrosys_support_client/__manifest__.py new file mode 100644 index 000000000..648594a73 --- /dev/null +++ b/cybrosys_support_client/__manifest__.py @@ -0,0 +1,53 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################## +{ + 'name': "Odoo Support Request", + "version": "17.0.1.0.0", + "category": "Productivity ", + "summary": "Create Odoo Support Request To Cybrosys", + "description": """ This module facilitates the creation of support requests + to Cybrosys directly from the system tray. It also allows for support requests + via WhatsApp by providing the necessary details and attaching supporting + documents.""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['base', 'mail'], + 'data': [ + 'security/ir.model.access.csv', + 'wizard/client_support_views.xml', + ], + 'assets': { + 'web.assets_backend': [ + 'cybrosys_support_client/static/src/js/systray_icons.js', + 'cybrosys_support_client/static/src/xml/systray_icon.xml', + 'cybrosys_support_client/static/src/css/client_support.css', + 'https://cdn.jsdelivr.net/npm/remixicon/fonts/remixicon.css', + ] + }, + 'images': ['static/description/banner.jpg'], + 'license': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/cybrosys_support_client/doc/RELEASE_NOTES.md b/cybrosys_support_client/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..896f43a48 --- /dev/null +++ b/cybrosys_support_client/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 13.06.2024 +#### Version 17.0.1.0.0 +#### ADD +- Initial commit for Odoo Support Request diff --git a/cybrosys_support_client/security/ir.model.access.csv b/cybrosys_support_client/security/ir.model.access.csv new file mode 100644 index 000000000..90352f8f5 --- /dev/null +++ b/cybrosys_support_client/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_client_support,access.client.support,model_client_support,base.group_user,1,1,1,1 diff --git a/cybrosys_support_client/static/description/assets/cybro-icon.png b/cybrosys_support_client/static/description/assets/cybro-icon.png new file mode 100644 index 000000000..06e73e11d Binary files /dev/null and b/cybrosys_support_client/static/description/assets/cybro-icon.png differ diff --git a/cybrosys_support_client/static/description/assets/cybro-odoo.png b/cybrosys_support_client/static/description/assets/cybro-odoo.png new file mode 100644 index 000000000..ed02e07a4 Binary files /dev/null and b/cybrosys_support_client/static/description/assets/cybro-odoo.png differ diff --git a/cybrosys_support_client/static/description/assets/h2.png b/cybrosys_support_client/static/description/assets/h2.png new file mode 100644 index 000000000..0bfc4707d Binary files /dev/null and b/cybrosys_support_client/static/description/assets/h2.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/check.png b/cybrosys_support_client/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/check.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/chevron.png b/cybrosys_support_client/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/chevron.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/cogs.png b/cybrosys_support_client/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/cogs.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/consultation.png b/cybrosys_support_client/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/consultation.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/down.svg b/cybrosys_support_client/static/description/assets/icons/down.svg new file mode 100644 index 000000000..f21c36271 --- /dev/null +++ b/cybrosys_support_client/static/description/assets/icons/down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/cybrosys_support_client/static/description/assets/icons/ecom-black.png b/cybrosys_support_client/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/ecom-black.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/education-black.png b/cybrosys_support_client/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/education-black.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/faq.png b/cybrosys_support_client/static/description/assets/icons/faq.png new file mode 100644 index 000000000..4250b5b81 Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/faq.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/feature.png b/cybrosys_support_client/static/description/assets/icons/feature.png new file mode 100644 index 000000000..ac7a785c0 Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/feature.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/hotel-black.png b/cybrosys_support_client/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/hotel-black.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/license.png b/cybrosys_support_client/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/license.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/lifebuoy.png b/cybrosys_support_client/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/lifebuoy.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/manufacturing-black.png b/cybrosys_support_client/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/manufacturing-black.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/notes.png b/cybrosys_support_client/static/description/assets/icons/notes.png new file mode 100644 index 000000000..ee5e95404 Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/notes.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/pos-black.png b/cybrosys_support_client/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/pos-black.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/puzzle.png b/cybrosys_support_client/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/puzzle.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/restaurant-black.png b/cybrosys_support_client/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/restaurant-black.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/screenshot.png b/cybrosys_support_client/static/description/assets/icons/screenshot.png new file mode 100644 index 000000000..cef272529 Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/screenshot.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/service-black.png b/cybrosys_support_client/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/service-black.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/skype.png b/cybrosys_support_client/static/description/assets/icons/skype.png new file mode 100644 index 000000000..51b409fb3 Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/skype.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/star-1.svg b/cybrosys_support_client/static/description/assets/icons/star-1.svg new file mode 100644 index 000000000..7e55ab162 --- /dev/null +++ b/cybrosys_support_client/static/description/assets/icons/star-1.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cybrosys_support_client/static/description/assets/icons/star-2.svg b/cybrosys_support_client/static/description/assets/icons/star-2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/cybrosys_support_client/static/description/assets/icons/star-2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/cybrosys_support_client/static/description/assets/icons/support.png b/cybrosys_support_client/static/description/assets/icons/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/support.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/test-1 - Copy.png b/cybrosys_support_client/static/description/assets/icons/test-1 - Copy.png new file mode 100644 index 000000000..f6a902663 Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/test-1 - Copy.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/test-1.png b/cybrosys_support_client/static/description/assets/icons/test-1.png new file mode 100644 index 000000000..0908add2b Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/test-1.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/test-2.png b/cybrosys_support_client/static/description/assets/icons/test-2.png new file mode 100644 index 000000000..4671fe91e Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/test-2.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/trading-black.png b/cybrosys_support_client/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/trading-black.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/training.png b/cybrosys_support_client/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/training.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/update.png b/cybrosys_support_client/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/update.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/user.png b/cybrosys_support_client/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/user.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/video.png b/cybrosys_support_client/static/description/assets/icons/video.png new file mode 100644 index 000000000..576705b17 Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/video.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/whatsapp.png b/cybrosys_support_client/static/description/assets/icons/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/whatsapp.png differ diff --git a/cybrosys_support_client/static/description/assets/icons/wrench.png b/cybrosys_support_client/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/cybrosys_support_client/static/description/assets/icons/wrench.png differ diff --git a/cybrosys_support_client/static/description/assets/modules/1.gif b/cybrosys_support_client/static/description/assets/modules/1.gif new file mode 100644 index 000000000..ae3a880a2 Binary files /dev/null and b/cybrosys_support_client/static/description/assets/modules/1.gif differ diff --git a/cybrosys_support_client/static/description/assets/modules/2.jpg b/cybrosys_support_client/static/description/assets/modules/2.jpg new file mode 100644 index 000000000..a1dc39c89 Binary files /dev/null and b/cybrosys_support_client/static/description/assets/modules/2.jpg differ diff --git a/cybrosys_support_client/static/description/assets/modules/3.png b/cybrosys_support_client/static/description/assets/modules/3.png new file mode 100644 index 000000000..8513873ea Binary files /dev/null and b/cybrosys_support_client/static/description/assets/modules/3.png differ diff --git a/cybrosys_support_client/static/description/assets/modules/4.png b/cybrosys_support_client/static/description/assets/modules/4.png new file mode 100644 index 000000000..3bedf7981 Binary files /dev/null and b/cybrosys_support_client/static/description/assets/modules/4.png differ diff --git a/cybrosys_support_client/static/description/assets/modules/5.png b/cybrosys_support_client/static/description/assets/modules/5.png new file mode 100644 index 000000000..0e311ca87 Binary files /dev/null and b/cybrosys_support_client/static/description/assets/modules/5.png differ diff --git a/cybrosys_support_client/static/description/assets/modules/6.jpg b/cybrosys_support_client/static/description/assets/modules/6.jpg new file mode 100644 index 000000000..67c7f7062 Binary files /dev/null and b/cybrosys_support_client/static/description/assets/modules/6.jpg differ diff --git a/cybrosys_support_client/static/description/assets/screenshots/1.png b/cybrosys_support_client/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..7083832ee Binary files /dev/null and b/cybrosys_support_client/static/description/assets/screenshots/1.png differ diff --git a/cybrosys_support_client/static/description/assets/screenshots/2.png b/cybrosys_support_client/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..fb6d61559 Binary files /dev/null and b/cybrosys_support_client/static/description/assets/screenshots/2.png differ diff --git a/cybrosys_support_client/static/description/assets/screenshots/3.png b/cybrosys_support_client/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..01ea0f6cb Binary files /dev/null and b/cybrosys_support_client/static/description/assets/screenshots/3.png differ diff --git a/cybrosys_support_client/static/description/assets/screenshots/4.png b/cybrosys_support_client/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..265c073d2 Binary files /dev/null and b/cybrosys_support_client/static/description/assets/screenshots/4.png differ diff --git a/cybrosys_support_client/static/description/assets/screenshots/5.png b/cybrosys_support_client/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..f7a407b8d Binary files /dev/null and b/cybrosys_support_client/static/description/assets/screenshots/5.png differ diff --git a/cybrosys_support_client/static/description/assets/screenshots/6.png b/cybrosys_support_client/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..d6ee5db9b Binary files /dev/null and b/cybrosys_support_client/static/description/assets/screenshots/6.png differ diff --git a/cybrosys_support_client/static/description/assets/screenshots/7.png b/cybrosys_support_client/static/description/assets/screenshots/7.png new file mode 100644 index 000000000..68a6f80ff Binary files /dev/null and b/cybrosys_support_client/static/description/assets/screenshots/7.png differ diff --git a/cybrosys_support_client/static/description/assets/screenshots/hero.gif b/cybrosys_support_client/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..0843847be Binary files /dev/null and b/cybrosys_support_client/static/description/assets/screenshots/hero.gif differ diff --git a/cybrosys_support_client/static/description/assets/y18.jpg b/cybrosys_support_client/static/description/assets/y18.jpg new file mode 100644 index 000000000..eea1714f2 Binary files /dev/null and b/cybrosys_support_client/static/description/assets/y18.jpg differ diff --git a/cybrosys_support_client/static/description/banner.jpg b/cybrosys_support_client/static/description/banner.jpg new file mode 100644 index 000000000..dc366edfd Binary files /dev/null and b/cybrosys_support_client/static/description/banner.jpg differ diff --git a/cybrosys_support_client/static/description/icon.png b/cybrosys_support_client/static/description/icon.png new file mode 100644 index 000000000..ea43f65d7 Binary files /dev/null and b/cybrosys_support_client/static/description/icon.png differ diff --git a/cybrosys_support_client/static/description/index.html b/cybrosys_support_client/static/description/index.html new file mode 100644 index 000000000..b37bf337e --- /dev/null +++ b/cybrosys_support_client/static/description/index.html @@ -0,0 +1,949 @@ + + + + + + + + + Document + + + + + + + +
+
+
+ Community +
+
+ Enterprise +
+ +
+
+ +
+ +
+
+

+ Odoo Support Request +

+

+ This Module Helps To Create Odoo Support Request To Cybrosys

+
+
+

+ Create odoo suppport request to cybrosys +

+
+ +
+ +
+ + + +
+
+ +
+ + + +
+
+

+ KEY HIGHLIGHTS +

+
+
+
+
+ +
+
+

+ Create Support Request Easily

+

+ Create support request easily from systray.

+
+
+
+
+
+
+ +
+
+

+ Support Through WhatsApp

+

+ Send your request through WhatsApp

+
+
+
+
+
+
+ + + +
+
+ +
+

+ Overview + + +

+

+ ODOO SUPPORT REQUEST

+
+ +
+
+ This module facilitates the creation of support requests to + Cybrosys directly from the system tray. It also allows for + support requests via WhatsApp by providing the necessary + details and attaching supporting documents. +
+
+
+
+ + +
+ + + +
+
+ +
+ +
+ +
+
+
+
+

+ Screenshots + + +

+

+ Odoo Support Request.

+
+ +
+

+ Install Odoo Support Request +

+
+ +
+
+
+

+ Open Support Form +

+

+ Clicking the icon in the systray opens a wizard.

+
+ +
+
+ +
+
+
+

+ Submit Support Request +

+

+ In the wizard, you can enter your name, email, and a detailed description + of the problem. You can also attach a file related to the problem + and specify whether the support needed is functional or technical. + By clicking the submit button, a message will be displayed indicating + whether the submission was successful.

+
+ +
+
+
+

+ If the support request is successfully created, + an email will be sent to notify the user about the ticket, + including its reference number. +

+
+ +
+
+
+

+ Submit Support Request Through WhatsApp +

+

+ Fill out the form and click "WhatsApp" to be redirected for sending messages.

+
+ +
+
+ +
+
+ +
+
+ +
+
+
+

+

+
+

+ FEATURES + + +

+

+ Comprehensive Features of ODOO SUPPORT REQUEST +

+
+
+
+
+
+
+ + + +
+ Easily Create Support Request +
+
+
+
+
+
+
+
+
+ + + +
+ Supports Request Through WhatsApp
+
+
+
+
+ +
+
+
+
+ + + +
+ Notify User On Success And + Failure Of Support Request Generation +
+
+
+
+
+ +
+
+
+
+ +
+ +
+
+

+ FAQ + +

+
+
+
+
+ + + +
+
+

+ When creating the support request, we can specify whether it pertains to technical or functional issues. +

+
+
+ + + +
+
+

+ When completing the support request form, you can select multiple files by clicking on the 'Attachments' button. +

+
+
+ +
+
+
+
+
+
+
+
+

+ RELEASE NOTES + + +

+
+
+
+
+
+

Version 17.0.1 I Released + on : 13th June 2024 +

+

Initial commit for cybrosys_support_client

+
+
+
+
+
+ + +
+ +
+
+ + + + +
+
+
+

Related Modules

+

Explore our related modules

+
+
+
+ +
+
+ +
+ +
+ +
+
+ +
+

+ Our Services +

+
+ +
+
+
+
+ +
+
+ Odoo + Customization
+
+
+
+ +
+
+ Odoo + Implementation
+
+
+
+ +
+
+ Odoo + Support
+
+
+
+ +
+
+ Hire + Odoo + Developer
+
+
+
+ +
+
+ Odoo + Integration
+
+
+
+ +
+
+ Odoo + Migration
+
+
+
+ +
+
+ Odoo + Consultancy
+
+
+
+ +
+
+ Odoo + Implementation
+
+
+
+ +
+
+ Odoo + Licensing Consultancy
+
+
+
+ + +
+ + +
+
+
+

Our Industries

+
+
+
+
+ +
+ Trading +
+

+ Easily procure + and + sell your products

+
+
+
+
+ +
+ POS +
+

+ Easy + configuration + and convivial experience

+
+
+
+
+ +
+ Education +
+

+ A platform for + educational management

+
+
+
+
+ +
+ Manufacturing +
+

+ Plan, track and + schedule your operations

+
+
+
+
+ +
+ E-commerce & Website +
+

+ Mobile + friendly, + awe-inspiring product pages

+
+
+
+
+ +
+ Service Management +
+

+ Keep track of + services and invoice

+
+
+
+
+ +
+ Restaurant +
+

+ Run your bar or + restaurant methodically

+
+
+
+
+ +
+ Hotel Management +
+

+ An + all-inclusive + hotel management application

+
+
+
+
+ + + + +
+
+
+

Support

+

Need help? Get in touch. +

+
+
+
+
+
+ +
+
+

Need Help?

+

Got questions or need help? + Get + in touch.

+ +

+ odoo@cybrosys.com

+
+
+
+
+
+
+
+ +
+
+

WhatsApp

+

Say hi to us on + WhatsApp!

+ +

+91 + 86068 + 27707

+
+
+
+
+ + +
+
+
+ +
+
+

Skype

+

Say hi to us on Skype!

+ +

cybroopenerp +

+
+
+
+
+ + +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ + + + + + + \ No newline at end of file diff --git a/cybrosys_support_client/static/src/css/client_support.css b/cybrosys_support_client/static/src/css/client_support.css new file mode 100644 index 000000000..210aebd63 --- /dev/null +++ b/cybrosys_support_client/static/src/css/client_support.css @@ -0,0 +1,7 @@ +.support-icon { + cursor: pointer; + position: absolute; + margin-left: -3rem; + top: 0%; + color: #FF9500; +} diff --git a/cybrosys_support_client/static/src/js/systray_icons.js b/cybrosys_support_client/static/src/js/systray_icons.js new file mode 100644 index 000000000..56dfbefdd --- /dev/null +++ b/cybrosys_support_client/static/src/js/systray_icons.js @@ -0,0 +1,25 @@ +/** @odoo-module **/ +import { registry } from "@web/core/registry"; +import { useService } from "@web/core/utils/hooks"; +import { Component } from "@odoo/owl"; + +export class ClientSupportSystray extends Component { + /* Extending component and creating class ClientSupportSystray */ + setup() { + this.action = useService("action"); + } + async openSupport(){ + /* Function for opening support wizard */ + this.action.doAction({ + name: 'Support Form', + type: 'ir.actions.act_window', + res_model: 'client.support', + view_mode: 'form', + views: [[false, 'form']], + target: "new", + }) + } +} +ClientSupportSystray.template = "ClientSupportSystray"; +export const systrayItem = { Component: ClientSupportSystray}; +registry.category("systray").add("ClientSupportSystray", systrayItem); diff --git a/cybrosys_support_client/static/src/xml/systray_icon.xml b/cybrosys_support_client/static/src/xml/systray_icon.xml new file mode 100644 index 000000000..36f13ace8 --- /dev/null +++ b/cybrosys_support_client/static/src/xml/systray_icon.xml @@ -0,0 +1,11 @@ + + diff --git a/cybrosys_support_client/wizard/__init__.py b/cybrosys_support_client/wizard/__init__.py new file mode 100644 index 000000000..6e38419ea --- /dev/null +++ b/cybrosys_support_client/wizard/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################## +from . import client_support diff --git a/cybrosys_support_client/wizard/client_support.py b/cybrosys_support_client/wizard/client_support.py new file mode 100644 index 000000000..dafccb695 --- /dev/null +++ b/cybrosys_support_client/wizard/client_support.py @@ -0,0 +1,93 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################## +import base64 +import requests +from odoo import fields, models +from odoo.exceptions import ValidationError + + +class ClientSupport(models.TransientModel): + _name = 'client.support' + _description = 'Client Support' + + name = fields.Char(string='Name', required='True', help='Enter name') + email = fields.Char(string='Email', required='True', + help='Enter your Email') + description = fields.Text(string='Description', required='True', + help='Specify your problem in detail.') + attachment_ids = fields.Many2many('ir.attachment', string='Attachments', + help='Attach files related to your problem.') + support_type = fields.Selection([ + ('functional', 'Functional Support'), + ('technical', 'Technical Support'), ], string="Support Type", + required='True', default="technical", help='Select support type') + + def confirm_button(self): + """ Function for submitting the ticket """ + headers = {'Content-type': 'application/json'} + response = requests.post( + url='https://support.cybrosys.com/help/request', + json={ + 'params': { + 'customer_name': self.name, + 'email': self.email, + 'description': self.description, + 'support_type': self.support_type, + 'attachments': [ + { + 'data': base64.b64encode(rec.datas).decode('utf-8'), + 'name': rec.name + } for rec in self.attachment_ids + ], + } + }, + headers=headers) + response_status = response.json() + if response_status['result']['message'] == 'success': + return { + 'effect': { + 'fadeout': 'slow', + 'message': 'Ticket Created Successfully', + 'type': 'rainbow_man', + 'target': 'new', + } + } + else: + raise ValidationError( + "The ticket submission did not go through. Please try again.") + + def whatsapp_button(self): + """ Function for getting support through Whatsapp""" + if self.description and self.name: + message_string = '' + message = self.description.split(' ') + for msg in message: + message_string = message_string + msg + '%20' + message_string = message_string[:(len(message_string) - 3)] + phone_number = str(+918606827707) + return { + 'type': 'ir.actions.act_url', + 'url': "https://wa.me/" + phone_number + "?text=" + message_string, + 'target': 'new', + 'res_id': self.id, + 'tag': 'reload', + } diff --git a/cybrosys_support_client/wizard/client_support_views.xml b/cybrosys_support_client/wizard/client_support_views.xml new file mode 100644 index 000000000..5e24b7227 --- /dev/null +++ b/cybrosys_support_client/wizard/client_support_views.xml @@ -0,0 +1,28 @@ + + + + + client.support.view.form + client.support + +
+ + + + + + + +
+ + +
+ +
+
+