diff --git a/login_info/README.rst b/login_info/README.rst new file mode 100644 index 000000000..d779cdd58 --- /dev/null +++ b/login_info/README.rst @@ -0,0 +1,46 @@ +.. image:: https://img.shields.io/badge/licence-LGPL--3-green.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: lGPL-3 + +Login User Info Using Camera +============================ +* User login information for Odoo 16 community editions + +Installation +============ + - www.odoo.com/documentation/15.0/setup/install.html + - Install our custom addon + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + + +Credits +------- +* Developer: (V16) Vishnu kp, Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@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/login_info/__init__.py b/login_info/__init__.py new file mode 100644 index 000000000..c0e083f0d --- /dev/null +++ b/login_info/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Vishnu KP () +# +# 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 controller +from . import models diff --git a/login_info/__manifest__.py b/login_info/__manifest__.py new file mode 100644 index 000000000..0f71fa230 --- /dev/null +++ b/login_info/__manifest__.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Vishnu KP () +# +# 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': 'Login User Info Using Camera', + 'version': '16.0.1.0.0', + 'summary': 'Login user information including images date and time will ' + 'collect the module using system camera', + 'description': 'System capture images of the user when they trying to login' + ' and save into for the future usage' + 'it will include information of log in date and time', + 'category': 'Extra Tools', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['account'], + 'data': [ + 'security/ir.model.access.csv', + 'views/user_log_views.xml' + ], + 'external_dependencies': { + 'python': ['cv2'] + }, + 'license': 'LGPL-3', + 'images': ['static/description/banner.jpg'], + 'installable': True, + 'auto_install': False, + 'application': True +} diff --git a/login_info/controller/__init__.py b/login_info/controller/__init__.py new file mode 100644 index 000000000..34f789897 --- /dev/null +++ b/login_info/controller/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Vishnu KP () +# +# 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 login_info diff --git a/login_info/controller/login_info.py b/login_info/controller/login_info.py new file mode 100644 index 000000000..c32bced3e --- /dev/null +++ b/login_info/controller/login_info.py @@ -0,0 +1,65 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Vishnu KP () +# +# 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 cv2 +import os +from odoo.addons.web.controllers.home import Home +from odoo import http +from odoo.http import request + + +class ImageController(Home): + + def image_capture(self): + # Function to take image when user login + video = cv2.VideoCapture(0) + while True: + ret, frames = video.read() + cv2.imwrite('/tmp/img_name.jpg', frames) + # The above variable is used to save the image file + with open("/tmp/img_name.jpg", "rb") as img_file: + b64_string = base64.b64encode(img_file.read()) + if not request.params['login_success']: + request.env['user.log'].sudo().create( + {'image': b64_string, + 'secure': True}) + else: + request.env['user.log'].sudo().create( + {'user_id': request.env.user.id, + 'image': b64_string}) + os.remove('/tmp/img_name.jpg') + video.release() + cv2.destroyAllWindows() + break + + @http.route() + def web_login(self, redirect=None, **kw): + """Used to log in the user and here is the function for store the + logged user record""" + res = super().web_login() + if (request.httprequest.method == 'POST' + and request.params['login_success']): + self.image_capture() + if (request.httprequest.method == 'POST' + and not request.params['login_success']): + self.image_capture() + return res diff --git a/login_info/doc/RELEASE_NOTES.md b/login_info/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..393eb892d --- /dev/null +++ b/login_info/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 03.01.2024 +#### Version 16.0.1.0.0 +##### ADD + +- Initial Commit for Login User Info Using Camera diff --git a/login_info/models/__init__.py b/login_info/models/__init__.py new file mode 100644 index 000000000..02fd98d0d --- /dev/null +++ b/login_info/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Vishnu KP () +# +# 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 user_log diff --git a/login_info/models/user_log.py b/login_info/models/user_log.py new file mode 100644 index 000000000..92e87649a --- /dev/null +++ b/login_info/models/user_log.py @@ -0,0 +1,38 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Vishnu KP () +# +# 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 odoo import models, fields + + +class UserLog(models.Model): + """This model used to create the user login records""" + _name = 'user.log' + _description = 'User Log' + _rec_name = 'user_id' + + user_id = fields.Many2one('res.users', string='User', + help='Logged in user name', + ondelete="cascade", readonly=True) + image = fields.Binary(string='Image', help='Logged user image', + readonly=True) + secure = fields.Boolean(string='Unknown User', default=False, + help='Will show this field if the user enter ' + 'wrong credential') diff --git a/login_info/security/ir.model.access.csv b/login_info/security/ir.model.access.csv new file mode 100644 index 000000000..15aed76a1 --- /dev/null +++ b/login_info/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_user_log_user,access.user.log.user,model_user_log,base.group_user,1,1,1,1 diff --git a/login_info/static/description/assets/icons/check.png b/login_info/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/login_info/static/description/assets/icons/check.png differ diff --git a/login_info/static/description/assets/icons/chevron.png b/login_info/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/login_info/static/description/assets/icons/chevron.png differ diff --git a/login_info/static/description/assets/icons/cogs.png b/login_info/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/login_info/static/description/assets/icons/cogs.png differ diff --git a/login_info/static/description/assets/icons/consultation.png b/login_info/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/login_info/static/description/assets/icons/consultation.png differ diff --git a/login_info/static/description/assets/icons/ecom-black.png b/login_info/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/login_info/static/description/assets/icons/ecom-black.png differ diff --git a/login_info/static/description/assets/icons/education-black.png b/login_info/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/login_info/static/description/assets/icons/education-black.png differ diff --git a/login_info/static/description/assets/icons/hotel-black.png b/login_info/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/login_info/static/description/assets/icons/hotel-black.png differ diff --git a/login_info/static/description/assets/icons/license.png b/login_info/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/login_info/static/description/assets/icons/license.png differ diff --git a/login_info/static/description/assets/icons/lifebuoy.png b/login_info/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/login_info/static/description/assets/icons/lifebuoy.png differ diff --git a/login_info/static/description/assets/icons/manufacturing-black.png b/login_info/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/login_info/static/description/assets/icons/manufacturing-black.png differ diff --git a/login_info/static/description/assets/icons/pos-black.png b/login_info/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/login_info/static/description/assets/icons/pos-black.png differ diff --git a/login_info/static/description/assets/icons/puzzle.png b/login_info/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/login_info/static/description/assets/icons/puzzle.png differ diff --git a/login_info/static/description/assets/icons/restaurant-black.png b/login_info/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/login_info/static/description/assets/icons/restaurant-black.png differ diff --git a/login_info/static/description/assets/icons/service-black.png b/login_info/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/login_info/static/description/assets/icons/service-black.png differ diff --git a/login_info/static/description/assets/icons/trading-black.png b/login_info/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/login_info/static/description/assets/icons/trading-black.png differ diff --git a/login_info/static/description/assets/icons/training.png b/login_info/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/login_info/static/description/assets/icons/training.png differ diff --git a/login_info/static/description/assets/icons/update.png b/login_info/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/login_info/static/description/assets/icons/update.png differ diff --git a/login_info/static/description/assets/icons/user.png b/login_info/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/login_info/static/description/assets/icons/user.png differ diff --git a/login_info/static/description/assets/icons/wrench.png b/login_info/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/login_info/static/description/assets/icons/wrench.png differ diff --git a/login_info/static/description/assets/misc/categories.png b/login_info/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/login_info/static/description/assets/misc/categories.png differ diff --git a/login_info/static/description/assets/misc/check-box.png b/login_info/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/login_info/static/description/assets/misc/check-box.png differ diff --git a/login_info/static/description/assets/misc/compass.png b/login_info/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/login_info/static/description/assets/misc/compass.png differ diff --git a/login_info/static/description/assets/misc/corporate.png b/login_info/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/login_info/static/description/assets/misc/corporate.png differ diff --git a/login_info/static/description/assets/misc/customer-support.png b/login_info/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/login_info/static/description/assets/misc/customer-support.png differ diff --git a/login_info/static/description/assets/misc/cybrosys-logo.png b/login_info/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/login_info/static/description/assets/misc/cybrosys-logo.png differ diff --git a/login_info/static/description/assets/misc/features.png b/login_info/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/login_info/static/description/assets/misc/features.png differ diff --git a/login_info/static/description/assets/misc/logo.png b/login_info/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/login_info/static/description/assets/misc/logo.png differ diff --git a/login_info/static/description/assets/misc/pictures.png b/login_info/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/login_info/static/description/assets/misc/pictures.png differ diff --git a/login_info/static/description/assets/misc/pie-chart.png b/login_info/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/login_info/static/description/assets/misc/pie-chart.png differ diff --git a/login_info/static/description/assets/misc/right-arrow.png b/login_info/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/login_info/static/description/assets/misc/right-arrow.png differ diff --git a/login_info/static/description/assets/misc/star.png b/login_info/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/login_info/static/description/assets/misc/star.png differ diff --git a/login_info/static/description/assets/misc/support.png b/login_info/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/login_info/static/description/assets/misc/support.png differ diff --git a/login_info/static/description/assets/misc/whatsapp.png b/login_info/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/login_info/static/description/assets/misc/whatsapp.png differ diff --git a/login_info/static/description/assets/modules/1.png b/login_info/static/description/assets/modules/1.png new file mode 100644 index 000000000..3415917c2 Binary files /dev/null and b/login_info/static/description/assets/modules/1.png differ diff --git a/login_info/static/description/assets/modules/2.png b/login_info/static/description/assets/modules/2.png new file mode 100644 index 000000000..31ed46762 Binary files /dev/null and b/login_info/static/description/assets/modules/2.png differ diff --git a/login_info/static/description/assets/modules/3.png b/login_info/static/description/assets/modules/3.png new file mode 100644 index 000000000..25ed3e0b6 Binary files /dev/null and b/login_info/static/description/assets/modules/3.png differ diff --git a/login_info/static/description/assets/modules/4.png b/login_info/static/description/assets/modules/4.png new file mode 100644 index 000000000..359d3e4d6 Binary files /dev/null and b/login_info/static/description/assets/modules/4.png differ diff --git a/login_info/static/description/assets/modules/5.png b/login_info/static/description/assets/modules/5.png new file mode 100644 index 000000000..3add135c3 Binary files /dev/null and b/login_info/static/description/assets/modules/5.png differ diff --git a/login_info/static/description/assets/modules/6.png b/login_info/static/description/assets/modules/6.png new file mode 100644 index 000000000..be454ea44 Binary files /dev/null and b/login_info/static/description/assets/modules/6.png differ diff --git a/login_info/static/description/assets/screenshots/entr_sprt.jpg b/login_info/static/description/assets/screenshots/entr_sprt.jpg new file mode 100644 index 000000000..e79b634c1 Binary files /dev/null and b/login_info/static/description/assets/screenshots/entr_sprt.jpg differ diff --git a/login_info/static/description/assets/screenshots/form_view.png b/login_info/static/description/assets/screenshots/form_view.png new file mode 100644 index 000000000..a3e065127 Binary files /dev/null and b/login_info/static/description/assets/screenshots/form_view.png differ diff --git a/login_info/static/description/assets/screenshots/hero.gif b/login_info/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..6aa022165 Binary files /dev/null and b/login_info/static/description/assets/screenshots/hero.gif differ diff --git a/login_info/static/description/assets/screenshots/img2.jpg b/login_info/static/description/assets/screenshots/img2.jpg new file mode 100644 index 000000000..a1bd10724 Binary files /dev/null and b/login_info/static/description/assets/screenshots/img2.jpg differ diff --git a/login_info/static/description/assets/screenshots/list_view.png b/login_info/static/description/assets/screenshots/list_view.png new file mode 100644 index 000000000..7079caf96 Binary files /dev/null and b/login_info/static/description/assets/screenshots/list_view.png differ diff --git a/login_info/static/description/assets/screenshots/wrong_log_in.png b/login_info/static/description/assets/screenshots/wrong_log_in.png new file mode 100644 index 000000000..d72db5117 Binary files /dev/null and b/login_info/static/description/assets/screenshots/wrong_log_in.png differ diff --git a/login_info/static/description/banner.jpg b/login_info/static/description/banner.jpg new file mode 100644 index 000000000..6aa9bb99f Binary files /dev/null and b/login_info/static/description/banner.jpg differ diff --git a/login_info/static/description/cybro_logo.png b/login_info/static/description/cybro_logo.png new file mode 100644 index 000000000..bb309114c Binary files /dev/null and b/login_info/static/description/cybro_logo.png differ diff --git a/login_info/static/description/icon.png b/login_info/static/description/icon.png new file mode 100644 index 000000000..a40d6a879 Binary files /dev/null and b/login_info/static/description/icon.png differ diff --git a/login_info/static/description/index.html b/login_info/static/description/index.html new file mode 100644 index 000000000..130215489 --- /dev/null +++ b/login_info/static/description/index.html @@ -0,0 +1,541 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+
+ + + +

