diff --git a/mac_address_login_validation/README.rst b/mac_address_login_validation/README.rst new file mode 100644 index 000000000..2085654b6 --- /dev/null +++ b/mac_address_login_validation/README.rst @@ -0,0 +1,40 @@ +MAC Address Login Validation +============================ + +Restrict user login by devices using MAC address + +Tech +==== +* [Python] - Models +* [XML] - Odoo views + +Installation +============ +- www.odoo.com/documentation/15.0/setup/install.html + +- Install our custom addon + + + +Bug Tracker +=========== +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Credits +======= +* Cybrosys Techno Solutions + +Author +------ + +Developer: Sreerag E, odoo@cybrosys.com + Version 15: Sreerag E @cybrosys, Contact: odoo@cybrosys.com + + +Maintainer +---------- + +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit https://www.openhrms.com + diff --git a/mac_address_login_validation/__init__.py b/mac_address_login_validation/__init__.py new file mode 100644 index 000000000..d5ffecfcf --- /dev/null +++ b/mac_address_login_validation/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-November 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 controllers, models diff --git a/mac_address_login_validation/__manifest__.py b/mac_address_login_validation/__manifest__.py new file mode 100644 index 000000000..7ee3febcc --- /dev/null +++ b/mac_address_login_validation/__manifest__.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-November 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': "MAC Address Login Validation", + 'version': "15.0.1.0.0", + 'summary': """Access Restriction By MAC Address""", + 'description': """Access Restriction By MAC Address, MAC Address, mac, mac address, restrict login, restrict mac""", + 'author': "Cybrosys Techno Solutions", + 'company': "Cybrosys Techno Solutions", + 'maintainer': "Cybrosys Techno Solutions", + 'website': "https://www.cybrosys.com", + 'category': 'Tools', + 'data': [ + 'security/ir.model.access.csv', + 'views/res_user.xml' + ], + 'images': ['static/description/banner.png'], + 'license': "AGPL-3", + 'installable': True, + 'application': True, + 'auto_install': False, +} diff --git a/mac_address_login_validation/controllers/__init__.py b/mac_address_login_validation/controllers/__init__.py new file mode 100644 index 000000000..cb29e634d --- /dev/null +++ b/mac_address_login_validation/controllers/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-November 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 main diff --git a/mac_address_login_validation/controllers/main.py b/mac_address_login_validation/controllers/main.py new file mode 100644 index 000000000..379465b48 --- /dev/null +++ b/mac_address_login_validation/controllers/main.py @@ -0,0 +1,107 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-November 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 logging +import sys +import subprocess +from odoo.addons.web.controllers import main +from odoo.http import request +from odoo.exceptions import Warning +import odoo +import odoo.modules.registry +from odoo.tools.translate import _ +from odoo import http + +_logger = logging.getLogger(__name__) +py_v = "python%s.%s" % (sys.version_info.major, sys.version_info.minor) + +try: + from getmac import get_mac_address as gma +except ImportError: + _logger.info('\n There was no such module named -getmac- installed') + _logger.info('xxxxxxxxxxxxxxxx installing getmac xxxxxxxxxxxxxx') + subprocess.check_call([py_v, "-m", "pip", "install", "getmac"]) + from getmac import get_mac_address as gma + + +class Home(main.Home): + + @http.route('/web/login', type='http', auth="public") + def web_login(self, redirect=None, **kw): + main.ensure_db() + request.params['login_success'] = False + if request.httprequest.method == 'GET' and redirect and request.session.uid: + return request.redirect(redirect) + + if not request.uid: + request.uid = odoo.SUPERUSER_ID + values = request.params.copy() + try: + values['databases'] = http.db_list() + except odoo.exceptions.AccessDenied: + values['databases'] = None + if request.httprequest.method == 'POST': + old_uid = request.uid + mac_address = gma() + if request.params['login']: + user_rec = request.env['res.users'].sudo().search( + [('login', '=', request.params['login'])]) + if user_rec.mac_address_login_toggle: + mac_address_list = [] + for rec in user_rec.mac_address_ids: + mac_address_list.append(rec.mac_address) + if mac_address in mac_address_list: + try: + uid = request.session.authenticate( + request.session.db, + request.params[ + 'login'], + request.params[ + 'password']) + request.params['login_success'] = True + return request.redirect( + self._login_redirect(uid, redirect=redirect)) + except odoo.exceptions.AccessDenied as e: + request.uid = old_uid + if e.args == odoo.exceptions.AccessDenied().args: + values['error'] = _("Wrong login/password") + + else: + request.uid = old_uid + values['error'] = _( + "Not allowed to login from this Device") + else: + try: + uid = request.session.authenticate(request.session.db, + request.params[ + 'login'], + request.params[ + 'password']) + request.params['login_success'] = True + + return request.redirect( + self._login_redirect(uid, redirect=redirect)) + except odoo.exceptions.AccessDenied as e: + request.uid = old_uid + if e.args == odoo.exceptions.AccessDenied().args: + values['error'] = _("Wrong login/password") + + return request.render('web.login', values) diff --git a/mac_address_login_validation/doc/RELEASE_NOTES.md b/mac_address_login_validation/doc/RELEASE_NOTES.md new file mode 100755 index 000000000..89af84820 --- /dev/null +++ b/mac_address_login_validation/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module mac_address_login_validation + +#### 21.11.2022 +#### Version 15.0.1.0.0 +##### ADD +- Initial Commit + diff --git a/mac_address_login_validation/models/__init__.py b/mac_address_login_validation/models/__init__.py new file mode 100644 index 000000000..4f8788d71 --- /dev/null +++ b/mac_address_login_validation/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-November 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 res_user diff --git a/mac_address_login_validation/models/res_user.py b/mac_address_login_validation/models/res_user.py new file mode 100644 index 000000000..0675d61e2 --- /dev/null +++ b/mac_address_login_validation/models/res_user.py @@ -0,0 +1,69 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-November 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 logging +import subprocess +import sys +from odoo import models, fields + +py_v = "python%s.%s" % (sys.version_info.major, sys.version_info.minor) + +_logger = logging.getLogger(__name__) +try: + from getmac import get_mac_address as gma +except ImportError: + _logger.info('\n There was no such module named -getmac- installed') + _logger.info('xxxxxxxxxxxxxxxx installing getmac xxxxxxxxxxxxxx') + subprocess.check_call([py_v, "-m", "pip", "install", "--user", "getmac"]) + from getmac import get_mac_address as gma + + +class ResUsers(models.Model): + _inherit = 'res.users' + + mac_address_ids = fields.One2many('mac.address', 'res_user_id', + string='Allowed MAC IDs') + mac_address_login_toggle = fields.Boolean(default=False, + string="Enable MAC Address Login Validation") + current_mac_address = fields.Char(compute='_get_mac', + string="Your Public Mac address") + + def _get_mac(self): + for rec in self: + rec.current_mac_address = gma() + + def enable_validation(self): + for rec in self: + if not rec.mac_address_login_toggle: + rec.mac_address_login_toggle = True + + def disable_validation(self): + for rec in self: + if rec.mac_address_login_toggle: + rec.mac_address_login_toggle = False + + +class MacAddress(models.Model): + _name = 'mac.address' + + name = fields.Char(string="Description") + mac_address = fields.Char(string="MAC Address") + res_user_id = fields.Many2one('res.users') diff --git a/mac_address_login_validation/security/ir.model.access.csv b/mac_address_login_validation/security/ir.model.access.csv new file mode 100644 index 000000000..f4112f87b --- /dev/null +++ b/mac_address_login_validation/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 + +mac_address,MAC Address,model_mac_address,base.group_user,1,1,1,1 diff --git a/mac_address_login_validation/static/description/assets/icons/check.png b/mac_address_login_validation/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/mac_address_login_validation/static/description/assets/icons/check.png differ diff --git a/mac_address_login_validation/static/description/assets/icons/chevron.png b/mac_address_login_validation/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/mac_address_login_validation/static/description/assets/icons/chevron.png differ diff --git a/mac_address_login_validation/static/description/assets/icons/cogs.png b/mac_address_login_validation/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/mac_address_login_validation/static/description/assets/icons/cogs.png differ diff --git a/mac_address_login_validation/static/description/assets/icons/consultation.png b/mac_address_login_validation/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/mac_address_login_validation/static/description/assets/icons/consultation.png differ diff --git a/mac_address_login_validation/static/description/assets/icons/ecom-black.png b/mac_address_login_validation/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/mac_address_login_validation/static/description/assets/icons/ecom-black.png differ diff --git a/mac_address_login_validation/static/description/assets/icons/education-black.png b/mac_address_login_validation/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/mac_address_login_validation/static/description/assets/icons/education-black.png differ diff --git a/mac_address_login_validation/static/description/assets/icons/hotel-black.png b/mac_address_login_validation/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/mac_address_login_validation/static/description/assets/icons/hotel-black.png differ diff --git a/mac_address_login_validation/static/description/assets/icons/license.png b/mac_address_login_validation/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/mac_address_login_validation/static/description/assets/icons/license.png differ diff --git a/mac_address_login_validation/static/description/assets/icons/lifebuoy.png b/mac_address_login_validation/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/mac_address_login_validation/static/description/assets/icons/lifebuoy.png differ diff --git a/mac_address_login_validation/static/description/assets/icons/logo.png b/mac_address_login_validation/static/description/assets/icons/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/mac_address_login_validation/static/description/assets/icons/logo.png differ diff --git a/mac_address_login_validation/static/description/assets/icons/manufacturing-black.png b/mac_address_login_validation/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/mac_address_login_validation/static/description/assets/icons/manufacturing-black.png differ diff --git a/mac_address_login_validation/static/description/assets/icons/pos-black.png b/mac_address_login_validation/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/mac_address_login_validation/static/description/assets/icons/pos-black.png differ diff --git a/mac_address_login_validation/static/description/assets/icons/puzzle.png b/mac_address_login_validation/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/mac_address_login_validation/static/description/assets/icons/puzzle.png differ diff --git a/mac_address_login_validation/static/description/assets/icons/restaurant-black.png b/mac_address_login_validation/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/mac_address_login_validation/static/description/assets/icons/restaurant-black.png differ diff --git a/mac_address_login_validation/static/description/assets/icons/service-black.png b/mac_address_login_validation/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/mac_address_login_validation/static/description/assets/icons/service-black.png differ diff --git a/mac_address_login_validation/static/description/assets/icons/trading-black.png b/mac_address_login_validation/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/mac_address_login_validation/static/description/assets/icons/trading-black.png differ diff --git a/mac_address_login_validation/static/description/assets/icons/training.png b/mac_address_login_validation/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/mac_address_login_validation/static/description/assets/icons/training.png differ diff --git a/mac_address_login_validation/static/description/assets/icons/update.png b/mac_address_login_validation/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/mac_address_login_validation/static/description/assets/icons/update.png differ diff --git a/mac_address_login_validation/static/description/assets/icons/user.png b/mac_address_login_validation/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/mac_address_login_validation/static/description/assets/icons/user.png differ diff --git a/mac_address_login_validation/static/description/assets/icons/wrench.png b/mac_address_login_validation/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/mac_address_login_validation/static/description/assets/icons/wrench.png differ diff --git a/mac_address_login_validation/static/description/assets/modules/budget_image.png b/mac_address_login_validation/static/description/assets/modules/budget_image.png new file mode 100644 index 000000000..b50130c7d Binary files /dev/null and b/mac_address_login_validation/static/description/assets/modules/budget_image.png differ diff --git a/mac_address_login_validation/static/description/assets/modules/credit_image.png b/mac_address_login_validation/static/description/assets/modules/credit_image.png new file mode 100644 index 000000000..3ad04ecfd Binary files /dev/null and b/mac_address_login_validation/static/description/assets/modules/credit_image.png differ diff --git a/mac_address_login_validation/static/description/assets/modules/employee_image.png b/mac_address_login_validation/static/description/assets/modules/employee_image.png new file mode 100644 index 000000000..30ad58232 Binary files /dev/null and b/mac_address_login_validation/static/description/assets/modules/employee_image.png differ diff --git a/mac_address_login_validation/static/description/assets/modules/export_image.png b/mac_address_login_validation/static/description/assets/modules/export_image.png new file mode 100644 index 000000000..492980ad0 Binary files /dev/null and b/mac_address_login_validation/static/description/assets/modules/export_image.png differ diff --git a/mac_address_login_validation/static/description/assets/modules/gantt_image.png b/mac_address_login_validation/static/description/assets/modules/gantt_image.png new file mode 100644 index 000000000..1ae7cfe3b Binary files /dev/null and b/mac_address_login_validation/static/description/assets/modules/gantt_image.png differ diff --git a/mac_address_login_validation/static/description/assets/modules/quotation_image.png b/mac_address_login_validation/static/description/assets/modules/quotation_image.png new file mode 100644 index 000000000..499b1a72f Binary files /dev/null and b/mac_address_login_validation/static/description/assets/modules/quotation_image.png differ diff --git a/mac_address_login_validation/static/description/assets/screenshots/hero.png b/mac_address_login_validation/static/description/assets/screenshots/hero.png new file mode 100644 index 000000000..1ad94030b Binary files /dev/null and b/mac_address_login_validation/static/description/assets/screenshots/hero.png differ diff --git a/mac_address_login_validation/static/description/assets/screenshots/screenshot-1.png b/mac_address_login_validation/static/description/assets/screenshots/screenshot-1.png new file mode 100644 index 000000000..742bec46a Binary files /dev/null and b/mac_address_login_validation/static/description/assets/screenshots/screenshot-1.png differ diff --git a/mac_address_login_validation/static/description/assets/screenshots/screenshot-2.png b/mac_address_login_validation/static/description/assets/screenshots/screenshot-2.png new file mode 100644 index 000000000..0583bd0c8 Binary files /dev/null and b/mac_address_login_validation/static/description/assets/screenshots/screenshot-2.png differ diff --git a/mac_address_login_validation/static/description/assets/screenshots/screenshot-2.png~ b/mac_address_login_validation/static/description/assets/screenshots/screenshot-2.png~ new file mode 100644 index 000000000..e6c9587ba Binary files /dev/null and b/mac_address_login_validation/static/description/assets/screenshots/screenshot-2.png~ differ diff --git a/mac_address_login_validation/static/description/assets/screenshots/screenshot-3.png b/mac_address_login_validation/static/description/assets/screenshots/screenshot-3.png new file mode 100644 index 000000000..76f171daa Binary files /dev/null and b/mac_address_login_validation/static/description/assets/screenshots/screenshot-3.png differ diff --git a/mac_address_login_validation/static/description/banner.png b/mac_address_login_validation/static/description/banner.png new file mode 100644 index 000000000..128e32f03 Binary files /dev/null and b/mac_address_login_validation/static/description/banner.png differ diff --git a/mac_address_login_validation/static/description/icon.png b/mac_address_login_validation/static/description/icon.png new file mode 100644 index 000000000..206aaa43e Binary files /dev/null and b/mac_address_login_validation/static/description/icon.png differ diff --git a/mac_address_login_validation/static/description/index.html b/mac_address_login_validation/static/description/index.html new file mode 100644 index 000000000..25058b3b9 --- /dev/null +++ b/mac_address_login_validation/static/description/index.html @@ -0,0 +1,567 @@ +
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+ +
+
+
+
+ +
+
+
+

