Jairo Llopis
9 years ago
committed by
Nikul-Chaudhary
10 changed files with 354 additions and 0 deletions
-
75partner_contact_department/README.rst
-
9partner_contact_department/__init__.py
-
29partner_contact_department/__openerp__.py
-
93partner_contact_department/i18n/es.po
-
9partner_contact_department/models/__init__.py
-
38partner_contact_department/models/res_partner.py
-
5partner_contact_department/security/ir.model.access.csv
-
BINpartner_contact_department/static/description/icon.png
-
47partner_contact_department/views/res_partner_department_view.xml
-
49partner_contact_department/views/res_partner_view.xml
@ -0,0 +1,75 @@ |
|||||
|
.. 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 |
||||
|
|
||||
|
================== |
||||
|
Contact department |
||||
|
================== |
||||
|
|
||||
|
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. |
||||
|
|
||||
|
Configuration |
||||
|
============= |
||||
|
|
||||
|
To configure departments, you need to: |
||||
|
|
||||
|
* Go to *Sales > Configuration > Address Book > Departments*. |
||||
|
|
||||
|
Usage |
||||
|
===== |
||||
|
|
||||
|
To use this module, you need to: |
||||
|
|
||||
|
* Go to any partner's form. |
||||
|
* You will find the new *Department* field below *Job Position*. |
||||
|
|
||||
|
.. 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/8.0 |
||||
|
|
||||
|
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:%20 |
||||
|
partner_contact_department%0Aversion:%20 |
||||
|
8.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. |
||||
|
|
||||
|
Credits |
||||
|
======= |
||||
|
|
||||
|
Images |
||||
|
------ |
||||
|
|
||||
|
* `Antiun Ingeniería S.L. <http://www.antiun.com>`_: Icon. |
||||
|
|
||||
|
Contributors |
||||
|
------------ |
||||
|
|
||||
|
* Pedro M. Baeza <pedro.baeza@serviciosbaeza.com> |
||||
|
* Antonio Espinosa <antonioea@antiun.com> |
||||
|
* Rafael Blasco <rafabn@antiun.com> |
||||
|
* Jairo Llopis <yajo.sk8@gmail.com> |
||||
|
|
||||
|
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. |
@ -0,0 +1,9 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Copyright (c) 2014 Serv. Tecnol. Avanzados (http://www.serviciosbaeza.com) |
||||
|
# Pedro M. Baeza <pedro.baeza@serviciosbaeza.com> |
||||
|
# Copyright (c) 2015 Antiun Ingeniería S.L. (http://www.antiun.com) |
||||
|
# Antonio Espinosa <antonioea@antiun.com> |
||||
|
# © 2015 Antiun Ingeniería S.L. - Jairo Llopis |
||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
||||
|
|
||||
|
from . import models |
@ -0,0 +1,29 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Copyright (c) 2014 Serv. Tecnol. Avanzados (http://www.serviciosbaeza.com) |
||||
|
# Pedro M. Baeza <pedro.baeza@serviciosbaeza.com> |
||||
|
# Copyright (c) 2015 Antiun Ingeniería S.L. (http://www.antiun.com) |
||||
|
# Antonio Espinosa <antonioea@antiun.com> |
||||
|
# © 2015 Antiun Ingeniería S.L. - Jairo Llopis |
||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
||||
|
|
||||
|
{ |
||||
|
'name': 'Contact department', |
||||
|
"summary": "Assign contacts to departments", |
||||
|
'version': '8.0.1.0.0', |
||||
|
'category': 'Customer Relationship Management', |
||||
|
'author': 'Serv. Tecnol. Avanzados - Pedro M. Baeza, ' |
||||
|
'Antiun Ingeniería S.L., ' |
||||
|
"Odoo Community Association (OCA)", |
||||
|
"license": "AGPL-3", |
||||
|
'website': 'http://www.antiun.com', |
||||
|
"application": False, |
||||
|
'depends': [ |
||||
|
'base', |
||||
|
], |
||||
|
'data': [ |
||||
|
'security/ir.model.access.csv', |
||||
|
'views/res_partner_department_view.xml', |
||||
|
'views/res_partner_view.xml', |
||||
|
], |
||||
|
"installable": True, |
||||
|
} |
@ -0,0 +1,93 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * crm_partner_department |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 8.0\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2015-12-21 16:54+0100\n" |
||||
|
"PO-Revision-Date: 2015-12-21 16:55+0100\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: \n" |
||||
|
"Language: es\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||
|
"Plural-Forms: \n" |
||||
|
"X-Generator: Poedit 1.8.5\n" |
||||
|
|
||||
|
#. module: partner_contact_department |
||||
|
#: field:res.partner.department,child_ids:0 |
||||
|
msgid "Child departments" |
||||
|
msgstr "Departamentos hijo" |
||||
|
|
||||
|
#. module: partner_contact_department |
||||
|
#: field:res.partner.department,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Creado por" |
||||
|
|
||||
|
#. module: partner_contact_department |
||||
|
#: field:res.partner.department,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Creado en" |
||||
|
|
||||
|
#. module: partner_contact_department |
||||
|
#: model:ir.model,name:partner_contact_department.model_res_partner_department |
||||
|
#: view:res.partner:partner_contact_department.view_partner_form_department |
||||
|
#: view:res.partner:partner_contact_department.view_res_partner_filter_department |
||||
|
#: field:res.partner,department_id:0 |
||||
|
msgid "Department" |
||||
|
msgstr "Departamento" |
||||
|
|
||||
|
#. 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 |
||||
|
#: view:res.partner.department:partner_contact_department.res_partner_department_tree_view |
||||
|
msgid "Departments" |
||||
|
msgstr "Departamentos" |
||||
|
|
||||
|
#. module: partner_contact_department |
||||
|
#: field:res.partner.department,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: partner_contact_department |
||||
|
#: field:res.partner.department,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Última actualización por" |
||||
|
|
||||
|
#. module: partner_contact_department |
||||
|
#: field:res.partner.department,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Última actualización en" |
||||
|
|
||||
|
#. module: partner_contact_department |
||||
|
#: field:res.partner.department,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Nombre" |
||||
|
|
||||
|
#. module: partner_contact_department |
||||
|
#: field:res.partner.department,parent_id:0 |
||||
|
msgid "Parent department" |
||||
|
msgstr "Departamento padre" |
||||
|
|
||||
|
#. module: partner_contact_department |
||||
|
#: field:res.partner.department,parent_left:0 |
||||
|
msgid "Parent left" |
||||
|
msgstr "Padre izquierdo" |
||||
|
|
||||
|
#. module: partner_contact_department |
||||
|
#: field:res.partner.department,parent_right:0 |
||||
|
msgid "Parent right" |
||||
|
msgstr "Padre derecho" |
||||
|
|
||||
|
#. module: partner_contact_department |
||||
|
#: model:ir.model,name:partner_contact_department.model_res_partner |
||||
|
msgid "Partner" |
||||
|
msgstr "Empresa" |
||||
|
|
||||
|
#. module: partner_contact_department |
||||
|
#: view:res.partner:partner_contact_department.view_res_partner_filter_department |
||||
|
msgid "Salesperson" |
||||
|
msgstr "Comercial" |
@ -0,0 +1,9 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Copyright (c) 2014 Serv. Tecnol. Avanzados (http://www.serviciosbaeza.com) |
||||
|
# Pedro M. Baeza <pedro.baeza@serviciosbaeza.com> |
||||
|
# Copyright (c) 2015 Antiun Ingeniería S.L. (http://www.antiun.com) |
||||
|
# Antonio Espinosa <antonioea@antiun.com> |
||||
|
# © 2015 Antiun Ingeniería S.L. - Jairo Llopis |
||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
||||
|
|
||||
|
from . import res_partner |
@ -0,0 +1,38 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Copyright (c) 2014 Serv. Tecnol. Avanzados (http://www.serviciosbaeza.com) |
||||
|
# Pedro M. Baeza <pedro.baeza@serviciosbaeza.com> |
||||
|
# Copyright (c) 2015 Antiun Ingeniería S.L. (http://www.antiun.com) |
||||
|
# Antonio Espinosa <antonioea@antiun.com> |
||||
|
# © 2015 Antiun Ingeniería S.L. - Jairo Llopis |
||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
||||
|
|
||||
|
from openerp import models, fields |
||||
|
|
||||
|
|
||||
|
class ResPartner(models.Model): |
||||
|
_inherit = 'res.partner' |
||||
|
|
||||
|
department_id = fields.Many2one( |
||||
|
"res.partner.department", |
||||
|
"Department", |
||||
|
oldname="department") |
||||
|
|
||||
|
|
||||
|
class ResPartnerDepartment(models.Model): |
||||
|
_name = 'res.partner.department' |
||||
|
_order = "parent_left" |
||||
|
_parent_order = "name" |
||||
|
_parent_store = True |
||||
|
_description = "Department" |
||||
|
|
||||
|
name = fields.Char(required=True, translate=True) |
||||
|
parent_id = fields.Many2one( |
||||
|
"res.partner.department", |
||||
|
"Parent department") |
||||
|
child_ids = fields.One2many( |
||||
|
"res.partner.department", |
||||
|
"parent_id", |
||||
|
"Child departments", |
||||
|
oldname="children") |
||||
|
parent_left = fields.Integer(index=True) |
||||
|
parent_right = fields.Integer(index=True) |
@ -0,0 +1,5 @@ |
|||||
|
"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" |
||||
|
"access_res_partner_department_public","res_partner_department group_public","model_res_partner_department","base.group_public",1,0,0,0 |
||||
|
"access_res_partner_department_portal","res_partner_department group_portal","model_res_partner_department","base.group_portal",1,0,0,0 |
||||
|
"access_res_partner_department_group_partner_manager","res_partner_department group_partner_manager","model_res_partner_department","base.group_partner_manager",1,1,1,1 |
||||
|
"access_res_partner_department_group_user","res_partner_department group_user","model_res_partner_department","base.group_user",1,0,0,0 |
After Width: 128 | Height: 128 | Size: 22 KiB |
@ -0,0 +1,47 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<!-- © 2014 Serv. Tecnol. Avanzados - Pedro M. Baeza |
||||
|
© 2015 Antiun Ingeniería S.L. - Antonio Espinosa |
||||
|
© 2015 Antiun Ingeniería S.L. - Jairo Llopis |
||||
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). --> |
||||
|
|
||||
|
<openerp> |
||||
|
<data> |
||||
|
|
||||
|
<record id="res_partner_department_action" model="ir.actions.act_window"> |
||||
|
<field name="name">Departments</field> |
||||
|
<field name="res_model">res.partner.department</field> |
||||
|
<field name="view_type">form</field> |
||||
|
<field name="view_mode">tree</field> |
||||
|
</record> |
||||
|
|
||||
|
<record id="res_partner_department_tree_view" model="ir.ui.view"> |
||||
|
<field name="name">CRM department tree</field> |
||||
|
<field name="model">res.partner.department</field> |
||||
|
<field name="arch" type="xml"> |
||||
|
<tree string="Departments" editable="top"> |
||||
|
<field name="name"/> |
||||
|
<field name="parent_id"/> |
||||
|
</tree> |
||||
|
</field> |
||||
|
</record> |
||||
|
|
||||
|
<record id="res_partner_department_form_view" model="ir.ui.view"> |
||||
|
<field name="name">CRM department form</field> |
||||
|
<field name="model">res.partner.department</field> |
||||
|
<field name="arch" type="xml"> |
||||
|
<form> |
||||
|
<group> |
||||
|
<field name="name"/> |
||||
|
<field name="parent_id"/> |
||||
|
<field name="child_ids"/> |
||||
|
</group> |
||||
|
</form> |
||||
|
</field> |
||||
|
</record> |
||||
|
|
||||
|
<menuitem action="res_partner_department_action" |
||||
|
id="menu_res_partner_department" |
||||
|
parent="base.menu_config_address_book"/> |
||||
|
|
||||
|
</data> |
||||
|
</openerp> |
@ -0,0 +1,49 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<!-- © 2014 Serv. Tecnol. Avanzados - Pedro M. Baeza |
||||
|
© 2015 Antiun Ingeniería S.L. - Antonio Espinosa |
||||
|
© 2015 Antiun Ingeniería S.L. - Jairo Llopis |
||||
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). --> |
||||
|
|
||||
|
<openerp> |
||||
|
<data> |
||||
|
|
||||
|
<record model="ir.ui.view" id="view_partner_form_department"> |
||||
|
<field name="name">Partner form with department</field> |
||||
|
<field name="model">res.partner</field> |
||||
|
<field name="inherit_id" ref="base.view_partner_form"/> |
||||
|
<field name="arch" type="xml"> |
||||
|
<xpath expr="//sheet/group//field[@name='function']" position="after"> |
||||
|
<field name="department_id" |
||||
|
placeholder="Department" |
||||
|
attrs="{'invisible': [('is_company','=', True)]}" |
||||
|
options='{"no_open": True}'/> |
||||
|
</xpath> |
||||
|
<xpath expr="//field[@name='child_ids']/form//field[@name='function']" |
||||
|
position="after"> |
||||
|
<field name="is_company" invisible="True"/> |
||||
|
<field name="department_id" |
||||
|
placeholder="Department" |
||||
|
attrs="{'invisible': [('is_company','=', True)]}" |
||||
|
options='{"no_open": True}'/> |
||||
|
</xpath> |
||||
|
</field> |
||||
|
</record> |
||||
|
|
||||
|
<record model="ir.ui.view" id="view_res_partner_filter_department"> |
||||
|
<field name="name">Partner search with department</field> |
||||
|
<field name="model">res.partner</field> |
||||
|
<field name="inherit_id" ref="base.view_res_partner_filter"/> |
||||
|
<field name="arch" type="xml"> |
||||
|
<field name="category_id" position="after"> |
||||
|
<field name="department_id"/> |
||||
|
</field> |
||||
|
<filter string="Salesperson" position="after"> |
||||
|
<filter string="Department" |
||||
|
domain="[('is_company', '=', False)]" |
||||
|
context="{'group_by': 'department_id'}"/> |
||||
|
</filter> |
||||
|
</field> |
||||
|
</record> |
||||
|
|
||||
|
</data> |
||||
|
</openerp> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue