diff --git a/odoo_screen_recording/README.rst b/odoo_screen_recording/README.rst new file mode 100644 index 000000000..8b897c1f9 --- /dev/null +++ b/odoo_screen_recording/README.rst @@ -0,0 +1,48 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Odoo Screen Recording +===================== +* Odoo Screen Recording to record and store your screen time. + +Configuration +============= +No additional Configuration + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +General Public License, Version 3 (AGPL v3). +(https://www.odoo.com/documentation/16.0/legal/licenses.html) + +Credits +------- +* Developer: +(V16) Megha AP +(V17) Anjhana A K +Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://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/odoo_screen_recording/__init__.py b/odoo_screen_recording/__init__.py new file mode 100644 index 000000000..359cef697 --- /dev/null +++ b/odoo_screen_recording/__init__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author:Anjhana A K() +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import models diff --git a/odoo_screen_recording/__manifest__.py b/odoo_screen_recording/__manifest__.py new file mode 100644 index 000000000..7fb63d104 --- /dev/null +++ b/odoo_screen_recording/__manifest__.py @@ -0,0 +1,53 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author:Anjhana A K() +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': "Odoo Screen Recording", + 'version': '17.0.1.0.0', + 'category': "Extra Tools", + 'summary': """Record your screen any time and store it for further use + in odoo""", + 'description': 'Screen recording in Odoo helps to record multiple screen ' + 'at a time to store or monitor the screen activities', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'images': [ + 'static/description/banner.jpg' + ], + 'depends': ['base'], + 'data': [ + 'security/ir.model.access.csv', + 'views/video_store_views.xml' + ], + 'assets': { + 'web.assets_backend': [ + '/odoo_screen_recording/static/src/js/button_systray.js', + '/odoo_screen_recording/static/src/xml/button_systray.xml', + '/odoo_screen_recording/static/src/js/video_preview_widget.js', + '/odoo_screen_recording/static/src/xml/video_preview_widget.xml', + ] + }, + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/odoo_screen_recording/doc/RELEASE_NOTES.md b/odoo_screen_recording/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..a7ff9af3e --- /dev/null +++ b/odoo_screen_recording/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 18.01.2024 +#### Version 17.0.1.0.0 +#### ADD +- Initial commit for Odoo Screen Recording diff --git a/odoo_screen_recording/models/__init__.py b/odoo_screen_recording/models/__init__.py new file mode 100644 index 000000000..38d82617e --- /dev/null +++ b/odoo_screen_recording/models/__init__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author:Anjhana A K() +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import video_store diff --git a/odoo_screen_recording/models/video_store.py b/odoo_screen_recording/models/video_store.py new file mode 100644 index 000000000..0532bb8b0 --- /dev/null +++ b/odoo_screen_recording/models/video_store.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author:Anjhana A K() +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import api, fields, models + + +class VideoStore(models.Model): + """In this model you can store recoded data as a record and view it + later""" + _name = 'video.store' + _description = 'Screen record video storage' + _rec_name = 'date' + + date = fields.Datetime(string='Date', default=fields.Datetime.now, + help="Date of screen capture") + description = fields.Char(string='Description', + help='Add description for recording') + video = fields.Char(string='Screen Record', + help="Recorded videos can be view here") + + @api.model + def video_record(self, url): + """function used to create a record when the screen record is + stopped""" + self.create({'description': '', 'video': url}) + return True diff --git a/odoo_screen_recording/security/ir.model.access.csv b/odoo_screen_recording/security/ir.model.access.csv new file mode 100644 index 000000000..8d0d9bfe1 --- /dev/null +++ b/odoo_screen_recording/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_model_video_store,video_store,model_video_store,base.group_user,1,1,1,1 diff --git a/odoo_screen_recording/static/description/assets/icons/check.png b/odoo_screen_recording/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/odoo_screen_recording/static/description/assets/icons/check.png differ diff --git a/odoo_screen_recording/static/description/assets/icons/chevron.png b/odoo_screen_recording/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/odoo_screen_recording/static/description/assets/icons/chevron.png differ diff --git a/odoo_screen_recording/static/description/assets/icons/cogs.png b/odoo_screen_recording/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/odoo_screen_recording/static/description/assets/icons/cogs.png differ diff --git a/odoo_screen_recording/static/description/assets/icons/consultation.png b/odoo_screen_recording/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/odoo_screen_recording/static/description/assets/icons/consultation.png differ diff --git a/odoo_screen_recording/static/description/assets/icons/ecom-black.png b/odoo_screen_recording/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/odoo_screen_recording/static/description/assets/icons/ecom-black.png differ diff --git a/odoo_screen_recording/static/description/assets/icons/education-black.png b/odoo_screen_recording/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/odoo_screen_recording/static/description/assets/icons/education-black.png differ diff --git a/odoo_screen_recording/static/description/assets/icons/hotel-black.png b/odoo_screen_recording/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/odoo_screen_recording/static/description/assets/icons/hotel-black.png differ diff --git a/odoo_screen_recording/static/description/assets/icons/license.png b/odoo_screen_recording/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/odoo_screen_recording/static/description/assets/icons/license.png differ diff --git a/odoo_screen_recording/static/description/assets/icons/lifebuoy.png b/odoo_screen_recording/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/odoo_screen_recording/static/description/assets/icons/lifebuoy.png differ diff --git a/odoo_screen_recording/static/description/assets/icons/manufacturing-black.png b/odoo_screen_recording/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/odoo_screen_recording/static/description/assets/icons/manufacturing-black.png differ diff --git a/odoo_screen_recording/static/description/assets/icons/pos-black.png b/odoo_screen_recording/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/odoo_screen_recording/static/description/assets/icons/pos-black.png differ diff --git a/odoo_screen_recording/static/description/assets/icons/puzzle.png b/odoo_screen_recording/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/odoo_screen_recording/static/description/assets/icons/puzzle.png differ diff --git a/odoo_screen_recording/static/description/assets/icons/restaurant-black.png b/odoo_screen_recording/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/odoo_screen_recording/static/description/assets/icons/restaurant-black.png differ diff --git a/odoo_screen_recording/static/description/assets/icons/service-black.png b/odoo_screen_recording/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/odoo_screen_recording/static/description/assets/icons/service-black.png differ diff --git a/odoo_screen_recording/static/description/assets/icons/trading-black.png b/odoo_screen_recording/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/odoo_screen_recording/static/description/assets/icons/trading-black.png differ diff --git a/odoo_screen_recording/static/description/assets/icons/training.png b/odoo_screen_recording/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/odoo_screen_recording/static/description/assets/icons/training.png differ diff --git a/odoo_screen_recording/static/description/assets/icons/update.png b/odoo_screen_recording/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/odoo_screen_recording/static/description/assets/icons/update.png differ diff --git a/odoo_screen_recording/static/description/assets/icons/user.png b/odoo_screen_recording/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/odoo_screen_recording/static/description/assets/icons/user.png differ diff --git a/odoo_screen_recording/static/description/assets/icons/wrench.png b/odoo_screen_recording/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/odoo_screen_recording/static/description/assets/icons/wrench.png differ diff --git a/odoo_screen_recording/static/description/assets/misc/Cybrosys R.png b/odoo_screen_recording/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/odoo_screen_recording/static/description/assets/misc/Cybrosys R.png differ diff --git a/odoo_screen_recording/static/description/assets/misc/categories.png b/odoo_screen_recording/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/odoo_screen_recording/static/description/assets/misc/categories.png differ diff --git a/odoo_screen_recording/static/description/assets/misc/check-box.png b/odoo_screen_recording/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/odoo_screen_recording/static/description/assets/misc/check-box.png differ diff --git a/odoo_screen_recording/static/description/assets/misc/compass.png b/odoo_screen_recording/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/odoo_screen_recording/static/description/assets/misc/compass.png differ diff --git a/odoo_screen_recording/static/description/assets/misc/corporate.png b/odoo_screen_recording/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/odoo_screen_recording/static/description/assets/misc/corporate.png differ diff --git a/odoo_screen_recording/static/description/assets/misc/customer-support.png b/odoo_screen_recording/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/odoo_screen_recording/static/description/assets/misc/customer-support.png differ diff --git a/odoo_screen_recording/static/description/assets/misc/cybrosys-logo.png b/odoo_screen_recording/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/odoo_screen_recording/static/description/assets/misc/cybrosys-logo.png differ diff --git a/odoo_screen_recording/static/description/assets/misc/email.svg b/odoo_screen_recording/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/odoo_screen_recording/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo_screen_recording/static/description/assets/misc/features.png b/odoo_screen_recording/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/odoo_screen_recording/static/description/assets/misc/features.png differ diff --git a/odoo_screen_recording/static/description/assets/misc/logo.png b/odoo_screen_recording/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/odoo_screen_recording/static/description/assets/misc/logo.png differ diff --git a/odoo_screen_recording/static/description/assets/misc/phone.svg b/odoo_screen_recording/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/odoo_screen_recording/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo_screen_recording/static/description/assets/misc/pictures.png b/odoo_screen_recording/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/odoo_screen_recording/static/description/assets/misc/pictures.png differ diff --git a/odoo_screen_recording/static/description/assets/misc/pie-chart.png b/odoo_screen_recording/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/odoo_screen_recording/static/description/assets/misc/pie-chart.png differ diff --git a/odoo_screen_recording/static/description/assets/misc/right-arrow.png b/odoo_screen_recording/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/odoo_screen_recording/static/description/assets/misc/right-arrow.png differ diff --git a/odoo_screen_recording/static/description/assets/misc/star (1) 2.svg b/odoo_screen_recording/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/odoo_screen_recording/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/odoo_screen_recording/static/description/assets/misc/star.png b/odoo_screen_recording/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/odoo_screen_recording/static/description/assets/misc/star.png differ diff --git a/odoo_screen_recording/static/description/assets/misc/support (1) 1.svg b/odoo_screen_recording/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/odoo_screen_recording/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/odoo_screen_recording/static/description/assets/misc/support-email.svg b/odoo_screen_recording/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/odoo_screen_recording/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/odoo_screen_recording/static/description/assets/misc/support.png b/odoo_screen_recording/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/odoo_screen_recording/static/description/assets/misc/support.png differ diff --git a/odoo_screen_recording/static/description/assets/misc/tick-mark.svg b/odoo_screen_recording/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/odoo_screen_recording/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/odoo_screen_recording/static/description/assets/misc/whatsapp 1.svg b/odoo_screen_recording/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/odoo_screen_recording/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/odoo_screen_recording/static/description/assets/misc/whatsapp.png b/odoo_screen_recording/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/odoo_screen_recording/static/description/assets/misc/whatsapp.png differ diff --git a/odoo_screen_recording/static/description/assets/misc/whatsapp.svg b/odoo_screen_recording/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/odoo_screen_recording/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo_screen_recording/static/description/assets/modules/1.png b/odoo_screen_recording/static/description/assets/modules/1.png new file mode 100644 index 000000000..ba1058c42 Binary files /dev/null and b/odoo_screen_recording/static/description/assets/modules/1.png differ diff --git a/odoo_screen_recording/static/description/assets/modules/2.png b/odoo_screen_recording/static/description/assets/modules/2.png new file mode 100644 index 000000000..6949185dd Binary files /dev/null and b/odoo_screen_recording/static/description/assets/modules/2.png differ diff --git a/odoo_screen_recording/static/description/assets/modules/3.png b/odoo_screen_recording/static/description/assets/modules/3.png new file mode 100644 index 000000000..4e506f79b Binary files /dev/null and b/odoo_screen_recording/static/description/assets/modules/3.png differ diff --git a/odoo_screen_recording/static/description/assets/modules/4.png b/odoo_screen_recording/static/description/assets/modules/4.png new file mode 100644 index 000000000..e78427938 Binary files /dev/null and b/odoo_screen_recording/static/description/assets/modules/4.png differ diff --git a/odoo_screen_recording/static/description/assets/modules/5.png b/odoo_screen_recording/static/description/assets/modules/5.png new file mode 100755 index 000000000..272ec20f9 Binary files /dev/null and b/odoo_screen_recording/static/description/assets/modules/5.png differ diff --git a/odoo_screen_recording/static/description/assets/modules/6.png b/odoo_screen_recording/static/description/assets/modules/6.png new file mode 100644 index 000000000..7d5c3154f Binary files /dev/null and b/odoo_screen_recording/static/description/assets/modules/6.png differ diff --git a/odoo_screen_recording/static/description/assets/modules/index.html b/odoo_screen_recording/static/description/assets/modules/index.html new file mode 100644 index 000000000..aabca0a67 --- /dev/null +++ b/odoo_screen_recording/static/description/assets/modules/index.html @@ -0,0 +1,530 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ + + +

Print Work Order Details

+

A Module for generating PDF report of Work order

+ + + +
+ + +
+
+ +
+

Explore This + Module

+
+ + + + +
+
+ +
+

Overview +

+
+
+
+ Generate a PDF report with all necessary details of a Work Order. It can be used for the internal purposes of the plant/work center. +
+
+ + + +
+
+ +
+

Features +

+
+
+
+
+ + Community + & Enterprise Support + + Available in Odoo 15.0 Community and Enterprise. +
+
+ + Work order print. + + Generate PDF Report of Work Order +
+
+
+ + + +
+
+ +
+

Screenshots +

+
+
+
+ +
+

Manufacturing Order

+

Manufacturing + Order with Bill Of Materials.

+ +
+ +
+

Work Order

+

Print Work Order Details.

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

Related + Products +

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

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?

+

Got questions or need help? Get in touch.

+ +

+ odoo@cybrosys.com

+
+
+
+
+
+
+
+ +
+
+

WhatsApp

+

Say hi to us on WhatsApp!

+ +

+91 86068 + 27707

+
+
+
+
+
+
+
+ +
+
+
+ \ No newline at end of file diff --git a/odoo_screen_recording/static/description/assets/modules/l2.png b/odoo_screen_recording/static/description/assets/modules/l2.png new file mode 100644 index 000000000..f40a0756d Binary files /dev/null and b/odoo_screen_recording/static/description/assets/modules/l2.png differ diff --git a/odoo_screen_recording/static/description/assets/modules/l3.png b/odoo_screen_recording/static/description/assets/modules/l3.png new file mode 100644 index 000000000..5738a486e Binary files /dev/null and b/odoo_screen_recording/static/description/assets/modules/l3.png differ diff --git a/odoo_screen_recording/static/description/assets/modules/l4.png b/odoo_screen_recording/static/description/assets/modules/l4.png new file mode 100644 index 000000000..8d99e8c68 Binary files /dev/null and b/odoo_screen_recording/static/description/assets/modules/l4.png differ diff --git a/odoo_screen_recording/static/description/assets/modules/l5.png b/odoo_screen_recording/static/description/assets/modules/l5.png new file mode 100644 index 000000000..3415917c2 Binary files /dev/null and b/odoo_screen_recording/static/description/assets/modules/l5.png differ diff --git a/odoo_screen_recording/static/description/assets/modules/l6.png b/odoo_screen_recording/static/description/assets/modules/l6.png new file mode 100644 index 000000000..c7ea331ee Binary files /dev/null and b/odoo_screen_recording/static/description/assets/modules/l6.png differ diff --git a/odoo_screen_recording/static/description/assets/screenshots/hero.gif b/odoo_screen_recording/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..a0849a486 Binary files /dev/null and b/odoo_screen_recording/static/description/assets/screenshots/hero.gif differ diff --git a/odoo_screen_recording/static/description/assets/screenshots/screenshot1.png b/odoo_screen_recording/static/description/assets/screenshots/screenshot1.png new file mode 100644 index 000000000..dafcba2e1 Binary files /dev/null and b/odoo_screen_recording/static/description/assets/screenshots/screenshot1.png differ diff --git a/odoo_screen_recording/static/description/assets/screenshots/screenshot2.png b/odoo_screen_recording/static/description/assets/screenshots/screenshot2.png new file mode 100644 index 000000000..9cb3d23c7 Binary files /dev/null and b/odoo_screen_recording/static/description/assets/screenshots/screenshot2.png differ diff --git a/odoo_screen_recording/static/description/assets/screenshots/screenshot3.png b/odoo_screen_recording/static/description/assets/screenshots/screenshot3.png new file mode 100644 index 000000000..cc213fd3f Binary files /dev/null and b/odoo_screen_recording/static/description/assets/screenshots/screenshot3.png differ diff --git a/odoo_screen_recording/static/description/assets/screenshots/screenshot4.png b/odoo_screen_recording/static/description/assets/screenshots/screenshot4.png new file mode 100644 index 000000000..05596c9e3 Binary files /dev/null and b/odoo_screen_recording/static/description/assets/screenshots/screenshot4.png differ diff --git a/odoo_screen_recording/static/description/assets/screenshots/screenshot5.png b/odoo_screen_recording/static/description/assets/screenshots/screenshot5.png new file mode 100644 index 000000000..7188aaffc Binary files /dev/null and b/odoo_screen_recording/static/description/assets/screenshots/screenshot5.png differ diff --git a/odoo_screen_recording/static/description/assets/screenshots/screenshot6.png b/odoo_screen_recording/static/description/assets/screenshots/screenshot6.png new file mode 100644 index 000000000..1ea9c804c Binary files /dev/null and b/odoo_screen_recording/static/description/assets/screenshots/screenshot6.png differ diff --git a/odoo_screen_recording/static/description/assets/screenshots/screenshot7.png b/odoo_screen_recording/static/description/assets/screenshots/screenshot7.png new file mode 100644 index 000000000..7e71c5fc4 Binary files /dev/null and b/odoo_screen_recording/static/description/assets/screenshots/screenshot7.png differ diff --git a/odoo_screen_recording/static/description/assets/screenshots/screenshot8.png b/odoo_screen_recording/static/description/assets/screenshots/screenshot8.png new file mode 100644 index 000000000..49b3f2dc3 Binary files /dev/null and b/odoo_screen_recording/static/description/assets/screenshots/screenshot8.png differ diff --git a/odoo_screen_recording/static/description/banner.jpg b/odoo_screen_recording/static/description/banner.jpg new file mode 100644 index 000000000..ee186671e Binary files /dev/null and b/odoo_screen_recording/static/description/banner.jpg differ diff --git a/odoo_screen_recording/static/description/icon.png b/odoo_screen_recording/static/description/icon.png new file mode 100644 index 000000000..54bfb1abf Binary files /dev/null and b/odoo_screen_recording/static/description/icon.png differ diff --git a/odoo_screen_recording/static/description/index.html b/odoo_screen_recording/static/description/index.html new file mode 100644 index 000000000..265f4ecaf --- /dev/null +++ b/odoo_screen_recording/static/description/index.html @@ -0,0 +1,591 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Odoo Screen Recording

+

+ Record your screen with odoo and store it for future +

+
+ +
+
+
+
+
+

Key Highlights +

+
+
+
+
+
+ +
+
+

Record your screen

+

This application allows to record your screen and store and view recorded video. +

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

+ You can see a white camera icon for record your screen

+
+
+
+
+
+
+ +
+
+

After clicking camera icon there is a popup showing options for share your screen, here you can see option to select tabs

+
+
+
+
+
+
+ +
+
+

Here you can see options to choose corresponding window

+
+
+
+
+
+
+ +
+
+

you can choose entire screen also. By clicking share button you can start recording.

+
+
+
+
+
+
+ +
+
+

You can view the black camera icon changes to green when its started recording, you can stop recording by clicking stop sharing,

+
+
+
+
+
+
+ +
+
+

In "Screen Capture" module you can view all the recorded videos,

+
+
+
+
+
+
+ +
+
+

You can see the corresponding date, time and video in the form view. You can also add description if needed.Also, you can play the video too,

+
+
+
+
+
+
+ +
+
+

You can record multiple screens at a time using this app, that is while recording entire screen you can record a single tab or single window according to your need by clicking camera icon.

+
+
+
+
+
+
+
    +
  • + Allows to record your entire screen, window or chrome tabs
  • +
  • Can record multiple screens at a time
  • +
  • Can store the recordings in odoo
  • +
  • Able to view and play recorded video in odoo itself
  • + +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:18th January 2024 +
+

+ + Initial Commit for Odoo Screen Rcording.

+
+
+
+
+
+
+
+

Related Products

+
+
+ +
+
+

Our Services

+ +
+
+
+
+
+
+
+
+ service-icon +
+
+

Odoo Customization

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Support

+
+
+
+
+
+
+ service-icon +
+
+

Hire Odoo Developer

+
+
+
+
+ +
+
+ service-icon +
+
+

Odoo Integration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Migration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Consultancy

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Implementation

+
+
+
+
+
+
+ service-icon +
+
+

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? +

Got questions or need help? Get in touch.

+
odoo@cybrosys.com +
+
+
+
+
+
+
+
+ +
+ WhatsApp +

Say hi to us on WhatsApp!

+
+91 + 99456767686
+
+
+
+
+
+
+
+
+ + + + + + diff --git a/odoo_screen_recording/static/src/js/button_systray.js b/odoo_screen_recording/static/src/js/button_systray.js new file mode 100644 index 000000000..4cb628cf4 --- /dev/null +++ b/odoo_screen_recording/static/src/js/button_systray.js @@ -0,0 +1,61 @@ +/** @odoo-module **/ +import { useState, Component, useRef } from "@odoo/owl"; +import { registry } from "@web/core/registry"; +import { jsonrpc } from "@web/core/network/rpc_service"; +//Video button systray +class VideoButton extends Component { + static template = "odoo_screen_recording.ScreenCaptureSystray"; + setup() { + super.setup() + this.icon = useRef('record') + } + async _onClick() { + var icon = this.icon; + try { + let stream = await navigator.mediaDevices.getDisplayMedia({ + video: true, + }); + icon.el.style.color = "#28a745"; + const mime = MediaRecorder.isTypeSupported("video/webm; codecs=vp9") + ? "video/webm; codecs=vp9" + : "video/webm"; + let mediaRecorder = new MediaRecorder(stream, { + mimeType: mime, + }); + let chunks = []; + mediaRecorder.addEventListener("dataavailable", function (e) { + chunks.push(e.data); + }); + mediaRecorder.addEventListener("stop", async function () { + icon.el.style.color = "black"; + let blob = new Blob(chunks, { + type: chunks[0].type, + }); + const blobToBase64 = (blob) => { + const reader = new FileReader(); + reader.readAsDataURL(blob); + return new Promise((resolve) => { + reader.onloadend = () => { + resolve(reader.result); + }; + }); + }; + const res = await blobToBase64(blob); + const response = await jsonrpc('/web/dataset/call_kw', { + model: 'video.store', + method: 'video_record', + args: [res], + kwargs: {}, // Add any keyword arguments if required + }); + }); + mediaRecorder.start(); + } catch (e) { + console.error("Error:", e); + } + } +} +VideoButton.props = {}; +export const systrayItem = { + Component: VideoButton, +}; +registry.category("systray").add("odoo_screen_recording.video_widget", systrayItem); diff --git a/odoo_screen_recording/static/src/js/video_preview_widget.js b/odoo_screen_recording/static/src/js/video_preview_widget.js new file mode 100644 index 000000000..cea4a1517 --- /dev/null +++ b/odoo_screen_recording/static/src/js/video_preview_widget.js @@ -0,0 +1,21 @@ +/** @odoo-module **/ +import { registry } from "@web/core/registry"; +import { Component, onMounted , useState} from "@odoo/owl"; +//video widget +class videoWidget extends Component { + static template = 'VideoWidget' + setup() { + onMounted(this.mount); + super.setup(); + this.state = useState({ + value:false + }); + } + mount() { + $('source').attr('src', this.props.record.data[this.props.name]); + } +} +export const VideoWidget = { + component: videoWidget +} +registry.category("fields").add("videoWidget", VideoWidget); diff --git a/odoo_screen_recording/static/src/xml/button_systray.xml b/odoo_screen_recording/static/src/xml/button_systray.xml new file mode 100644 index 000000000..9f94b2061 --- /dev/null +++ b/odoo_screen_recording/static/src/xml/button_systray.xml @@ -0,0 +1,11 @@ + + + + +
+ +
+
+
diff --git a/odoo_screen_recording/static/src/xml/video_preview_widget.xml b/odoo_screen_recording/static/src/xml/video_preview_widget.xml new file mode 100644 index 000000000..365576c38 --- /dev/null +++ b/odoo_screen_recording/static/src/xml/video_preview_widget.xml @@ -0,0 +1,11 @@ + + + + +
+ +
+
+
diff --git a/odoo_screen_recording/views/video_store_views.xml b/odoo_screen_recording/views/video_store_views.xml new file mode 100644 index 000000000..2424120cb --- /dev/null +++ b/odoo_screen_recording/views/video_store_views.xml @@ -0,0 +1,46 @@ + + + + + video.store.view.tree + video.store + + + + + + + + + video.store.view.form + video.store + +
+ + + + + + + + + + + +
+
+
+ + Screen Capture + video.store + tree,kanban,form + +

+ Record your screen +

+
+
+ +