Skip to content

Commit a7135c2

Browse files
committed
Merge PR #575 into 19.0
Signed-off-by pedrobaeza
2 parents 44c09d4 + 15353ba commit a7135c2

File tree

18 files changed

+787
-0
lines changed

18 files changed

+787
-0
lines changed

document_page_partner/README.rst

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
.. image:: https://odoo-community.org/readme-banner-image
2+
:target: https://odoo-community.org/get-involved?utm_source=readme
3+
:alt: Odoo Community Association
4+
5+
===================================
6+
Link to a partner in document pages
7+
===================================
8+
9+
..
10+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
11+
!! This file is generated by oca-gen-addon-readme !!
12+
!! changes will be overwritten. !!
13+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
14+
!! source digest: sha256:f9c28130c9574bd7b14f0b7f442eba127dbfbfa1f0795a6b43e8f2c0f45e5174
15+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
16+
17+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
18+
:target: https://odoo-community.org/page/development-status
19+
:alt: Beta
20+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
21+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
22+
:alt: License: AGPL-3
23+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fknowledge-lightgray.png?logo=github
24+
:target: https://github.com/OCA/knowledge/tree/19.0/document_page_partner
25+
:alt: OCA/knowledge
26+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
27+
:target: https://translation.odoo-community.org/projects/knowledge-19-0/knowledge-19-0-document_page_partner
28+
:alt: Translate me on Weblate
29+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
30+
:target: https://runboat.odoo-community.org/builds?repo=OCA/knowledge&target_branch=19.0
31+
:alt: Try me on Runboat
32+
33+
|badge1| |badge2| |badge3| |badge4| |badge5|
34+
35+
This module allows you to organize your knowledgebase by partner.
36+
37+
**Table of contents**
38+
39+
.. contents::
40+
:local:
41+
42+
Usage
43+
=====
44+
45+
To use this module, simply fill in a partner for some pages, then you
46+
can search by partner or group by partner.
47+
48+
Bug Tracker
49+
===========
50+
51+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/knowledge/issues>`_.
52+
In case of trouble, please check there if your issue has already been reported.
53+
If you spotted it first, help us to smash it by providing a detailed and welcomed
54+
`feedback <https://github.com/OCA/knowledge/issues/new?body=module:%20document_page_partner%0Aversion:%2019.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
55+
56+
Do not contact contributors directly about support or help with technical issues.
57+
58+
Credits
59+
=======
60+
61+
Authors
62+
-------
63+
64+
* Therp BV
65+
66+
Contributors
67+
------------
68+
69+
- Holger Brunn <hbrunn@therp.nl>
70+
- `Heliconia Solutions Pvt. Ltd. <https://www.heliconia.io>`__
71+
72+
- Bhavesh Heliconia
73+
74+
Maintainers
75+
-----------
76+
77+
This module is maintained by the OCA.
78+
79+
.. image:: https://odoo-community.org/logo.png
80+
:alt: Odoo Community Association
81+
:target: https://odoo-community.org
82+
83+
OCA, or the Odoo Community Association, is a nonprofit organization whose
84+
mission is to support the collaborative development of Odoo features and
85+
promote its widespread use.
86+
87+
This module is part of the `OCA/knowledge <https://github.com/OCA/knowledge/tree/19.0/document_page_partner>`_ project on GitHub.
88+
89+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

document_page_partner/__init__.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
##############################################################################
2+
#
3+
# This module copyright (C) 2015 Therp BV <http://therp.nl>.
4+
#
5+
# This program is free software: you can redistribute it and/or modify
6+
# it under the terms of the GNU Affero General Public License as
7+
# published by the Free Software Foundation, either version 3 of the
8+
# License, or (at your option) any later version.
9+
#
10+
# This program is distributed in the hope that it will be useful,
11+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
# GNU Affero General Public License for more details.
14+
#
15+
# You should have received a copy of the GNU Affero General Public License
16+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
17+
#
18+
##############################################################################
19+
from . import models
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Copyright 2015-24 Therp BV <https://therp.nl>
2+
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
3+
{
4+
"name": "Link to a partner in document pages",
5+
"version": "19.0.1.0.0",
6+
"website": "https://github.com/OCA/knowledge",
7+
"author": "Therp BV, Odoo Community Association (OCA)",
8+
"license": "AGPL-3",
9+
"category": "Knowledge Management",
10+
"summary": "Allows to link doucment pages to a partner",
11+
"depends": [
12+
"document_page",
13+
],
14+
"data": [
15+
"views/document_page.xml",
16+
],
17+
"installable": True,
18+
}