+ MAC Address Login Validation

+

+ Access Restriction By MAC Address +

+ +
+
+ + + +
+
+

+ Overview +

+
+ +
+

+ Allow users to login from only the allowed devices based on MAC address +

+
+
+ + +
+
+

+ Features +

+
+ +
+
+ +
+
+

+ Enterprise and Community compatible

+
+
+ +
+
+ +
+
+

+ Multiple MAC address can be allowed

+
+
+ +
+
+ +
+
+

+ Current device MAC address is displayed for ease of use.

+
+
+ + +
+ +
+
+

+ Screenshots +

+
+
+

+ Smart Button in User form

+

+ Click on the "Enable Login Validation" for restricting the + corresponding user's login by MAC address

+ +
+ +
+

+ Multiple MAC addresses

+

+ In the "Allowed MAC address" tab you can add the MAC addresses + of the devices which the user is allowed to log in. +

+ +
+ +
+

+ Error message under the Login form itself. +

+ +
+ +
+ +
+
+

Suggested 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

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

Need Help?

+
+
+
+ + +
+ +
+ + +
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ + +
\ No newline at end of file diff --git a/mac_address_login_validation/views/res_user.xml b/mac_address_login_validation/views/res_user.xml new file mode 100644 index 000000000..1b0b9e939 --- /dev/null +++ b/mac_address_login_validation/views/res_user.xml @@ -0,0 +1,39 @@ + + + + + MAC Address Login Validation + res.users + + + + + + + + + + + + + + + + + + + + + + + + + +