LOGIN USER INFO USING CAMERA

+

Login User Information Using Camera

+ + +
+ + +
+
+ +
+

Explore This + Module

+
+ + + + +
+
+ +
+

Overview +

+
+
+
+ This module allows users to keep records of login user with image attached. + it will keep records of the user if a unknown is trying to log in with wrong + log in credentials. +
+
+ + + +
+
+ +
+

Features +

+
+
+
+
+ + Odoo 16 Community And Enterprise Edition Support +

Login user information in Odoo 16 Community Edition. +

+
+
+ + Login user images + +

Login user with records including images

+
+
+ + For web UI +

This feature only works for web UI and does not work for Odoo App/wpa apps. +

+
+
+
+ + + +
+
+ +
+

Screenshots +

+
+
+
+
+

+ Login

+

+ Login page.

+ +
+
+

+ Enterprise

+

+ Enterprise Support.

+ +
+
+

+ Form View

+

+ Logged-in user Record with Images

+ +
+
+
+ + + +
+
+

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?

+

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/login_info/views/user_log_views.xml b/login_info/views/user_log_views.xml new file mode 100644 index 000000000..d36b72cac --- /dev/null +++ b/login_info/views/user_log_views.xml @@ -0,0 +1,56 @@ + + + + + + User Info + user.log + tree,form + + + + + user.log.view.form + user.log + +
+ + +
+

+ +

+
+
+ + UNKNOWN USER TRIED TO LOG-IN + +
+ + + + + + + +
+
+
+
+ + + user.log.view.tree + user.log + + + + + + + + + + +