diff --git a/product_restriction_users/README.rst b/product_restriction_users/README.rst new file mode 100644 index 000000000..9dd18223f --- /dev/null +++ b/product_restriction_users/README.rst @@ -0,0 +1,48 @@ +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Product Restriction Users +========================= +This module used to allow products to user or only access products +related to allowed categories or Allow access of products/category to user + +Installation +============ +- www.odoo.com/documentation/15.0/setup/install.html +- Install our custom addon + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +* Developer: (V15) Jumana Jabin MP, (V16) Mruthul Raj, Contacts: 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 `Our Website `__ + +Further information +=================== +HTML Description: ``__ diff --git a/product_restriction_users/__init__.py b/product_restriction_users/__init__.py new file mode 100644 index 000000000..eff8dbf78 --- /dev/null +++ b/product_restriction_users/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Jumana Jabin MP (odoo@cybrosys.com) +# +# 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/product_restriction_users/__manifest__.py b/product_restriction_users/__manifest__.py new file mode 100644 index 000000000..be5f04de1 --- /dev/null +++ b/product_restriction_users/__manifest__.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Jumana Jabin MP (odoo@cybrosys.com) +# +# 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': "Product Restriction Users", + 'version': '15.0.1.0.0', + 'category': "Extra Tools", + 'summary': """The module product_restriction_users is used to allow users + to access products or related products only with authorization, + or to allow users to access products/categories.""", + 'description': """This module used to allow products to user or only + access products related to allowed categories or Allow access of + products/category to user""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['base', 'product'], + 'data': [ + 'security/product_template_security.xml', + 'views/res_users_views.xml', + 'views/product_template_views.xml', + ], + 'images': ['static/description/banner.png'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/product_restriction_users/doc/RELEASE_NOTES.md b/product_restriction_users/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..fa0799d94 --- /dev/null +++ b/product_restriction_users/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 11.01.2024 +#### Version 15.0.1.0.0 +#### ADD +- Initial commit for Product Restriction Users diff --git a/product_restriction_users/models/__init__.py b/product_restriction_users/models/__init__.py new file mode 100644 index 000000000..ec68eb314 --- /dev/null +++ b/product_restriction_users/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Jumana Jabin MP (odoo@cybrosys.com) +# +# 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 product_template +from . import res_users diff --git a/product_restriction_users/models/product_template.py b/product_restriction_users/models/product_template.py new file mode 100644 index 000000000..950b4be2d --- /dev/null +++ b/product_restriction_users/models/product_template.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Jumana Jabin MP (odoo@cybrosys.com) +# +# 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 fields, models + + +class ProductTemplate(models.Model): + """Inherit the product category for restricted the users for + particular products""" + _inherit = 'product.template' + + restrict_user_ids = fields.Many2many('res.users', + help="Restrict the users for " + "particular products", + string="User") + is_product = fields.Boolean(default=True, + help="Indicates whether the item is a" + " product or not.", string="Product") diff --git a/product_restriction_users/models/res_users.py b/product_restriction_users/models/res_users.py new file mode 100644 index 000000000..e9b6a2952 --- /dev/null +++ b/product_restriction_users/models/res_users.py @@ -0,0 +1,92 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Jumana Jabin MP (odoo@cybrosys.com) +# +# 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 fields, models + + +class ResUsers(models.Model): + """ Inherited the res_users model for adding the products + and product category""" + _inherit = 'res.users' + + restricted_type = fields.Selection([('product', 'Product'), ( + 'category', 'Category')], string='Restriction Type', default='product', + help='choose Product and Product ' + 'category depends upon your need') + allowed_product_ids = fields.Many2many('product.template', + string="Products", store=True, + help='Show to allow the products ' + 'for assigned users') + allowed_product_category_ids = fields.Many2many('product.category', + string="Product Category", + store=True, + help='Show to allow the ' + 'product category for' + 'assigned users') + is_admin = fields.Boolean(compute='_compute_is_admin', + help='Check the user is admin or not', + string="Admin") + + def write(self, vals): + """Write the values of restrict user ids """ + res = super(ResUsers, self).write(vals) + if self.restricted_type == 'product': + products = self.env['product.template'].sudo(). \ + search([('restrict_user_ids', 'in', self.ids)]) + if self.allowed_product_ids: + for product in products: + product.is_product = True + for product in self.env['product.template'].sudo(). \ + search([('restrict_user_ids', 'not in', + [rec.id for rec in products])]): + product.is_product = False + else: + for product in self.env['product.template'].sudo().search([]): + product.is_product = True + for user_product in self.allowed_product_ids: + user_product.sudo().write({ + 'restrict_user_ids': [(4, user.id) for user in self] + }) + else: + if self.allowed_product_category_ids: + products = self.env['product.template'].sudo().search([]) + products.restrict_user_ids = [(3, user.id) for user in self] + products.is_product = False + products_categ = self.env['product.template']. \ + search([('categ_id', 'in', [int(categ.id) for categ in + self.allowed_product_category_ids]) + ]) + for product in products_categ: + product.is_product = False + product.sudo().write({ + 'restrict_user_ids': [(4, user.id) for user in self] + }) + else: + products = self.env['product.template'].sudo().search([]) + products.is_product = True + return res + + def _compute_is_admin(self): + """ Compute the value of is_admin based on the user id admin or not""" + for admin in self: + admin.is_admin = False + if admin.id == self.env.ref('base.user_admin').id: + admin.is_admin = True diff --git a/product_restriction_users/security/product_template_security.xml b/product_restriction_users/security/product_template_security.xml new file mode 100644 index 000000000..d9e3ab012 --- /dev/null +++ b/product_restriction_users/security/product_template_security.xml @@ -0,0 +1,28 @@ + + + + + Restrict Products From Users + + + ['|',('is_product','=',True),('restrict_user_ids', 'in',user.id)] + + + + + + + + + + Products For Admin + + [(1,'=',1)] + + + + + + + + diff --git a/product_restriction_users/static/description/assets/icons/check.png b/product_restriction_users/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/product_restriction_users/static/description/assets/icons/check.png differ diff --git a/product_restriction_users/static/description/assets/icons/cogs.png b/product_restriction_users/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/product_restriction_users/static/description/assets/icons/cogs.png differ diff --git a/product_restriction_users/static/description/assets/icons/consultation.png b/product_restriction_users/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/product_restriction_users/static/description/assets/icons/consultation.png differ diff --git a/product_restriction_users/static/description/assets/icons/ecom-black.png b/product_restriction_users/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/product_restriction_users/static/description/assets/icons/ecom-black.png differ diff --git a/product_restriction_users/static/description/assets/icons/education-black.png b/product_restriction_users/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/product_restriction_users/static/description/assets/icons/education-black.png differ diff --git a/product_restriction_users/static/description/assets/icons/hotel-black.png b/product_restriction_users/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/product_restriction_users/static/description/assets/icons/hotel-black.png differ diff --git a/product_restriction_users/static/description/assets/icons/license.png b/product_restriction_users/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/product_restriction_users/static/description/assets/icons/license.png differ diff --git a/product_restriction_users/static/description/assets/icons/lifebuoy.png b/product_restriction_users/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/product_restriction_users/static/description/assets/icons/lifebuoy.png differ diff --git a/product_restriction_users/static/description/assets/icons/manufacturing-black.png b/product_restriction_users/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/product_restriction_users/static/description/assets/icons/manufacturing-black.png differ diff --git a/product_restriction_users/static/description/assets/icons/pos-black.png b/product_restriction_users/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/product_restriction_users/static/description/assets/icons/pos-black.png differ diff --git a/product_restriction_users/static/description/assets/icons/puzzle.png b/product_restriction_users/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/product_restriction_users/static/description/assets/icons/puzzle.png differ diff --git a/product_restriction_users/static/description/assets/icons/restaurant-black.png b/product_restriction_users/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/product_restriction_users/static/description/assets/icons/restaurant-black.png differ diff --git a/product_restriction_users/static/description/assets/icons/service-black.png b/product_restriction_users/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/product_restriction_users/static/description/assets/icons/service-black.png differ diff --git a/product_restriction_users/static/description/assets/icons/trading-black.png b/product_restriction_users/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/product_restriction_users/static/description/assets/icons/trading-black.png differ diff --git a/product_restriction_users/static/description/assets/icons/training.png b/product_restriction_users/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/product_restriction_users/static/description/assets/icons/training.png differ diff --git a/product_restriction_users/static/description/assets/icons/update.png b/product_restriction_users/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/product_restriction_users/static/description/assets/icons/update.png differ diff --git a/product_restriction_users/static/description/assets/icons/user.png b/product_restriction_users/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/product_restriction_users/static/description/assets/icons/user.png differ diff --git a/product_restriction_users/static/description/assets/icons/wrench.png b/product_restriction_users/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/product_restriction_users/static/description/assets/icons/wrench.png differ diff --git a/product_restriction_users/static/description/assets/misc/compass.png b/product_restriction_users/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/product_restriction_users/static/description/assets/misc/compass.png differ diff --git a/product_restriction_users/static/description/assets/misc/corporate.png b/product_restriction_users/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/product_restriction_users/static/description/assets/misc/corporate.png differ diff --git a/product_restriction_users/static/description/assets/misc/customer-support.png b/product_restriction_users/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/product_restriction_users/static/description/assets/misc/customer-support.png differ diff --git a/product_restriction_users/static/description/assets/misc/cybrosys-logo.png b/product_restriction_users/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/product_restriction_users/static/description/assets/misc/cybrosys-logo.png differ diff --git a/product_restriction_users/static/description/assets/misc/logo.png b/product_restriction_users/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/product_restriction_users/static/description/assets/misc/logo.png differ diff --git a/product_restriction_users/static/description/assets/misc/star.png b/product_restriction_users/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/product_restriction_users/static/description/assets/misc/star.png differ diff --git a/product_restriction_users/static/description/assets/misc/support.png b/product_restriction_users/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/product_restriction_users/static/description/assets/misc/support.png differ diff --git a/product_restriction_users/static/description/assets/misc/whatsapp.png b/product_restriction_users/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/product_restriction_users/static/description/assets/misc/whatsapp.png differ diff --git a/product_restriction_users/static/description/assets/modules/access.png b/product_restriction_users/static/description/assets/modules/access.png new file mode 100644 index 000000000..707e2b7ed Binary files /dev/null and b/product_restriction_users/static/description/assets/modules/access.png differ diff --git a/product_restriction_users/static/description/assets/modules/attachment.png b/product_restriction_users/static/description/assets/modules/attachment.png new file mode 100644 index 000000000..e6bee65a9 Binary files /dev/null and b/product_restriction_users/static/description/assets/modules/attachment.png differ diff --git a/product_restriction_users/static/description/assets/modules/discount.png b/product_restriction_users/static/description/assets/modules/discount.png new file mode 100644 index 000000000..53f0384a9 Binary files /dev/null and b/product_restriction_users/static/description/assets/modules/discount.png differ diff --git a/product_restriction_users/static/description/assets/modules/export.png b/product_restriction_users/static/description/assets/modules/export.png new file mode 100644 index 000000000..492980ad0 Binary files /dev/null and b/product_restriction_users/static/description/assets/modules/export.png differ diff --git a/product_restriction_users/static/description/assets/modules/pack.png b/product_restriction_users/static/description/assets/modules/pack.png new file mode 100644 index 000000000..2c260531d Binary files /dev/null and b/product_restriction_users/static/description/assets/modules/pack.png differ diff --git a/product_restriction_users/static/description/assets/modules/qr.png b/product_restriction_users/static/description/assets/modules/qr.png new file mode 100644 index 000000000..a477d967f Binary files /dev/null and b/product_restriction_users/static/description/assets/modules/qr.png differ diff --git a/product_restriction_users/static/description/assets/screenshots/hero.gif b/product_restriction_users/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..8fe5ffa2e Binary files /dev/null and b/product_restriction_users/static/description/assets/screenshots/hero.gif differ diff --git a/product_restriction_users/static/description/assets/screenshots/user_1.png b/product_restriction_users/static/description/assets/screenshots/user_1.png new file mode 100644 index 000000000..c9ae4ff74 Binary files /dev/null and b/product_restriction_users/static/description/assets/screenshots/user_1.png differ diff --git a/product_restriction_users/static/description/assets/screenshots/user_2.png b/product_restriction_users/static/description/assets/screenshots/user_2.png new file mode 100644 index 000000000..3a80886e2 Binary files /dev/null and b/product_restriction_users/static/description/assets/screenshots/user_2.png differ diff --git a/product_restriction_users/static/description/assets/screenshots/user_3.png b/product_restriction_users/static/description/assets/screenshots/user_3.png new file mode 100644 index 000000000..a8952130f Binary files /dev/null and b/product_restriction_users/static/description/assets/screenshots/user_3.png differ diff --git a/product_restriction_users/static/description/assets/screenshots/user_4.png b/product_restriction_users/static/description/assets/screenshots/user_4.png new file mode 100644 index 000000000..1dc7795ce Binary files /dev/null and b/product_restriction_users/static/description/assets/screenshots/user_4.png differ diff --git a/product_restriction_users/static/description/banner.png b/product_restriction_users/static/description/banner.png new file mode 100644 index 000000000..b7bdabadf Binary files /dev/null and b/product_restriction_users/static/description/banner.png differ diff --git a/product_restriction_users/static/description/icon.png b/product_restriction_users/static/description/icon.png new file mode 100644 index 000000000..bc4152d18 Binary files /dev/null and b/product_restriction_users/static/description/icon.png differ diff --git a/product_restriction_users/static/description/index.html b/product_restriction_users/static/description/index.html new file mode 100644 index 000000000..952714d27 --- /dev/null +++ b/product_restriction_users/static/description/index.html @@ -0,0 +1,669 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+ +

