diff --git a/partner_contact_configuration/README.rst b/partner_contact_configuration/README.rst new file mode 100644 index 000000000..bec2ab47b --- /dev/null +++ b/partner_contact_configuration/README.rst @@ -0,0 +1,56 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +============================= +Partner Contact Configuration +============================= + +Adds menu configuration access through the 'contacts' module main menu if +some users don't have sales rights and you want them to access partners +configuration (title, tags, ...) + + +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/134/10.0 + + +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. + +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + +Contributors +------------ + +* Denis Roussel + +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/partner_contact_configuration/__init__.py b/partner_contact_configuration/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/partner_contact_configuration/__manifest__.py b/partner_contact_configuration/__manifest__.py new file mode 100644 index 000000000..f119927a4 --- /dev/null +++ b/partner_contact_configuration/__manifest__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# Copyright 2017 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + 'name': 'Partner Contact Configuration', + 'summary': """ + Adds menu configuration access through the 'contacts' module main menu + """, + 'version': '10.0.1.0.0', + 'license': 'AGPL-3', + 'author': 'ACSONE SA/NV,Odoo Community Association (OCA)', + 'website': 'https://acsone.eu', + 'depends': ['base', + 'contacts' + ], + 'data': ['views/partner_contact.xml' + ], + 'demo': [ + ], +} diff --git a/partner_contact_configuration/static/description/icon.png b/partner_contact_configuration/static/description/icon.png new file mode 100644 index 000000000..3a0328b51 Binary files /dev/null and b/partner_contact_configuration/static/description/icon.png differ diff --git a/partner_contact_configuration/views/partner_contact.xml b/partner_contact_configuration/views/partner_contact.xml new file mode 100644 index 000000000..c4237d3e0 --- /dev/null +++ b/partner_contact_configuration/views/partner_contact.xml @@ -0,0 +1,24 @@ + + + + + + + + + diff --git a/setup/partner_contact_configuration/odoo/__init__.py b/setup/partner_contact_configuration/odoo/__init__.py new file mode 100644 index 000000000..de40ea7ca --- /dev/null +++ b/setup/partner_contact_configuration/odoo/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/partner_contact_configuration/odoo/addons/__init__.py b/setup/partner_contact_configuration/odoo/addons/__init__.py new file mode 100644 index 000000000..de40ea7ca --- /dev/null +++ b/setup/partner_contact_configuration/odoo/addons/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/setup/partner_contact_configuration/odoo/addons/partner_contact_configuration b/setup/partner_contact_configuration/odoo/addons/partner_contact_configuration new file mode 120000 index 000000000..ea8f66782 --- /dev/null +++ b/setup/partner_contact_configuration/odoo/addons/partner_contact_configuration @@ -0,0 +1 @@ +../../../../partner_contact_configuration/ \ No newline at end of file diff --git a/setup/partner_contact_configuration/setup.py b/setup/partner_contact_configuration/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/partner_contact_configuration/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)