document_page_partner/i18n/de.po

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * document_page_partner
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 16.0\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"PO-Revision-Date: 2025-03-17 14:06+0000\n"
10+
"Last-Translator: davidbeckercbl <becker@cbl-computer.de>\n"
11+
"Language-Team: none\n"
12+
"Language: de\n"
13+
"MIME-Version: 1.0\n"
14+
"Content-Type: text/plain; charset=UTF-8\n"
15+
"Content-Transfer-Encoding: \n"
16+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
17+
"X-Generator: Weblate 5.10.2\n"
18+
19+
#. module: document_page_partner
20+
#: model:ir.model,name:document_page_partner.model_document_page
21+
msgid "Document Page"
22+
msgstr "Dokumentenseite"
23+
24+
#. module: document_page_partner
25+
#: model:ir.model.fields,field_description:document_page_partner.field_document_page__partner_id
26+
#: model_terms:ir.ui.view,arch_db:document_page_partner.view_wiki_filter
27+
msgid "Partner"
28+
msgstr "Parnter"
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * document_page_partner
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 18.0\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"Last-Translator: \n"
10+
"Language-Team: \n"
11+
"MIME-Version: 1.0\n"
12+
"Content-Type: text/plain; charset=UTF-8\n"
13+
"Content-Transfer-Encoding: \n"
14+
"Plural-Forms: \n"
15+
16+
#. module: document_page_partner
17+
#: model:ir.model,name:document_page_partner.model_document_page
18+
msgid "Document Page"
19+
msgstr ""
20+
21+
#. module: document_page_partner
22+
#: model:ir.model.fields,field_description:document_page_partner.field_document_page__partner_id
23+
#: model_terms:ir.ui.view,arch_db:document_page_partner.view_wiki_filter
24+
msgid "Partner"
25+
msgstr ""
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * document_page_partner_id
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 10.0\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"Last-Translator: <>\n"
10+
"Language-Team: \n"
11+
"MIME-Version: 1.0\n"
12+
"Content-Type: text/plain; charset=UTF-8\n"
13+
"Content-Transfer-Encoding: \n"
14+
"Plural-Forms: \n"
15+
16+
#. module: document_page_partner_id
17+
#: model:ir.model,name:document_page_partner_id.model_document_page
18+
msgid "Document Page"
19+
msgstr ""
20+
21+
#. module: document_page_partner_id
22+
#: model:ir.model.fields,field_description:document_page_partner_id.field_document_page_partner_id
23+
#: model:ir.ui.view,arch_db:document_page_partner_id.view_wiki_filter
24+
msgid "Partner"
25+
msgstr ""
26+

document_page_partner/i18n/es.po

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * document_page_partner
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 16.0\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"PO-Revision-Date: 2024-05-15 21:34+0000\n"
10+
"Last-Translator: Sergio Ariel Ameghino <ariel.ameghino@gmail.com>\n"
11+
"Language-Team: none\n"
12+
"Language: es\n"
13+
"MIME-Version: 1.0\n"
14+
"Content-Type: text/plain; charset=UTF-8\n"
15+
"Content-Transfer-Encoding: \n"
16+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
17+
"X-Generator: Weblate 4.17\n"
18+
19+
#. module: document_page_partner
20+
#: model:ir.model,name:document_page_partner.model_document_page
21+
msgid "Document Page"
22+
msgstr "Página del documento"
23+
24+
#. module: document_page_partner
25+
#: model:ir.model.fields,field_description:document_page_partner.field_document_page__partner_id
26+
#: model_terms:ir.ui.view,arch_db:document_page_partner.view_wiki_filter
27+
msgid "Partner"
28+
msgstr "Empresa"

document_page_partner/i18n/it.po

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * document_page_partner
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 16.0\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"PO-Revision-Date: 2024-04-02 11:04+0000\n"
10+
"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
11+
"Language-Team: none\n"
12+
"Language: it\n"
13+
"MIME-Version: 1.0\n"
14+
"Content-Type: text/plain; charset=UTF-8\n"
15+
"Content-Transfer-Encoding: \n"
16+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
17+
"X-Generator: Weblate 4.17\n"
18+
19+
#. module: document_page_partner
20+
#: model:ir.model,name:document_page_partner.model_document_page
21+
msgid "Document Page"
22+
msgstr "Pagina documento"
23+
24+
#. module: document_page_partner
25+
#: model:ir.model.fields,field_description:document_page_partner.field_document_page__partner_id
26+
#: model_terms:ir.ui.view,arch_db:document_page_partner.view_wiki_filter
27+
msgid "Partner"
28+
msgstr "Partner"

document_page_partner/i18n/pt.po

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * document_page_partner
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 16.0\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"PO-Revision-Date: 2024-07-27 04:58+0000\n"
10+
"Last-Translator: Peter Romão <peterromao@yahoo.co.uk>\n"
11+
"Language-Team: none\n"
12+
"Language: pt\n"
13+
"MIME-Version: 1.0\n"
14+
"Content-Type: text/plain; charset=UTF-8\n"
15+
"Content-Transfer-Encoding: \n"
16+
"Plural-Forms: nplurals=2; plural=n > 1;\n"
17+
"X-Generator: Weblate 5.6.2\n"
18+
19+
#. module: document_page_partner
20+
#: model:ir.model,name:document_page_partner.model_document_page
21+
msgid "Document Page"
22+
msgstr "Página do documento"
23+
24+
#. module: document_page_partner
25+
#: model:ir.model.fields,field_description:document_page_partner.field_document_page__partner_id
26+
#: model_terms:ir.ui.view,arch_db:document_page_partner.view_wiki_filter
27+
msgid "Partner"
28+
msgstr "Parceiro"
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Copyright 2015-24 Therp BV <https://therp.nl>
2+
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
3+
from . import document_page

0 commit comments

Comments
 (0)