Merge lp:~avanzosc/openerp-spain/7.0_l10n_es_partner_mercantil into lp:~openerp-spain-team/openerp-spain/7.0

Proposed by Oihane (Avanzosc)
Status: Merged
Merged at revision: 480
Proposed branch: lp:~avanzosc/openerp-spain/7.0_l10n_es_partner_mercantil
Merge into: lp:~openerp-spain-team/openerp-spain/7.0
Diff against target: 749 lines (+261/-319)
9 files modified
l10n_es_partner_mercantil/__init__.py (+3/-4)
l10n_es_partner_mercantil/__openerp__.py (+24/-28)
l10n_es_partner_mercantil/i18n/ca.po (+43/-65)
l10n_es_partner_mercantil/i18n/es.po (+43/-65)
l10n_es_partner_mercantil/i18n/gl.po (+47/-70)
l10n_es_partner_mercantil/i18n/l10n_es_partner_mercantil.pot (+40/-55)
l10n_es_partner_mercantil/models/__init__.py (+23/-0)
l10n_es_partner_mercantil/models/partner_es.py (+14/-14)
l10n_es_partner_mercantil/views/partner_es_view.xml (+24/-18)
To merge this branch: bzr merge lp:~avanzosc/openerp-spain/7.0_l10n_es_partner_mercantil
Reviewer Review Type Date Requested Status
Pedro Manuel Baeza code review Approve
Review via email: mp+226326@code.launchpad.net

Description of the change

Se ha migrado a versión 7.0 el modulo l10n_es_partner_mercantil

To post a comment you must log in.
Revision history for this message
Pedro Manuel Baeza (pedro.baeza) wrote :

Buenas, Oihane, un par de cosas a solucionar:

- Haría falta actualizar el nombre del módulo (l10n_ES_partner_mercantil) para el resto de idiomas (es, ca y gl).
- La información mercantil sólo habría que mostrarla si se tiene marcada la casilla de "Es compañía" en el partner.

Gracias.

Un saludo.

review: Needs Fixing (code review)
480. By Oihane (Avanzosc)

[MOD] <l10n_es_partner_mercantil> Cambiados ficheros de traducciones y la solapa de la informacion solo se muestra cuando "es compañia" está marcado

Revision history for this message
Oihane (Avanzosc) (oihanecruce) wrote :

Cambios realizados, lo tenéis listo para review

Revision history for this message
Pedro Manuel Baeza (pedro.baeza) wrote :

Gracias por los cambios

