Browse Source
Prepare for OCA:
Prepare for OCA:
- Renamed crm_job_position to partner_contact_job_position. - Drop all CRM dependencies. - Improve README. - Add form view. - Rename one model. - Rename some fields. - Reorder module. - Remove pot. - Update translation. - Use new-style short license and copyright headers.pull/328/head
Jairo Llopis
9 years ago
committed by
cubells
10 changed files with 348 additions and 0 deletions
-
74partner_contact_job_position/README.rst
-
9partner_contact_job_position/__init__.py
-
29partner_contact_job_position/__openerp__.py
-
101partner_contact_job_position/i18n/es.po
-
9partner_contact_job_position/models/__init__.py
-
38partner_contact_job_position/models/res_partner.py
-
5partner_contact_job_position/security/ir.model.access.csv
-
BINpartner_contact_job_position/static/description/icon.png
-
42partner_contact_job_position/views/res_partner_job_position_view.xml
-
41partner_contact_job_position/views/res_partner_view.xml
@ -0,0 +1,74 @@ |
|||||
|
.. 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 job position |
||||
|
==================== |
||||
|
|
||||
|
This module extends the functionality of partners job position to support |
||||
|
having them categorized in tree form and allow you to choose a categorized job |
||||
|
position for your contacts in addition to the current custom string for job |
||||
|
position. |
||||
|
|
||||
|
Configuration |
||||
|
============= |
||||
|
|
||||
|
To configure job positions, you need to: |
||||
|
|
||||
|
* Go to *Sales > Configuration > Address Book > Job Positions*. |
||||
|
|
||||
|
Usage |
||||
|
===== |
||||
|
|
||||
|
To use this module, you need to: |
||||
|
|
||||
|
* Go to any partner's form. |
||||
|
* Use the new *Categorized job position* field. |
||||
|
|
||||
|
.. 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 |
||||
|
{module_name}%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": "Partner job position", |
||||
|
"summary": "Categorize job positions for contacts", |
||||
|
"version": "8.0.1.0.0", |
||||
|
'category': 'Customer Relationship Management', |
||||
|
"website": "http://www.antiun.com", |
||||
|
'author': 'Serv. Tecnolog. Avanzados - Pedro M. Baeza, ' |
||||
|
'Antiun Ingeniería S.L., ' |
||||
|
"Odoo Community Association (OCA)", |
||||
|
"license": "AGPL-3", |
||||
|
"application": False, |
||||
|
"installable": True, |
||||
|
"depends": [ |
||||
|
"base", |
||||
|
], |
||||
|
"data": [ |
||||
|
'security/ir.model.access.csv', |
||||
|
'views/res_partner_job_position_view.xml', |
||||
|
'views/res_partner_view.xml', |
||||
|
], |
||||
|
} |
@ -0,0 +1,101 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * crm_job_position |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 8.0\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2015-12-18 18:22+0100\n" |
||||
|
"PO-Revision-Date: 2015-12-18 18:22+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_job_position |
||||
|
#: field:res.partner,job_position_id:0 |
||||
|
msgid "Categorized job position" |
||||
|
msgstr "Puesto de trabajo categorizado" |
||||
|
|
||||
|
#. module: partner_contact_job_position |
||||
|
#: field:res.partner.job_position,child_ids:0 |
||||
|
msgid "Children" |
||||
|
msgstr "Hijos" |
||||
|
|
||||
|
#. module: partner_contact_job_position |
||||
|
#: field:res.partner.job_position,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Creado por" |
||||
|
|
||||
|
#. module: partner_contact_job_position |
||||
|
#: field:res.partner.job_position,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Creado en" |
||||
|
|
||||
|
#. module: partner_contact_job_position |
||||
|
#: field:res.partner.job_position,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: partner_contact_job_position |
||||
|
#: model:ir.actions.act_window,name:partner_contact_job_position.res_partner_job_position_action |
||||
|
#: model:ir.ui.menu,name:partner_contact_job_position.menu_res_partner_job_position |
||||
|
msgid "Job Positions" |
||||
|
msgstr "Puestos de trabajo" |
||||
|
|
||||
|
#. module: partner_contact_job_position |
||||
|
#: model:ir.model,name:partner_contact_job_position.model_res_partner_job_position |
||||
|
#: view:res.partner:partner_contact_job_position.view_res_partner_filter_job_position |
||||
|
msgid "Job position" |
||||
|
msgstr "Puesto de trabajo" |
||||
|
|
||||
|
#. module: partner_contact_job_position |
||||
|
#: view:res.partner.job_position:partner_contact_job_position.res_partner_job_position_form_view |
||||
|
#: view:res.partner.job_position:partner_contact_job_position.res_partner_job_position_tree_view |
||||
|
msgid "Job positions" |
||||
|
msgstr "Puestos de trabajo" |
||||
|
|
||||
|
#. module: partner_contact_job_position |
||||
|
#: field:res.partner.job_position,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Última actualización por" |
||||
|
|
||||
|
#. module: partner_contact_job_position |
||||
|
#: field:res.partner.job_position,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Última actualización en" |
||||
|
|
||||
|
#. module: partner_contact_job_position |
||||
|
#: field:res.partner.job_position,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Nombre" |
||||
|
|
||||
|
#. module: partner_contact_job_position |
||||
|
#: field:res.partner.job_position,parent_id:0 |
||||
|
msgid "Parent" |
||||
|
msgstr "Padre" |
||||
|
|
||||
|
#. module: partner_contact_job_position |
||||
|
#: field:res.partner.job_position,parent_left:0 |
||||
|
msgid "Parent left" |
||||
|
msgstr "Padre izquierdo" |
||||
|
|
||||
|
#. module: partner_contact_job_position |
||||
|
#: field:res.partner.job_position,parent_right:0 |
||||
|
msgid "Parent right" |
||||
|
msgstr "Padre derecho" |
||||
|
|
||||
|
#. module: partner_contact_job_position |
||||
|
#: model:ir.model,name:partner_contact_job_position.model_res_partner |
||||
|
msgid "Partner" |
||||
|
msgstr "Empresa" |
||||
|
|
||||
|
#. module: partner_contact_job_position |
||||
|
#: view:res.partner:partner_contact_job_position.view_res_partner_filter_job_position |
||||
|
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' |
||||
|
|
||||
|
job_position_id = fields.Many2one( |
||||
|
"res.partner.job_position", |
||||
|
"Categorized job position", |
||||
|
oldname="job_position") |
||||
|
|
||||
|
|
||||
|
class ResPartnerJobPosition(models.Model): |
||||
|
_name = "res.partner.job_position" |
||||
|
_order = "parent_left" |
||||
|
_parent_order = "name" |
||||
|
_parent_store = True |
||||
|
_description = "Job position" |
||||
|
|
||||
|
name = fields.Char(required=True, translate=True) |
||||
|
parent_id = fields.Many2one( |
||||
|
"res.partner.job_position", |
||||
|
"Parent") |
||||
|
child_ids = fields.One2many( |
||||
|
"res.partner.job_position", |
||||
|
"parent_id", |
||||
|
"Children", |
||||
|
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_job_position_public","res_partner_job_position group_public","model_res_partner_job_position","base.group_public",1,0,0,0 |
||||
|
"access_res_partner_job_position_portal","res_partner_job_position group_portal","model_res_partner_job_position","base.group_portal",1,0,0,0 |
||||
|
"access_res_partner_job_position_group_partner_manager","res_partner_job_position group_partner_manager","model_res_partner_job_position","base.group_partner_manager",1,1,1,1 |
||||
|
"access_res_partner_job_position_group_user","res_partner_job_position group_user","model_res_partner_job_position","base.group_user",1,0,0,0 |
After Width: 128 | Height: 128 | Size: 22 KiB |
@ -0,0 +1,42 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<openerp> |
||||
|
<data> |
||||
|
|
||||
|
<record id="res_partner_job_position_action" model="ir.actions.act_window"> |
||||
|
<field name="name">Job Positions</field> |
||||
|
<field name="res_model">res.partner.job_position</field> |
||||
|
<field name="view_type">form</field> |
||||
|
<field name="view_mode">tree</field> |
||||
|
</record> |
||||
|
|
||||
|
<record id="res_partner_job_position_tree_view" model="ir.ui.view"> |
||||
|
<field name="name">Job position tree</field> |
||||
|
<field name="model">res.partner.job_position</field> |
||||
|
<field name="arch" type="xml"> |
||||
|
<tree string="Job positions" editable="top"> |
||||
|
<field name="name"/> |
||||
|
<field name="parent_id"/> |
||||
|
</tree> |
||||
|
</field> |
||||
|
</record> |
||||
|
|
||||
|
<record id="res_partner_job_position_form_view" model="ir.ui.view"> |
||||
|
<field name="name">Job position form</field> |
||||
|
<field name="model">res.partner.job_position</field> |
||||
|
<field name="arch" type="xml"> |
||||
|
<form string="Job positions"> |
||||
|
<group> |
||||
|
<field name="name"/> |
||||
|
<field name="parent_id"/> |
||||
|
<field name="child_ids"/> |
||||
|
</group> |
||||
|
</form> |
||||
|
</field> |
||||
|
</record> |
||||
|
|
||||
|
<menuitem action="res_partner_job_position_action" |
||||
|
id="menu_res_partner_job_position" |
||||
|
parent="base.menu_config_address_book"/> |
||||
|
|
||||
|
</data> |
||||
|
</openerp> |
@ -0,0 +1,41 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<openerp> |
||||
|
<data> |
||||
|
|
||||
|
<record model="ir.ui.view" id="view_partner_form_job_position"> |
||||
|
<field name="name">Partner form with job position</field> |
||||
|
<field name="model">res.partner</field> |
||||
|
<field name="inherit_id" ref="base.view_partner_form"/> |
||||
|
<field name="arch" type="xml"> |
||||
|
<field name="function" position="before"> |
||||
|
<field name="job_position_id" |
||||
|
attrs="{'invisible': [('is_company','=', True)]}" |
||||
|
options='{"no_open": True}'/> |
||||
|
</field> |
||||
|
<xpath expr="//field[@name='child_ids']/form//field[@name='function']" |
||||
|
position="before"> |
||||
|
<field name="job_position_id" |
||||
|
attrs="{'invisible': [('is_company','=', True)]}" |
||||
|
options='{"no_open": True}'/> |
||||
|
</xpath> |
||||
|
</field> |
||||
|
</record> |
||||
|
|
||||
|
<record model="ir.ui.view" id="view_res_partner_filter_job_position"> |
||||
|
<field name="name">Partner search with job position</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="job_position_id"/> |
||||
|
</field> |
||||
|
<filter string="Salesperson" position="after"> |
||||
|
<filter string="Job position" |
||||
|
domain="[('is_company','=', True)]" |
||||
|
context="{'group_by': 'job_position_id'}"/> |
||||
|
</filter> |
||||
|
</field> |
||||
|
</record> |
||||
|
|
||||
|
</data> |
||||
|
</openerp> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue