diff --git a/document_page_partner_id/README.rst b/document_page_partner_id/README.rst index 08ec1348..56b64551 100644 --- a/document_page_partner_id/README.rst +++ b/document_page_partner_id/README.rst @@ -1,48 +1,78 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :alt: License: AGPL-3 =================================== Link to a partner in document pages =================================== +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fknowledge-lightgray.png?logo=github + :target: https://github.com/OCA/knowledge/tree/10.0/document_page_partner_id + :alt: OCA/knowledge +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/knowledge-10-0/knowledge-10-0-document_page_partner_id + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/118/10.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + This module allows you to organize your knowledgebase by partner. +**Table of contents** + +.. contents:: + :local: + Usage ===== To use this module, simply fill in a partner for some pages, then you can search by partner or group by partner. -* go to ... -.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas -:alt: Try me on Runbotknowl - :target: https://runbot.odoo-community.org/runbot/118/8.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 -`here `_. +If you spotted it first, help us smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. Credits ======= +Authors +~~~~~~~ + +* Therp BV + Contributors ------------- +~~~~~~~~~~~~ * Holger Brunn -Maintainer ----------- +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. .. 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 http://odoo-community.org. +This module is part of the `OCA/knowledge `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/document_page_partner_id/__manifest__.py b/document_page_partner_id/__manifest__.py new file mode 100644 index 00000000..35e9fcb5 --- /dev/null +++ b/document_page_partner_id/__manifest__.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +# Copyright 2015-18 Therp BV +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +{ + "name": "Link to a partner in document pages", + "version": "10.0.1.0.0", + "author": "Therp BV,Odoo Community Association (OCA)", + "license": "AGPL-3", + "category": "Knowledge Management", + "summary": "Allows to link doucment pages to a partner", + "depends": [ + 'document_page', + ], + "data": [ + "views/document_page.xml", + ], + "installable": True, +} diff --git a/document_page_partner_id/__openerp__.py b/document_page_partner_id/__openerp__.py deleted file mode 100644 index 0864e2fd..00000000 --- a/document_page_partner_id/__openerp__.py +++ /dev/null @@ -1,34 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# This module copyright (C) 2015 Therp BV . -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# 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 for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## -{ - "name": "Link to a partner in document pages", - "version": "8.0.1.0.0", - "author": "Therp BV,Odoo Community Association (OCA)", - "license": "AGPL-3", - "category": "Knowledge Management", - "summary": "Allows to link doucment pages to a partner", - "depends": [ - 'document_page', - ], - "data": [ - "views/document_page.xml", - ], - "installable": True, -} diff --git a/document_page_partner_id/models/__init__.py b/document_page_partner_id/models/__init__.py index c22dbddd..5c90bd22 100644 --- a/document_page_partner_id/models/__init__.py +++ b/document_page_partner_id/models/__init__.py @@ -1,20 +1,4 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# This module copyright (C) 2015 Therp BV . -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# 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 for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# Copyright 2015-18 Therp BV +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from . import document_page diff --git a/document_page_partner_id/models/document_page.py b/document_page_partner_id/models/document_page.py index 6a61b031..b612808c 100644 --- a/document_page_partner_id/models/document_page.py +++ b/document_page_partner_id/models/document_page.py @@ -1,22 +1,6 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# This module copyright (C) 2015 Therp BV (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# 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 for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# Copyright 2015-18 Therp BV +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from openerp import models, fields diff --git a/document_page_partner_id/readme/CONTRIBUTORS.rst b/document_page_partner_id/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000..b120a956 --- /dev/null +++ b/document_page_partner_id/readme/CONTRIBUTORS.rst @@ -0,0 +1 @@ +* Holger Brunn diff --git a/document_page_partner_id/readme/DESCRIPTION.rst b/document_page_partner_id/readme/DESCRIPTION.rst new file mode 100644 index 00000000..98ec1212 --- /dev/null +++ b/document_page_partner_id/readme/DESCRIPTION.rst @@ -0,0 +1 @@ +This module allows you to organize your knowledgebase by partner. diff --git a/document_page_partner_id/readme/USAGE.rst b/document_page_partner_id/readme/USAGE.rst new file mode 100644 index 00000000..d958ad25 --- /dev/null +++ b/document_page_partner_id/readme/USAGE.rst @@ -0,0 +1 @@ +To use this module, simply fill in a partner for some pages, then you can search by partner or group by partner. diff --git a/document_page_partner_id/static/description/index.html b/document_page_partner_id/static/description/index.html new file mode 100644 index 00000000..bf71fb67 --- /dev/null +++ b/document_page_partner_id/static/description/index.html @@ -0,0 +1,402 @@ + + + + + + +Link to a partner in document pages + + + + + +