+ Product Restriction Users +

+

+ This Module Helps The Users to View Products or Related + Products Only With Permission, or to Access + Products/Categories.

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

+ Explore This Module

+
+ + + + +
+
+

+ Overview +

+
+ +
+

+ This module used to allow products to user or only access + products + related to allowed categories or Allow access of + products/category to user. +

+
+ +
+ +
+
+

+ Features +

+
+ +
+
+ +
+
+

+ Configure the User Settings.

+
+
+ +
+
+ +
+
+

+ Configure to Allow only Selected Products to User.

+
+
+
+
+ +
+
+

+ Configure to Allow to Show The Products based on Category + to + User.

+
+
+ +
+ + +
+
+

+ Screenshots +

+
+
+

+ Configure User + Settings

+

+ Set a restriction type + for to allow product and product category based on the + selection + of product and + category and added the allowed products in the user.

+ +
+ +
+

+ Showing The Allowed Products on the User Marc Demo +

+ +
+ +
+

+ Login as the User + Mitchel Admin and set Restriction Type as Category. +

+ +
+ +
+

+ Showing the Allowed Products based on Chosen Product Category + on + the User Marc Demo

+ +
+
+ + +
+
+

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

+
+
+
+
+ + +
+
+ +
+

+ Support +

+
+
+
+
+
+
+ +
+
+

Need Help?

+

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

+ +

+ odoo@cybrosys.com

+
+
+
+
+
+
+
+ +
+
+

WhatsApp

+

Say hi to us on + WhatsApp!

+ +

+ +91 86068 + 27707

+
+
+
+
+
+
+
+ +
+
+
+ + diff --git a/product_restriction_users/views/product_template_views.xml b/product_restriction_users/views/product_template_views.xml new file mode 100644 index 000000000..652c7127f --- /dev/null +++ b/product_restriction_users/views/product_template_views.xml @@ -0,0 +1,21 @@ + + + + + + product.template.view.form.inherit.product.restriction.users + + product.template + + + + + + + + + + + + diff --git a/product_restriction_users/views/res_users_views.xml b/product_restriction_users/views/res_users_views.xml new file mode 100644 index 000000000..d5397032a --- /dev/null +++ b/product_restriction_users/views/res_users_views.xml @@ -0,0 +1,28 @@ + + + + + + res.users.view.form.inherit.product.restriction.users + + res.users + + + + + + + + + + + +