review: Approve (code review)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== renamed directory '___unported__/l10n_es_partner_mercantil' => 'l10n_es_partner_mercantil'
=== modified file 'l10n_es_partner_mercantil/__init__.py'
--- ___unported__/l10n_es_partner_mercantil/__init__.py 2011-08-29 15:11:11 +0000
+++ l10n_es_partner_mercantil/__init__.py 2014-07-11 08:57:19 +0000
@@ -6,8 +6,8 @@
6# $Id$6# $Id$
7#7#
8# This program is free software: you can redistribute it and/or modify8# This program is free software: you can redistribute it and/or modify
9# it under the terms of the GNU Affero General Public License as published by9# it under the terms of the GNU Affero General Public License as published
10# the Free Software Foundation, either version 3 of the License, or10# by the Free Software Foundation, either version 3 of the License, or
11# (at your option) any later version.11# (at your option) any later version.
12#12#
13# This program is distributed in the hope that it will be useful,13# This program is distributed in the hope that it will be useful,
@@ -20,5 +20,4 @@
20#20#
21##############################################################################21##############################################################################
2222
23import partner_es23from . import models
24
2524
=== modified file 'l10n_es_partner_mercantil/__openerp__.py'
--- ___unported__/l10n_es_partner_mercantil/__openerp__.py 2013-01-28 10:29:06 +0000
+++ l10n_es_partner_mercantil/__openerp__.py 2014-07-11 08:57:19 +0000
@@ -6,8 +6,8 @@
6# $Id$6# $Id$
7#7#
8# This program is free software: you can redistribute it and/or modify8# This program is free software: you can redistribute it and/or modify
9# it under the terms of the GNU Affero General Public License as published by9# it under the terms of the GNU Affero General Public License as published
10# the Free Software Foundation, either version 3 of the License, or10# by the Free Software Foundation, either version 3 of the License, or
11# (at your option) any later version.11# (at your option) any later version.
12#12#
13# This program is distributed in the hope that it will be useful,13# This program is distributed in the hope that it will be useful,
@@ -21,31 +21,27 @@
21##############################################################################21##############################################################################
2222
23{23{
24 "name" : "Partner Mercantil",24 "name": "Partner Mercantil",
25 "version" : "1.0",25 "version": "1.0",
26 "author" : "Spanish Localization Team",26 "author": "Spanish Localization Team",
27 "website" : "https://launchpad.net/openerp-spain",27 "website": "https://launchpad.net/openerp-spain",
28 "category" : "Localisation/Europe",28 "category": "Localisation/Europe",
29 "description": """Añade los siguientes campos en la ficha de Empresa:29 "description": """
30 * Libro30 Añade los siguientes campos en la ficha de Empresa:
31 * Registro Mercantil31 * Libro
32 * Hoja32 * Registro Mercantil
33 * Folio33 * Hoja
34 * Seccion34 * Folio
35 * Tomo35 * Seccion
36""",36 * Tomo
37 "license" : "AGPL-3",37 """,
38 "depends" : [38 "license": "AGPL-3",
39 "depends": [
39 "base",40 "base",
40 ],41 ],
41 "init_xml" : [],42 "data": [
42 "update_xml" : [43 "views/partner_es_view.xml",
43 "partner_es_view.xml",44 ],
44 ],45 "active": True,
45 "active": False,46 "installable": True
46 "installable": False
47}47}
48
49
50
51
5248
=== modified file 'l10n_es_partner_mercantil/i18n/ca.po'
--- ___unported__/l10n_es_partner_mercantil/i18n/ca.po 2014-03-04 08:27:58 +0000
+++ l10n_es_partner_mercantil/i18n/ca.po 2014-07-11 08:57:19 +0000
@@ -1,86 +1,64 @@
1# Translation of OpenERP Server.1# Translation of OpenERP Server.
2# This file contains the translation of the following modules:2# This file contains the translation of the following modules:
3# * l10n_ES_partner_mercantil3# * l10n_es_partner_mercantil
4#4#
5msgid ""5msgid ""
6msgstr ""6msgstr ""
7"Project-Id-Version: OpenERP Server 5.0.1\n"7"Project-Id-Version: OpenERP Server 7.0\n"
8"Report-Msgid-Bugs-To: support@openerp.com\n"8"Report-Msgid-Bugs-To: \n"
9"POT-Creation-Date: 2009-07-22 08:22+0000\n"9"POT-Creation-Date: 2014-07-11 08:52+0000\n"
10"PO-Revision-Date: 2013-10-10 15:00+0000\n"10"PO-Revision-Date: 2014-07-11 08:52+0000\n"
11"Last-Translator: <>\n"11"Last-Translator: <>\n"
12"Language-Team: \n"12"Language-Team: \n"
13"MIME-Version: 1.0\n"13"MIME-Version: 1.0\n"
14"Content-Type: text/plain; charset=UTF-8\n"14"Content-Type: text/plain; charset=UTF-8\n"
15"Content-Transfer-Encoding: 8bit\n"15"Content-Transfer-Encoding: \n"
16"X-Launchpad-Export-Date: 2014-03-04 08:27+0000\n"16"Plural-Forms: \n"
17"X-Generator: Launchpad (build 16948)\n"17
1818#. module: l10n_es_partner_mercantil
19#. module: l10n_ES_partner_mercantil19#: field:res.partner,es_libro:0
20#: constraint:ir.ui.view:020msgid "Book"
21msgid "Invalid XML for View Architecture!"21msgstr "Llibre"
22msgstr "XML invàlid per a la definició de la vista!"22
2323#. module: l10n_es_partner_mercantil
24#. module: l10n_ES_partner_mercantil24#: view:res.partner:0
25msgid "Commercial Info"
26msgstr "Informació Mercantil"
27
28#. module: l10n_es_partner_mercantil
25#: field:res.partner,es_registro_mercantil:029#: field:res.partner,es_registro_mercantil:0
26msgid "Commercial Registry"30msgid "Commercial Registry"
27msgstr "Registre Mercantil"31msgstr "Registre Mercantil"
2832
29#. module: l10n_ES_partner_mercantil33#. module: l10n_es_partner_mercantil
34#: view:res.partner:0
35msgid "Internal Notes"
36msgstr "Internal Notes"
37
38#. module: l10n_es_partner_mercantil
39#: field:res.partner,es_folio:0
40msgid "Page"
41msgstr "Foli"
42
43#. module: l10n_es_partner_mercantil
44#: code:_description:0
45#: model:ir.model,name:l10n_es_partner_mercantil.model_res_partner
46#, python-format
47msgid "Partner"
48msgstr "Empresa"
49
50#. module: l10n_es_partner_mercantil
30#: field:res.partner,es_seccion:051#: field:res.partner,es_seccion:0
31msgid "Section"52msgid "Section"
32msgstr "Secció"53msgstr "Secció"
3354
34#. module: l10n_ES_partner_mercantil55#. module: l10n_es_partner_mercantil
35#: view:res.partner:056#: field:res.partner,es_hoja:0
36msgid "Notes"57msgid "Sheet"
37msgstr "Notes"58msgstr "Full"
3859
39#. module: l10n_ES_partner_mercantil60#. module: l10n_es_partner_mercantil
40#: field:res.partner,es_folio:0
41msgid "Page"
42msgstr "Foli"
43
44#. module: l10n_ES_partner_mercantil
45#: field:res.partner,es_tomo:061#: field:res.partner,es_tomo:0
46msgid "Volume"62msgid "Volume"
47msgstr "Volum"63msgstr "Volum"
4864
49#. module: l10n_ES_partner_mercantil
50#: model:ir.module.module,description:l10n_ES_partner_mercantil.module_meta_information
51msgid ""
52"Añade los siguientes campos en la ficha de Empresa:\n"
53" * Libro\n"
54" * Registro Mercantil\n"
55" * Hoja\n"
56" * Folio\n"
57" * Seccion\n"
58" * Tomo\n"
59msgstr ""
60"Afegeix els següents camps a la fitxa d'empresa:\n"
61" * Llibre\n"
62" * Registre Mercantil\n"
63" * Full\n"
64" * Foli\n"
65" * Secció\n"
66" * Tom\n"
67
68#. module: l10n_ES_partner_mercantil
69#: field:res.partner,es_libro:0
70msgid "Book"
71msgstr "Llibre"
72
73#. module: l10n_ES_partner_mercantil
74#: field:res.partner,es_hoja:0
75msgid "Sheet"
76msgstr "Full"
77
78#. module: l10n_ES_partner_mercantil
79#: model:ir.module.module,shortdesc:l10n_ES_partner_mercantil.module_meta_information
80msgid "Partner Mercantil"
81msgstr "Partner Mercantil"
82
83#. module: l10n_ES_partner_mercantil
84#: view:res.partner:0
85msgid "Commercial Info"
86msgstr "Informació Mercantil"
8765
=== modified file 'l10n_es_partner_mercantil/i18n/es.po'
--- ___unported__/l10n_es_partner_mercantil/i18n/es.po 2014-03-04 08:27:58 +0000
+++ l10n_es_partner_mercantil/i18n/es.po 2014-07-11 08:57:19 +0000
@@ -1,86 +1,64 @@
1# Translation of OpenERP Server.1# Translation of OpenERP Server.
2# This file contains the translation of the following modules:2# This file contains the translation of the following modules:
3# * l10n_ES_partner_mercantil3# * l10n_es_partner_mercantil
4#4#
5msgid ""5msgid ""
6msgstr ""6msgstr ""
7"Project-Id-Version: OpenERP Server 5.0.1\n"7"Project-Id-Version: OpenERP Server 7.0\n"
8"Report-Msgid-Bugs-To: support@openerp.com\n"8"Report-Msgid-Bugs-To: \n"
9"POT-Creation-Date: 2009-07-22 08:22+0000\n"9"POT-Creation-Date: 2014-07-11 08:51+0000\n"
10"PO-Revision-Date: 2013-10-10 15:00+0000\n"10"PO-Revision-Date: 2014-07-11 08:51+0000\n"
11"Last-Translator: <>\n"11"Last-Translator: <>\n"
12"Language-Team: \n"12"Language-Team: \n"
13"MIME-Version: 1.0\n"13"MIME-Version: 1.0\n"
14"Content-Type: text/plain; charset=UTF-8\n"14"Content-Type: text/plain; charset=UTF-8\n"
15"Content-Transfer-Encoding: 8bit\n"15"Content-Transfer-Encoding: \n"
16"X-Launchpad-Export-Date: 2014-03-04 08:27+0000\n"16"Plural-Forms: \n"
17"X-Generator: Launchpad (build 16948)\n"17
1818#. module: l10n_es_partner_mercantil
19#. module: l10n_ES_partner_mercantil19#: field:res.partner,es_libro:0
20#: constraint:ir.ui.view:020msgid "Book"
21msgid "Invalid XML for View Architecture!"21msgstr "Libro"
22msgstr "¡XML inválido para la definición de la vista!"22
2323#. module: l10n_es_partner_mercantil
24#. module: l10n_ES_partner_mercantil24#: view:res.partner:0
25msgid "Commercial Info"
26msgstr "Información Mercantil"
27
28#. module: l10n_es_partner_mercantil
25#: field:res.partner,es_registro_mercantil:029#: field:res.partner,es_registro_mercantil:0
26msgid "Commercial Registry"30msgid "Commercial Registry"
27msgstr "Registro Mercantil"31msgstr "Registro Mercantil"
2832
29#. module: l10n_ES_partner_mercantil33#. module: l10n_es_partner_mercantil
34#: view:res.partner:0
35msgid "Internal Notes"
36msgstr "Notas internas"
37
38#. module: l10n_es_partner_mercantil
39#: field:res.partner,es_folio:0
40msgid "Page"
41msgstr "Folio"
42
43#. module: l10n_es_partner_mercantil
44#: code:_description:0
45#: model:ir.model,name:l10n_es_partner_mercantil.model_res_partner
46#, python-format
47msgid "Partner"
48msgstr "Empresa"
49
50#. module: l10n_es_partner_mercantil
30#: field:res.partner,es_seccion:051#: field:res.partner,es_seccion:0
31msgid "Section"52msgid "Section"
32msgstr "Sección"53msgstr "Sección"
3354
34#. module: l10n_ES_partner_mercantil55#. module: l10n_es_partner_mercantil
35#: view:res.partner:056#: field:res.partner,es_hoja:0
36msgid "Notes"57msgid "Sheet"
37msgstr "Notas"58msgstr "Hoja"
3859
39#. module: l10n_ES_partner_mercantil60#. module: l10n_es_partner_mercantil
40#: field:res.partner,es_folio:0
41msgid "Page"
42msgstr "Folio"
43
44#. module: l10n_ES_partner_mercantil
45#: field:res.partner,es_tomo:061#: field:res.partner,es_tomo:0
46msgid "Volume"62msgid "Volume"
47msgstr "Tomo"63msgstr "Tomo"
4864
49#. module: l10n_ES_partner_mercantil
50#: model:ir.module.module,description:l10n_ES_partner_mercantil.module_meta_information
51msgid ""
52"Añade los siguientes campos en la ficha de Empresa:\n"
53" * Libro\n"
54" * Registro Mercantil\n"
55" * Hoja\n"
56" * Folio\n"
57" * Seccion\n"
58" * Tomo\n"
59msgstr ""
60"Añade los siguientes campos en la ficha de Empresa:\n"
61" * Libro\n"
62" * Registro Mercantil\n"
63" * Hoja\n"
64" * Folio\n"
65" * Sección\n"
66" * Tomo\n"
67
68#. module: l10n_ES_partner_mercantil
69#: field:res.partner,es_libro:0
70msgid "Book"
71msgstr "Libro"
72
73#. module: l10n_ES_partner_mercantil
74#: field:res.partner,es_hoja:0
75msgid "Sheet"
76msgstr "Hoja"
77
78#. module: l10n_ES_partner_mercantil
79#: model:ir.module.module,shortdesc:l10n_ES_partner_mercantil.module_meta_information
80msgid "Partner Mercantil"
81msgstr "Partner Mercantil"
82
83#. module: l10n_ES_partner_mercantil
84#: view:res.partner:0
85msgid "Commercial Info"
86msgstr "Información Mercantil"
8765
=== modified file 'l10n_es_partner_mercantil/i18n/gl.po'
--- ___unported__/l10n_es_partner_mercantil/i18n/gl.po 2014-03-04 08:27:58 +0000
+++ l10n_es_partner_mercantil/i18n/gl.po 2014-07-11 08:57:19 +0000
@@ -1,87 +1,64 @@
1# Galician translation for openerp-spain1# Translation of OpenERP Server.
2# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 20132# This file contains the translation of the following modules:
3# This file is distributed under the same license as the openerp-spain package.3# * l10n_es_partner_mercantil
4# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
5#4#
6msgid ""5msgid ""
7msgstr ""6msgstr ""
8"Project-Id-Version: openerp-spain\n"7"Project-Id-Version: OpenERP Server 7.0\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"8"Report-Msgid-Bugs-To: \n"
10"POT-Creation-Date: 2009-07-22 08:22+0000\n"9"POT-Creation-Date: 2014-07-11 08:52+0000\n"
11"PO-Revision-Date: 2013-11-12 12:01+0000\n"10"PO-Revision-Date: 2014-07-11 08:52+0000\n"
12"Last-Translator: Alejandro Santana <alejandrosantana@anubia.es>\n"11"Last-Translator: <>\n"
13"Language-Team: Galician <gl@li.org>\n"12"Language-Team: \n"
14"MIME-Version: 1.0\n"13"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"14"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"15"Content-Transfer-Encoding: \n"
17"X-Launchpad-Export-Date: 2014-03-04 08:27+0000\n"16"Plural-Forms: \n"
18"X-Generator: Launchpad (build 16948)\n"17
1918#. module: l10n_es_partner_mercantil
20#. module: l10n_ES_partner_mercantil19#: field:res.partner,es_libro:0
21#: constraint:ir.ui.view:020msgid "Book"
22msgid "Invalid XML for View Architecture!"21msgstr "Libro"
23msgstr "¡XML non válido para a estructura da vista!"22
2423#. module: l10n_es_partner_mercantil
25#. module: l10n_ES_partner_mercantil24#: view:res.partner:0
25msgid "Commercial Info"
26msgstr "Información comercial"
27
28#. module: l10n_es_partner_mercantil
26#: field:res.partner,es_registro_mercantil:029#: field:res.partner,es_registro_mercantil:0
27msgid "Commercial Registry"30msgid "Commercial Registry"
28msgstr "Rexistro Mercantil"31msgstr "Rexistro Mercantil"
2932
30#. module: l10n_ES_partner_mercantil33#. module: l10n_es_partner_mercantil
34#: view:res.partner:0
35msgid "Internal Notes"
36msgstr "Internal Notes"
37
38#. module: l10n_es_partner_mercantil
39#: field:res.partner,es_folio:0
40msgid "Page"
41msgstr "Páxina"
42
43#. module: l10n_es_partner_mercantil
44#: code:_description:0
45#: model:ir.model,name:l10n_es_partner_mercantil.model_res_partner
46#, python-format
47msgid "Partner"
48msgstr "Empresa"
49
50#. module: l10n_es_partner_mercantil
31#: field:res.partner,es_seccion:051#: field:res.partner,es_seccion:0
32msgid "Section"52msgid "Section"
33msgstr "Sección"53msgstr "Sección"
3454
35#. module: l10n_ES_partner_mercantil55#. module: l10n_es_partner_mercantil
36#: view:res.partner:056#: field:res.partner,es_hoja:0
37msgid "Notes"57msgid "Sheet"
38msgstr "Notas"58msgstr "Folla"
3959
40#. module: l10n_ES_partner_mercantil60#. module: l10n_es_partner_mercantil
41#: field:res.partner,es_folio:0
42msgid "Page"
43msgstr "Páxina"
44
45#. module: l10n_ES_partner_mercantil
46#: field:res.partner,es_tomo:061#: field:res.partner,es_tomo:0
47msgid "Volume"62msgid "Volume"
48msgstr "Volume"63msgstr "Volume"
4964
50#. module: l10n_ES_partner_mercantil
51#: model:ir.module.module,description:l10n_ES_partner_mercantil.module_meta_information
52msgid ""
53"Añade los siguientes campos en la ficha de Empresa:\n"
54" * Libro\n"
55" * Registro Mercantil\n"
56" * Hoja\n"
57" * Folio\n"
58" * Seccion\n"
59" * Tomo\n"
60msgstr ""
61"Engade os seguintes campos na ficha da empresa:\n"
62" *Libro\n"
63" *Rexistro Mercantil\n"
64" *Folla\n"
65" *Folio\n"
66" *Sección\n"
67" *Tomo\n"
68
69#. module: l10n_ES_partner_mercantil
70#: field:res.partner,es_libro:0
71msgid "Book"
72msgstr "Libro"
73
74#. module: l10n_ES_partner_mercantil
75#: field:res.partner,es_hoja:0
76msgid "Sheet"
77msgstr "Folla"
78
79#. module: l10n_ES_partner_mercantil
80#: model:ir.module.module,shortdesc:l10n_ES_partner_mercantil.module_meta_information
81msgid "Partner Mercantil"
82msgstr "Sociedade mercantil"
83
84#. module: l10n_ES_partner_mercantil
85#: view:res.partner:0
86msgid "Commercial Info"
87msgstr "Información comercial"
8865
=== modified file 'l10n_es_partner_mercantil/i18n/l10n_es_partner_mercantil.pot'
--- ___unported__/l10n_es_partner_mercantil/i18n/l10n_es_partner_mercantil.pot 2010-10-18 10:04:25 +0000
+++ l10n_es_partner_mercantil/i18n/l10n_es_partner_mercantil.pot 2014-07-11 08:57:19 +0000
@@ -1,13 +1,13 @@
1# Translation of OpenERP Server.1# Translation of OpenERP Server.
2# This file contains the translation of the following modules:2# This file contains the translation of the following modules:
3# * l10n_ES_partner_mercantil3# * l10n_es_partner_mercantil
4#4#
5msgid ""5msgid ""
6msgstr ""6msgstr ""
7"Project-Id-Version: OpenERP Server 5.0.1\n"7"Project-Id-Version: OpenERP Server 7.0\n"
8"Report-Msgid-Bugs-To: support@openerp.com\n"8"Report-Msgid-Bugs-To: \n"
9"POT-Creation-Date: 2009-07-22 08:22:59+0000\n"9"POT-Creation-Date: 2014-07-10 15:45+0000\n"
10"PO-Revision-Date: 2009-07-22 08:22:59+0000\n"10"PO-Revision-Date: 2014-07-10 15:45+0000\n"
11"Last-Translator: <>\n"11"Last-Translator: <>\n"
12"Language-Team: \n"12"Language-Team: \n"
13"MIME-Version: 1.0\n"13"MIME-Version: 1.0\n"
@@ -15,65 +15,50 @@
15"Content-Transfer-Encoding: \n"15"Content-Transfer-Encoding: \n"
16"Plural-Forms: \n"16"Plural-Forms: \n"
1717
18#. module: l10n_ES_partner_mercantil18#. module: l10n_es_partner_mercantil
19#: constraint:ir.ui.view:019#: field:res.partner,es_libro:0
20msgid "Invalid XML for View Architecture!"20msgid "Book"
21msgstr ""21msgstr ""
2222
23#. module: l10n_ES_partner_mercantil23#. module: l10n_es_partner_mercantil
24#: view:res.partner:0
25msgid "Commercial Info"
26msgstr ""
27
28#. module: l10n_es_partner_mercantil
24#: field:res.partner,es_registro_mercantil:029#: field:res.partner,es_registro_mercantil:0
25msgid "Commercial Registry"30msgid "Commercial Registry"
26msgstr ""31msgstr ""
2732
28#. module: l10n_ES_partner_mercantil33#. module: l10n_es_partner_mercantil
34#: view:res.partner:0
35msgid "Internal Notes"
36msgstr ""
37
38#. module: l10n_es_partner_mercantil
39#: field:res.partner,es_folio:0
40msgid "Page"
41msgstr ""
42
43#. module: l10n_es_partner_mercantil
44#: code:_description:0
45#: model:ir.model,name:l10n_es_partner_mercantil.model_res_partner
46#, python-format
47msgid "Partner"
48msgstr ""
49
50#. module: l10n_es_partner_mercantil
29#: field:res.partner,es_seccion:051#: field:res.partner,es_seccion:0
30msgid "Section"52msgid "Section"
31msgstr ""53msgstr ""
3254
33#. module: l10n_ES_partner_mercantil55#. module: l10n_es_partner_mercantil
34#: view:res.partner:056#: field:res.partner,es_hoja:0
35msgid "Notes"57msgid "Sheet"
36msgstr ""58msgstr ""
3759
38#. module: l10n_ES_partner_mercantil60#. module: l10n_es_partner_mercantil
39#: field:res.partner,es_folio:0
40msgid "Page"
41msgstr ""
42
43#. module: l10n_ES_partner_mercantil
44#: field:res.partner,es_tomo:061#: field:res.partner,es_tomo:0
45msgid "Volume"62msgid "Volume"
46msgstr ""63msgstr ""
4764
48#. module: l10n_ES_partner_mercantil
49#: model:ir.module.module,description:l10n_ES_partner_mercantil.module_meta_information
50msgid "Añade los siguientes campos en la ficha de Empresa:\n"
51" * Libro\n"
52" * Registro Mercantil\n"
53" * Hoja\n"
54" * Folio\n"
55" * Seccion\n"
56" * Tomo\n"
57""
58msgstr ""
59
60#. module: l10n_ES_partner_mercantil
61#: field:res.partner,es_libro:0
62msgid "Book"
63msgstr ""
64
65#. module: l10n_ES_partner_mercantil
66#: field:res.partner,es_hoja:0
67msgid "Sheet"
68msgstr ""
69
70#. module: l10n_ES_partner_mercantil
71#: model:ir.module.module,shortdesc:l10n_ES_partner_mercantil.module_meta_information
72msgid "Partner Mercantil"
73msgstr ""
74
75#. module: l10n_ES_partner_mercantil
76#: view:res.partner:0
77msgid "Commercial Info"
78msgstr ""
79
8065
=== added directory 'l10n_es_partner_mercantil/models'
=== added file 'l10n_es_partner_mercantil/models/__init__.py'
--- l10n_es_partner_mercantil/models/__init__.py 1970-01-01 00:00:00 +0000
+++ l10n_es_partner_mercantil/models/__init__.py 2014-07-11 08:57:19 +0000
@@ -0,0 +1,23 @@
1# -*- coding: utf-8 -*-
2##############################################################################
3#
4# OpenERP, Open Source Management Solution
5# Copyright (c) 2009 Spanish Localization Team
6# $Id$
7#
8# This program is free software: you can redistribute it and/or modify
9# it under the terms of the GNU Affero General Public License as published
10# by the Free Software Foundation, either version 3 of the License, or
11# (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU Affero General Public License for more details.
17#
18# You should have received a copy of the GNU Affero General Public License
19# along with this program. If not, see <http://www.gnu.org/licenses/>.
20#
21##############################################################################
22
23from . import partner_es
024
=== renamed file '___unported__/l10n_es_partner_mercantil/partner_es.py' => 'l10n_es_partner_mercantil/models/partner_es.py'
--- ___unported__/l10n_es_partner_mercantil/partner_es.py 2011-08-29 15:11:11 +0000
+++ l10n_es_partner_mercantil/models/partner_es.py 2014-07-11 08:57:19 +0000
@@ -6,8 +6,8 @@
6# $Id$6# $Id$
7#7#
8# This program is free software: you can redistribute it and/or modify8# This program is free software: you can redistribute it and/or modify
9# it under the terms of the GNU Affero General Public License as published by9# it under the terms of the GNU Affero General Public License as published
10# the Free Software Foundation, either version 3 of the License, or10# by the Free Software Foundation, either version 3 of the License, or
11# (at your option) any later version.11# (at your option) any later version.
12#12#
13# This program is distributed in the hope that it will be useful,13# This program is distributed in the hope that it will be useful,
@@ -20,18 +20,18 @@
20#20#
21##############################################################################21##############################################################################
2222
23from osv import osv, fields23from openerp.osv import orm, fields
2424
25class res_partner(osv.osv):25
26class ResPartner(orm.Model):
26 _inherit = 'res.partner'27 _inherit = 'res.partner'
28
27 _columns = {29 _columns = {
28 'es_libro': fields.char('Book', size=128), #libro30 'es_libro': fields.char('Book', size=128), # libro
29 'es_registro_mercantil': fields.char('Commercial Registry', size=128), # Registro Mercantil31 # Registro Mercantil
30 'es_hoja': fields.char('Sheet', size=128), #hoja32 'es_registro_mercantil': fields.char('Commercial Registry', size=128),
31 'es_folio': fields.char('Page', size=128), #folio33 'es_hoja': fields.char('Sheet', size=128), # hoja
32 'es_seccion': fields.char('Section', size=128),# seccion34 'es_folio': fields.char('Page', size=128), # folio
33 'es_tomo': fields.char('Volume', size=128),# tomo35 'es_seccion': fields.char('Section', size=128), # seccion
36 'es_tomo': fields.char('Volume', size=128), # tomo
34 }37 }
35
36res_partner()
37
3838
=== added directory 'l10n_es_partner_mercantil/views'
=== renamed file '___unported__/l10n_es_partner_mercantil/partner_es_view.xml' => 'l10n_es_partner_mercantil/views/partner_es_view.xml'
--- ___unported__/l10n_es_partner_mercantil/partner_es_view.xml 2010-11-12 12:51:14 +0000
+++ l10n_es_partner_mercantil/views/partner_es_view.xml 2014-07-11 08:57:19 +0000
@@ -1,22 +1,28 @@
1<?xml version="1.0" encoding="utf-8"?>1<?xml version="1.0" encoding="utf-8"?>
2<openerp>2<openerp>
3 <data>3 <data>
4 <record model="ir.ui.view" id="view_partner_form_mercantil">4 <record model="ir.ui.view" id="view_partner_form_mercantil">
5 <field name="name">view.partner.form.mercantil</field>5 <field name="name">view.partner.form.mercantil</field>
6 <field name="model">res.partner</field>6 <field name="model">res.partner</field>
7 <field name="inherit_id" ref="base.view_partner_form"/>7 <field name="inherit_id" ref="base.view_partner_form" />
8 <field name="arch" type="xml">8 <field name="arch" type="xml">
9 <page string="Notes" position="after">9 <page string="Internal Notes" position="after">
10 <page string="Commercial Info">10 <page string="Commercial Info" attrs="{'invisible': [('is_company','=',False)]}">
11 <field name="es_libro"/>11 <group>
12 <field name="es_registro_mercantil"/>12 <group>
13 <field name="es_hoja"/>13 <field name="es_libro" />
14 <field name="es_folio"/>14 <field name="es_registro_mercantil" />
15 <field name="es_seccion"/>15 <field name="es_hoja" />
16 <field name="es_tomo"/>16 </group>
17 <group>
18 <field name="es_folio" />
19 <field name="es_seccion" />
20 <field name="es_tomo" />
21 </group>
22 </group>
23 </page>
17 </page>24 </page>
18 </page>25 </field>
19 </field>26 </record>
20 </record>27 </data>
21 </data>
22</openerp>28</openerp>