Skip to content

Commit 3963e1e

Browse files
committed
Merge PR #389 into 16.0
Signed-off-by etobella
2 parents 38dc963 + c307333 commit 3963e1e

24 files changed

+1431
-0
lines changed

maintenance_location/README.rst

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
====================
2+
Maintenance Location
3+
====================
4+
5+
..
6+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7+
!! This file is generated by oca-gen-addon-readme !!
8+
!! changes will be overwritten. !!
9+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10+
!! source digest: sha256:5143b2a600e8f73c5247e22c749cce44d1092909b5ded3d7af91d2d797f81924
11+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12+
13+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
14+
:target: https://odoo-community.org/page/development-status
15+
:alt: Beta
16+
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
17+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
18+
:alt: License: AGPL-3
19+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fmaintenance-lightgray.png?logo=github
20+
:target: https://github.com/OCA/maintenance/tree/16.0/maintenance_location
21+
:alt: OCA/maintenance
22+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
23+
:target: https://translation.odoo-community.org/projects/maintenance-16-0/maintenance-16-0-maintenance_location
24+
:alt: Translate me on Weblate
25+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
26+
:target: https://runboat.odoo-community.org/builds?repo=OCA/maintenance&target_branch=16.0
27+
:alt: Try me on Runboat
28+
29+
|badge1| |badge2| |badge3| |badge4| |badge5|
30+
31+
Define a location system with hierarchy for maintenance equipments and requests.
32+
33+
**Table of contents**
34+
35+
.. contents::
36+
:local:
37+
38+
Bug Tracker
39+
===========
40+
41+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/maintenance/issues>`_.
42+
In case of trouble, please check there if your issue has already been reported.
43+
If you spotted it first, help us to smash it by providing a detailed and welcomed
44+
`feedback <https://github.com/OCA/maintenance/issues/new?body=module:%20maintenance_location%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
45+
46+
Do not contact contributors directly about support or help with technical issues.
47+
48+
Credits
49+
=======
50+
51+
Authors
52+
~~~~~~~
53+
54+
* CreuBlanca
55+
56+
Contributors
57+
~~~~~~~~~~~~
58+
59+
* CreuBlanca
60+
* Enric Tobella
61+
* Kevin Luna
62+
* Jaime Arroyo
63+
64+
Maintainers
65+
~~~~~~~~~~~
66+
67+
This module is maintained by the OCA.
68+
69+
.. image:: https://odoo-community.org/logo.png
70+
:alt: Odoo Community Association
71+
:target: https://odoo-community.org
72+
73+
OCA, or the Odoo Community Association, is a nonprofit organization whose
74+
mission is to support the collaborative development of Odoo features and
75+
promote its widespread use.
76+
77+
This module is part of the `OCA/maintenance <https://github.com/OCA/maintenance/tree/16.0/maintenance_location>`_ project on GitHub.
78+
79+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

maintenance_location/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from . import models

maintenance_location/__manifest__.py

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Copyright 2019 Creu Blanca
2+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
3+
4+
{
5+
"name": "Maintenance Location",
6+
"summary": """
7+
Define a location system for maintenance""",
8+
"version": "16.0.1.0.0",
9+
"license": "AGPL-3",
10+
"author": "CreuBlanca,Odoo Community Association (OCA)",
11+
"website": "https://github.com/OCA/maintenance",
12+
"depends": ["maintenance_plan"],
13+
"data": [
14+
"views/maintenance_plan.xml",
15+
"views/maintenance_equipment.xml",
16+
"security/ir.model.access.csv",
17+
"views/maintenance_request.xml",
18+
"views/maintenance_location.xml",
19+
],
20+
}

maintenance_location/i18n/es.po

