diff --git a/user_login_info/README.rst b/user_login_info/README.rst new file mode 100644 index 000000000..71f703301 --- /dev/null +++ b/user_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/16.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: (V17) Rosmy John, 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/user_login_info/__init__.py b/user_login_info/__init__.py new file mode 100644 index 000000000..d4e71841c --- /dev/null +++ b/user_login_info/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Rosmy John () +# +# 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 controllers +from . import models diff --git a/user_login_info/__manifest__.py b/user_login_info/__manifest__.py new file mode 100644 index 000000000..e65b73dea --- /dev/null +++ b/user_login_info/__manifest__.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Rosmy John () +# +# 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": "17.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": ["base"], + "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/user_login_info/controllers/__init__.py b/user_login_info/controllers/__init__.py new file mode 100644 index 000000000..190b702db --- /dev/null +++ b/user_login_info/controllers/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Rosmy John () +# +# 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/user_login_info/controllers/login_info.py b/user_login_info/controllers/login_info.py new file mode 100644 index 000000000..f0a3eba37 --- /dev/null +++ b/user_login_info/controllers/login_info.py @@ -0,0 +1,61 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Rosmy John () +# +# 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.get('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(redirect=redirect, **kw) + if request.httprequest.method == 'POST': + self.image_capture() + return res diff --git a/user_login_info/doc/RELEASE_NOTES.md b/user_login_info/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..e33963baa --- /dev/null +++ b/user_login_info/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 26.07.2024 +#### Version 17.0.1.0.0 +##### ADD + +- Initial Commit for Login User Info Using Camera diff --git a/user_login_info/models/__init__.py b/user_login_info/models/__init__.py new file mode 100644 index 000000000..4bdcbf008 --- /dev/null +++ b/user_login_info/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Rosmy John () +# +# 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/user_login_info/models/user_log.py b/user_login_info/models/user_log.py new file mode 100644 index 000000000..d9e4b57d6 --- /dev/null +++ b/user_login_info/models/user_log.py @@ -0,0 +1,38 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Rosmy John () +# +# 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=False) + secure = fields.Boolean(string='Unknown User', default=False, + help='Will show this field if the user enter ' + 'wrong credential') diff --git a/user_login_info/security/ir.model.access.csv b/user_login_info/security/ir.model.access.csv new file mode 100644 index 000000000..e6e39a10a --- /dev/null +++ b/user_login_info/security/ir.model.access.csv @@ -0,0 +1,3 @@ +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,0,0,0 +access_user_log_user,access.user.log.user,model_user_log,base.group_erp_manager,1,1,1,1 diff --git a/user_login_info/static/description/assets/icons/capture (1).png b/user_login_info/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/user_login_info/static/description/assets/icons/capture (1).png differ diff --git a/user_login_info/static/description/assets/icons/check.png b/user_login_info/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/user_login_info/static/description/assets/icons/check.png differ diff --git a/user_login_info/static/description/assets/icons/chevron.png b/user_login_info/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/user_login_info/static/description/assets/icons/chevron.png differ diff --git a/user_login_info/static/description/assets/icons/cogs.png b/user_login_info/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/user_login_info/static/description/assets/icons/cogs.png differ diff --git a/user_login_info/static/description/assets/icons/consultation.png b/user_login_info/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/user_login_info/static/description/assets/icons/consultation.png differ diff --git a/user_login_info/static/description/assets/icons/ecom-black.png b/user_login_info/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/user_login_info/static/description/assets/icons/ecom-black.png differ diff --git a/user_login_info/static/description/assets/icons/education-black.png b/user_login_info/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/user_login_info/static/description/assets/icons/education-black.png differ diff --git a/user_login_info/static/description/assets/icons/hotel-black.png b/user_login_info/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/user_login_info/static/description/assets/icons/hotel-black.png differ diff --git a/user_login_info/static/description/assets/icons/img.png b/user_login_info/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/user_login_info/static/description/assets/icons/img.png differ diff --git a/user_login_info/static/description/assets/icons/license.png b/user_login_info/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/user_login_info/static/description/assets/icons/license.png differ diff --git a/user_login_info/static/description/assets/icons/lifebuoy.png b/user_login_info/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/user_login_info/static/description/assets/icons/lifebuoy.png differ diff --git a/user_login_info/static/description/assets/icons/manufacturing-black.png b/user_login_info/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/user_login_info/static/description/assets/icons/manufacturing-black.png differ diff --git a/user_login_info/static/description/assets/icons/photo-capture.png b/user_login_info/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/user_login_info/static/description/assets/icons/photo-capture.png differ diff --git a/user_login_info/static/description/assets/icons/pos-black.png b/user_login_info/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/user_login_info/static/description/assets/icons/pos-black.png differ diff --git a/user_login_info/static/description/assets/icons/puzzle.png b/user_login_info/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/user_login_info/static/description/assets/icons/puzzle.png differ diff --git a/user_login_info/static/description/assets/icons/restaurant-black.png b/user_login_info/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/user_login_info/static/description/assets/icons/restaurant-black.png differ diff --git a/user_login_info/static/description/assets/icons/service-black.png b/user_login_info/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/user_login_info/static/description/assets/icons/service-black.png differ diff --git a/user_login_info/static/description/assets/icons/trading-black.png b/user_login_info/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/user_login_info/static/description/assets/icons/trading-black.png differ diff --git a/user_login_info/static/description/assets/icons/training.png b/user_login_info/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/user_login_info/static/description/assets/icons/training.png differ diff --git a/user_login_info/static/description/assets/icons/update.png b/user_login_info/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/user_login_info/static/description/assets/icons/update.png differ diff --git a/user_login_info/static/description/assets/icons/user.png b/user_login_info/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/user_login_info/static/description/assets/icons/user.png differ diff --git a/user_login_info/static/description/assets/icons/wrench.png b/user_login_info/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/user_login_info/static/description/assets/icons/wrench.png differ diff --git a/user_login_info/static/description/assets/misc/Cybrosys R.png b/user_login_info/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/user_login_info/static/description/assets/misc/Cybrosys R.png differ diff --git a/user_login_info/static/description/assets/misc/email.svg b/user_login_info/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/user_login_info/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/user_login_info/static/description/assets/misc/phone.svg b/user_login_info/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/user_login_info/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/user_login_info/static/description/assets/misc/star (1) 2.svg b/user_login_info/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/user_login_info/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/user_login_info/static/description/assets/misc/support (1) 1.svg b/user_login_info/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/user_login_info/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/user_login_info/static/description/assets/misc/support-email.svg b/user_login_info/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/user_login_info/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/user_login_info/static/description/assets/misc/tick-mark.svg b/user_login_info/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/user_login_info/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/user_login_info/static/description/assets/misc/whatsapp 1.svg b/user_login_info/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/user_login_info/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/user_login_info/static/description/assets/misc/whatsapp.svg b/user_login_info/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/user_login_info/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/user_login_info/static/description/assets/modules/banner1.jpg b/user_login_info/static/description/assets/modules/banner1.jpg new file mode 100644 index 000000000..d704eb313 Binary files /dev/null and b/user_login_info/static/description/assets/modules/banner1.jpg differ diff --git a/user_login_info/static/description/assets/modules/banner2.jpg b/user_login_info/static/description/assets/modules/banner2.jpg new file mode 100644 index 000000000..535b8aa14 Binary files /dev/null and b/user_login_info/static/description/assets/modules/banner2.jpg differ diff --git a/user_login_info/static/description/assets/modules/banner3.jpg b/user_login_info/static/description/assets/modules/banner3.jpg new file mode 100644 index 000000000..18035aa10 Binary files /dev/null and b/user_login_info/static/description/assets/modules/banner3.jpg differ diff --git a/user_login_info/static/description/assets/modules/banner4.jpg b/user_login_info/static/description/assets/modules/banner4.jpg new file mode 100644 index 000000000..a68431b9d Binary files /dev/null and b/user_login_info/static/description/assets/modules/banner4.jpg differ diff --git a/user_login_info/static/description/assets/modules/banner5.jpg b/user_login_info/static/description/assets/modules/banner5.jpg new file mode 100644 index 000000000..5d47bad17 Binary files /dev/null and b/user_login_info/static/description/assets/modules/banner5.jpg differ diff --git a/user_login_info/static/description/assets/modules/banner6.jpg b/user_login_info/static/description/assets/modules/banner6.jpg new file mode 100644 index 000000000..614902f75 Binary files /dev/null and b/user_login_info/static/description/assets/modules/banner6.jpg differ diff --git a/user_login_info/static/description/assets/screenshots/entr_sprt.png b/user_login_info/static/description/assets/screenshots/entr_sprt.png new file mode 100644 index 000000000..413781ccf Binary files /dev/null and b/user_login_info/static/description/assets/screenshots/entr_sprt.png differ diff --git a/user_login_info/static/description/assets/screenshots/form_view.png b/user_login_info/static/description/assets/screenshots/form_view.png new file mode 100644 index 000000000..b7941a6d0 Binary files /dev/null and b/user_login_info/static/description/assets/screenshots/form_view.png differ diff --git a/user_login_info/static/description/assets/screenshots/hero.gif b/user_login_info/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..6d79083ff Binary files /dev/null and b/user_login_info/static/description/assets/screenshots/hero.gif differ diff --git a/user_login_info/static/description/assets/screenshots/img2.png b/user_login_info/static/description/assets/screenshots/img2.png new file mode 100644 index 000000000..f6a4d6a08 Binary files /dev/null and b/user_login_info/static/description/assets/screenshots/img2.png differ diff --git a/user_login_info/static/description/banner.jpg b/user_login_info/static/description/banner.jpg new file mode 100644 index 000000000..c7c8f1849 Binary files /dev/null and b/user_login_info/static/description/banner.jpg differ diff --git a/user_login_info/static/description/cybro_logo.png b/user_login_info/static/description/cybro_logo.png new file mode 100644 index 000000000..bb309114c Binary files /dev/null and b/user_login_info/static/description/cybro_logo.png differ diff --git a/user_login_info/static/description/icon.png b/user_login_info/static/description/icon.png new file mode 100644 index 000000000..9cfeb6e5c Binary files /dev/null and b/user_login_info/static/description/icon.png differ diff --git a/user_login_info/static/description/index.html b/user_login_info/static/description/index.html new file mode 100644 index 000000000..d7641eded --- /dev/null +++ b/user_login_info/static/description/index.html @@ -0,0 +1,671 @@ + + + + + + + Timesheet PDF Report + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.Sh +
+
+
+
+
+
+

+ LOGIN USER INFO USING CAMERA

+

+ Login User Information Using Camera +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

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

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

+ Login page. +

+
+
+
+
+
+
+ +
+
+

+ Enterprise Support. +

+ +
+
+
+
+
+
+ +
+
+

+ Logged-in user Record with Images +

+ +
+
+
+
+
+
+
    +
  • + Odoo 17 Community And Enterprise Edition Support +
  • +
  • + Login user information in Odoo 17 Community Edition. +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:26th Jul 2024 +
+

+ + Initial Commit for Login User Info Using Camera.

+
+
+
+
+
+
+
+

+ 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 +
+
+
+
+
+
+
+
+
+ + + + + + \ No newline at end of file diff --git a/user_login_info/views/user_log_views.xml b/user_login_info/views/user_log_views.xml new file mode 100644 index 000000000..b5ae362b9 --- /dev/null +++ b/user_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 + + + + + + + + + + +