-
-
Notifications
You must be signed in to change notification settings - Fork 867
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by rafaelbn
- Loading branch information
Showing
88 changed files
with
7,680 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
========================== | ||
Partner Contact Department | ||
========================== | ||
|
||
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! 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%2Fpartner--contact-lightgray.png?logo=github | ||
:target: https://github.com/OCA/partner-contact/tree/14.0/partner_contact_department | ||
:alt: OCA/partner-contact | ||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png | ||
:target: https://translation.odoo-community.org/projects/partner-contact-14-0/partner-contact-14-0-partner_contact_department | ||
:alt: Translate me on Weblate | ||
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png | ||
:target: https://runbot.odoo-community.org/runbot/134/14.0 | ||
:alt: Try me on Runbot | ||
|
||
|badge1| |badge2| |badge3| |badge4| |badge5| | ||
|
||
This module extends the functionality of the address book to support | ||
departments. | ||
|
||
Department is a drop-down field in partner forms, and it refers to contact | ||
department in its own company. | ||
|
||
**Table of contents** | ||
|
||
.. contents:: | ||
:local: | ||
|
||
Configuration | ||
============= | ||
|
||
To configure departments, you need to: | ||
|
||
* Go to *Contacts > Configuration > Departments*. | ||
|
||
.. figure:: https://raw.githubusercontent.com/OCA/partner-contact/14.0/partner_contact_department/path/to/local/image.png | ||
:alt: alternative description | ||
:width: 600 px | ||
|
||
Usage | ||
===== | ||
|
||
To use this module, you need to: | ||
|
||
* Go to any partner's form. | ||
* You will find the new *Department* field below *Job Position*. | ||
|
||
Bug Tracker | ||
=========== | ||
|
||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/partner-contact/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 <https://github.com/OCA/partner-contact/issues/new?body=module:%20partner_contact_department%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. | ||
|
||
Do not contact contributors directly about support or help with technical issues. | ||
|
||
Credits | ||
======= | ||
|
||
Authors | ||
~~~~~~~ | ||
|
||
* Tecnativa | ||
|
||
Contributors | ||
~~~~~~~~~~~~ | ||
|
||
* Pedro M. Baeza <[email protected]> | ||
* Antonio Espinosa <[email protected]> | ||
* Rafael Blasco <[email protected]> | ||
* Jairo Llopis <[email protected]> | ||
* Vicent Cubells <[email protected]> | ||
* David Vidal <[email protected]> | ||
* Nikul Chaudhary <[email protected]> | ||
* Harald Panten <[email protected]> | ||
* Tharathip Chaweewongphan <[email protected]> | ||
|
||
Maintainers | ||
~~~~~~~~~~~ | ||
|
||
This module is maintained by the OCA. | ||
|
||
.. image:: https://odoo-community.org/logo.png | ||
:alt: Odoo Community Association | ||
:target: https://odoo-community.org | ||
|
||
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. | ||
|
||
This module is part of the `OCA/partner-contact <https://github.com/OCA/partner-contact/tree/14.0/partner_contact_department>`_ project on GitHub. | ||
|
||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). | ||
|
||
from . import models |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Copyright 2014-2015 Tecnativa S.L. - Jairo Llopis | ||
# Copyright 2016 Tecnativa S.L. - Vicent Cubells | ||
# Copyright 2017 Tecnativa S.L. - David Vidal | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). | ||
|
||
{ | ||
"name": "Partner Contact Department", | ||
"summary": "Assign contacts to departments", | ||
"version": "16.0.1.0.0", | ||
"category": "Customer Relationship Management", | ||
"author": "Tecnativa, Odoo Community Association (OCA)", | ||
"license": "AGPL-3", | ||
"website": "https://github.com/OCA/partner-contact", | ||
"application": False, | ||
"depends": ["contacts"], | ||
"data": [ | ||
"security/ir.model.access.csv", | ||
"views/res_partner_department_view.xml", | ||
"views/res_partner_view.xml", | ||
], | ||
"installable": True, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * partner_contact_department | ||
# | ||
# Translators: | ||
# OCA Transbot <[email protected]>, 2017 | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 10.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2017-12-26 15:32+0000\n" | ||
"PO-Revision-Date: 2017-12-26 15:32+0000\n" | ||
"Last-Translator: OCA Transbot <[email protected]>, 2017\n" | ||
"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" | ||
"Language: am\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: nplurals=2; plural=(n > 1);\n" | ||
|
||
#. module: partner_contact_department | ||
#: model:ir.model.fields,field_description:partner_contact_department.field_res_partner_department__child_ids | ||
msgid "Child departments" | ||
msgstr "" | ||
|
||
#. module: partner_contact_department | ||
#: model:ir.model,name:partner_contact_department.model_res_partner | ||
msgid "Contact" | ||
msgstr "" | ||
|
||
#. module: partner_contact_department | ||
#: model:ir.model.fields,field_description:partner_contact_department.field_res_partner_department__create_uid | ||
msgid "Created by" | ||
msgstr "Creado por" | ||
|
||
#. module: partner_contact_department | ||
#: model:ir.model.fields,field_description:partner_contact_department.field_res_partner_department__create_date | ||
msgid "Created on" | ||
msgstr "Creado en" | ||
|
||
#. module: partner_contact_department | ||
#: model:ir.model,name:partner_contact_department.model_res_partner_department | ||
#: model:ir.model.fields,field_description:partner_contact_department.field_res_partner__department_id | ||
#: model:ir.model.fields,field_description:partner_contact_department.field_res_users__department_id | ||
#: model_terms:ir.ui.view,arch_db:partner_contact_department.view_partner_form_department | ||
#: model_terms:ir.ui.view,arch_db:partner_contact_department.view_res_partner_filter_department | ||
msgid "Department" | ||
msgstr "" | ||
|
||
#. module: partner_contact_department | ||
#: model:ir.actions.act_window,name:partner_contact_department.res_partner_department_action | ||
#: model:ir.ui.menu,name:partner_contact_department.menu_res_partner_department | ||
#: model_terms:ir.ui.view,arch_db:partner_contact_department.res_partner_department_tree_view | ||
msgid "Departments" | ||
msgstr "" | ||
|
||
#. module: partner_contact_department | ||
#: model:ir.model.fields,field_description:partner_contact_department.field_res_partner_department__display_name | ||
msgid "Display Name" | ||
msgstr "" | ||
|
||
#. module: partner_contact_department | ||
#: model:ir.model.fields,field_description:partner_contact_department.field_res_partner_department__id | ||
msgid "ID" | ||
msgstr "ID" | ||
|
||
#. module: partner_contact_department | ||
#: model:ir.model.fields,field_description:partner_contact_department.field_res_partner_department____last_update | ||
msgid "Last Modified on" | ||
msgstr "" | ||
|
||
#. module: partner_contact_department | ||
#: model:ir.model.fields,field_description:partner_contact_department.field_res_partner_department__write_uid | ||
msgid "Last Updated by" | ||
msgstr "Última actualización por" | ||
|
||
#. module: partner_contact_department | ||
#: model:ir.model.fields,field_description:partner_contact_department.field_res_partner_department__write_date | ||
msgid "Last Updated on" | ||
msgstr "Última actualización en" | ||
|
||
#. module: partner_contact_department | ||
#: model:ir.model.fields,field_description:partner_contact_department.field_res_partner_department__name | ||
msgid "Name" | ||
msgstr "" | ||
|
||
#. module: partner_contact_department | ||
#: model:ir.model.fields,field_description:partner_contact_department.field_res_partner_department__parent_path | ||
msgid "Parent Path" | ||
msgstr "" | ||
|
||
#. module: partner_contact_department | ||
#: model:ir.model.fields,field_description:partner_contact_department.field_res_partner_department__parent_id | ||
msgid "Parent department" | ||
msgstr "" | ||
|
||
#~ msgid "Partner" | ||
#~ msgstr "ተባባሪ" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * partner_contact_department | ||
# | ||
# Translators: | ||
# OCA Transbot <[email protected]>, 2017 | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 10.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2017-12-26 15:32+0000\n" | ||
"PO-Revision-Date: 2017-12-26 15:32+0000\n" | ||
"Last-Translator: OCA Transbot <[email protected]>, 2017\n" | ||
"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" | ||
"Language: ar\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " | ||
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" | ||
|
||
#. module: partner_contact_department | ||
#: model:ir.model.fields,field_description:partner_contact_department.field_res_partner_department__child_ids | ||
msgid "Child departments" | ||
msgstr "" | ||
|
||
#. module: partner_contact_department | ||
#: model:ir.model,name:partner_contact_department.model_res_partner | ||
msgid "Contact" | ||
msgstr "" | ||
|
||
#. module: partner_contact_department | ||
#: model:ir.model.fields,field_description:partner_contact_department.field_res_partner_department__create_uid | ||
msgid "Created by" | ||
msgstr "أنشئ بواسطة" | ||
|
||
#. module: partner_contact_department | ||
#: model:ir.model.fields,field_description:partner_contact_department.field_res_partner_department__create_date | ||
msgid "Created on" | ||
msgstr "أنشئ في" | ||
|
||
#. module: partner_contact_department | ||
#: model:ir.model,name:partner_contact_department.model_res_partner_department | ||
#: model:ir.model.fields,field_description:partner_contact_department.field_res_partner__department_id | ||
#: model:ir.model.fields,field_description:partner_contact_department.field_res_users__department_id | ||
#: model_terms:ir.ui.view,arch_db:partner_contact_department.view_partner_form_department | ||
#: model_terms:ir.ui.view,arch_db:partner_contact_department.view_res_partner_filter_department | ||
msgid "Department" | ||
msgstr "" | ||
|
||
#. module: partner_contact_department | ||
#: model:ir.actions.act_window,name:partner_contact_department.res_partner_department_action | ||
#: model:ir.ui.menu,name:partner_contact_department.menu_res_partner_department | ||
#: model_terms:ir.ui.view,arch_db:partner_contact_department.res_partner_department_tree_view | ||
msgid "Departments" | ||
msgstr "" | ||
|
||
#. module: partner_contact_department | ||
#: model:ir.model.fields,field_description:partner_contact_department.field_res_partner_department__display_name | ||
msgid "Display Name" | ||
msgstr "اسم العرض" | ||
|
||
#. module: partner_contact_department | ||
#: model:ir.model.fields,field_description:partner_contact_department.field_res_partner_department__id | ||
msgid "ID" | ||
msgstr "المعرف" | ||
|
||
#. module: partner_contact_department | ||
#: model:ir.model.fields,field_description:partner_contact_department.field_res_partner_department____last_update | ||
msgid "Last Modified on" | ||
msgstr "آخر تعديل في" | ||
|
||
#. module: partner_contact_department | ||
#: model:ir.model.fields,field_description:partner_contact_department.field_res_partner_department__write_uid | ||
msgid "Last Updated by" | ||
msgstr "آخر تحديث بواسطة" | ||
|
||
#. module: partner_contact_department | ||
#: model:ir.model.fields,field_description:partner_contact_department.field_res_partner_department__write_date | ||
msgid "Last Updated on" | ||
msgstr "آخر تحديث في" | ||
|
||
#. module: partner_contact_department | ||
#: model:ir.model.fields,field_description:partner_contact_department.field_res_partner_department__name | ||
msgid "Name" | ||
msgstr "الاسم" | ||
|
||
#. module: partner_contact_department | ||
#: model:ir.model.fields,field_description:partner_contact_department.field_res_partner_department__parent_path | ||
msgid "Parent Path" | ||
msgstr "" | ||
|
||
#. module: partner_contact_department | ||
#: model:ir.model.fields,field_description:partner_contact_department.field_res_partner_department__parent_id | ||
msgid "Parent department" | ||
msgstr "" | ||
|
||
#~ msgid "Partner" | ||
#~ msgstr "الشريك" |
Oops, something went wrong.