diff --git a/mmx_inventory_access_right/README.rst b/mmx_inventory_access_right/README.rst new file mode 100644 index 0000000..5b18ee4 --- /dev/null +++ b/mmx_inventory_access_right/README.rst @@ -0,0 +1,70 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +====================== +Inventory Access Right +====================== + +This Module gets the visibility of inventory information only visible by respective managers. + +Installation +============ + +No specific steps required + + + +Configuration +============= + +No configuration steps required + + + +Usage +===== + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/153/7.0 + +Known issues / Roadmap +====================== + +* ... + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed feedback `here `_. + + +Credits +======= + +Contributors +------------ + +Liping Wang + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/mmx_inventory_access_right/__init__.py b/mmx_inventory_access_right/__init__.py new file mode 100644 index 0000000..fe244c2 --- /dev/null +++ b/mmx_inventory_access_right/__init__.py @@ -0,0 +1,6 @@ +# -*- coding: utf-8 -*- +# © 2015 Elico Corp (https://www.elico-corp.com). +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html) + + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/mmx_inventory_access_right/__openerp__.py b/mmx_inventory_access_right/__openerp__.py new file mode 100644 index 0000000..81c8714 --- /dev/null +++ b/mmx_inventory_access_right/__openerp__.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# © 2015 Elico Corp (https://www.elico-corp.com). +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html) + +{ + 'name': 'MMX Inventory Access Right', + 'version': '7.0.1.0.0', + 'author': 'Elico Corp', + 'website': 'http://www.elico-corp.com', + 'depends': ['stock'], + 'sequence': 10, + 'data': ['security/data.xml', ], + 'installable': True, + 'application': False, + 'auto_install': False, +} + + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/mmx_inventory_access_right/security/data.xml b/mmx_inventory_access_right/security/data.xml new file mode 100644 index 0000000..8d24e21 --- /dev/null +++ b/mmx_inventory_access_right/security/data.xml @@ -0,0 +1,20 @@ + + + + + Product Inventory + + + + + + Access Magento Product Product + + + + + + + + \ No newline at end of file