+136
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * maintenance_location
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 11.0\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"POT-Creation-Date: 2019-12-12 11:56+0000\n"
10+
"PO-Revision-Date: 2019-12-12 13:00+0100\n"
11+
"Last-Translator: <>\n"
12+
"Language-Team: \n"
13+
"MIME-Version: 1.0\n"
14+
"Content-Type: text/plain; charset=UTF-8\n"
15+
"Content-Transfer-Encoding: 8bit\n"
16+
"Plural-Forms: \n"
17+
"Language: es\n"
18+
"X-Generator: Poedit 2.0.6\n"
19+
20+
#. module: maintenance_location
21+
#: model:ir.ui.view,arch_db:maintenance_location.maintenance_location_form_view
22+
msgid "Location name"
23+
msgstr "Nombre de la ubicación"
24+
25+
#. module: maintenance_location
26+
#: model:ir.model.fields,field_description:maintenance_location.field_maintenance_location_child_id
27+
msgid "Child Locations"
28+
msgstr "Ubicaciones Hijas"
29+
30+
#. module: maintenance_location
31+
#: model:ir.model.fields,field_description:maintenance_location.field_maintenance_location_complete_name
32+
msgid "Complete Name"
33+
msgstr "Nombre completo"
34+
35+
#. module: maintenance_location
36+
#: model:ir.model.fields,field_description:maintenance_location.field_maintenance_location_create_uid
37+
msgid "Created by"
38+
msgstr "Creado por"
39+
40+
#. module: maintenance_location
41+
#: model:ir.model.fields,field_description:maintenance_location.field_maintenance_location_create_date
42+
msgid "Created on"
43+
msgstr "Creado en"
44+
45+
#. module: maintenance_location
46+
#: model:ir.model.fields,field_description:maintenance_location.field_maintenance_location_display_name
47+
msgid "Display Name"
48+
msgstr "Nombre mostrado"
49+
50+
#. module: maintenance_location
51+
#: model:ir.model,name:maintenance_location.model_maintenance_equipment
52+
msgid "Equipment"
53+
msgstr "Equipamiento"
54+
55+
#. module: maintenance_location
56+
#: code:addons/maintenance_location/models/maintenance_location.py:52
57+
#, python-format
58+
msgid "Error ! You cannot create recursive Locations."
59+
msgstr "Error! No puedes crear ubicaciones cíclicas."
60+
61+
#. module: maintenance_location
62+
#: model:ir.model.fields,field_description:maintenance_location.field_maintenance_location_id
63+
msgid "ID"
64+
msgstr "ID (identificación)"
65+
66+
#. module: maintenance_location
67+
#: model:ir.model.fields,field_description:maintenance_location.field_maintenance_location___last_update
68+
msgid "Last Modified on"
69+
msgstr "Última modificación en"
70+
71+
#. module: maintenance_location
72+
#: model:ir.model.fields,field_description:maintenance_location.field_maintenance_location_write_uid
73+
msgid "Last Updated by"
74+
msgstr "Última actualización de"
75+
76+
#. module: maintenance_location
77+
#: model:ir.model.fields,field_description:maintenance_location.field_maintenance_location_write_date
78+
msgid "Last Updated on"
79+
msgstr "Última actualización en"
80+
81+
#. module: maintenance_location
82+
#: model:ir.model.fields,field_description:maintenance_location.field_maintenance_location_parent_left
83+
msgid "Left Parent"
84+
msgstr "Padre izquierdo"
85+
86+
#. module: maintenance_location
87+
#: model:ir.model.fields,field_description:maintenance_location.field_maintenance_equipment_location_id
88+
#: model:ir.model.fields,field_description:maintenance_location.field_maintenance_request_location_id
89+
msgid "Location"
90+
msgstr "Ubicación"
91+
92+
#. module: maintenance_location
93+
#: model:ir.ui.view,arch_db:maintenance_location.hr_equipment_request_view_kanban
94+
msgid "Location :"
95+
msgstr "Location :"
96+
97+
#. module: maintenance_location
98+
#: model:ir.actions.act_window,name:maintenance_location.maintenance_location_act_window
99+
#: model:ir.model,name:maintenance_location.model_maintenance_location
100+
msgid "Maintenance Location"
101+
msgstr "Ubicación"
102+
103+
#. module: maintenance_location
104+
#: model:ir.ui.menu,name:maintenance_location.maintenance_location_menu
105+
msgid "Maintenance Locations"
106+
msgstr "Ubicaciones"
107+
108+
#. module: maintenance_location
109+
#: model:ir.model,name:maintenance_location.model_maintenance_request
110+
msgid "Maintenance Requests"
111+
msgstr "Peticiones de mantenimiento"
112+
113+
#. module: maintenance_location
114+
#: model:ir.model.fields,field_description:maintenance_location.field_maintenance_location_name
115+
msgid "Name"
116+
msgstr "Nombre"
117+
118+
#. module: maintenance_location
119+
#: model:ir.model.fields,field_description:maintenance_location.field_maintenance_location_parent_id
120+
msgid "Parent Location"
121+
msgstr "Ubicación padre"
122+
123+
#. module: maintenance_location
124+
#: model:ir.model.fields,field_description:maintenance_location.field_maintenance_location_partner_id
125+
msgid "Partner"
126+
msgstr "Centro"
127+
128+
#. module: maintenance_location
129+
#: model:ir.model.fields,field_description:maintenance_location.field_maintenance_location_parent_right
130+
msgid "Right Parent"
131+
msgstr "Padre derecho"
132+
133+
#. module: maintenance_location
134+
#: model:ir.ui.view,arch_db:maintenance_location.maintenance_location_form_view
135+
msgid "e.g. Building A"
136+
msgstr "p.e. Edificio A"

0 commit comments

Comments
 (0)