Skip to content

Commit 380f159

Browse files
committed
[ADD] maintenance_equipment_usage: New module
TT47831
1 parent 482b5db commit 380f159

21 files changed

+1848
-0
lines changed
+91
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
===========================
2+
Maintenance Equipment Usage
3+
===========================
4+
5+
..
6+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7+
!! This file is generated by oca-gen-addon-readme !!
8+
!! changes will be overwritten. !!
9+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10+
!! source digest: sha256:d53788ade2957febd9e19be9b1d26ece20167e5aaeaab1d3946180ff53896b23
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_equipment_usage
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_equipment_usage
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+
This module allows to record usages of maintenante equipments by employees,
32+
with their dates, states and comments.
33+
34+
**Table of contents**
35+
36+
.. contents::
37+
:local:
38+
39+
Bug Tracker
40+
===========
41+
42+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/maintenance/issues>`_.
43+
In case of trouble, please check there if your issue has already been reported.
44+
If you spotted it first, help us to smash it by providing a detailed and welcomed
45+
`feedback <https://github.com/OCA/maintenance/issues/new?body=module:%20maintenance_equipment_usage%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
46+
47+
Do not contact contributors directly about support or help with technical issues.
48+
49+
Credits
50+
=======
51+
52+
Authors
53+
~~~~~~~
54+
55+
* César Fernández
56+
* Tecnativa
57+
58+
Contributors
59+
~~~~~~~~~~~~
60+
61+
* César Fernández Domínguez
62+
63+
* `Tecnativa <https://www.tecnativa.com>`_:
64+
65+
* Víctor Martínez
66+
* Pedro M. Baeza
67+
68+
Maintainers
69+
~~~~~~~~~~~
70+
71+
This module is maintained by the OCA.
72+
73+
.. image:: https://odoo-community.org/logo.png
74+
:alt: Odoo Community Association
75+
:target: https://odoo-community.org
76+
77+
OCA, or the Odoo Community Association, is a nonprofit organization whose
78+
mission is to support the collaborative development of Odoo features and
79+
promote its widespread use.
80+
81+
.. |maintainer-victoralmau| image:: https://github.com/victoralmau.png?size=40px
82+
:target: https://github.com/victoralmau
83+
:alt: victoralmau
84+
85+
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
86+
87+
|maintainer-victoralmau|
88+
89+
This module is part of the `OCA/maintenance <https://github.com/OCA/maintenance/tree/16.0/maintenance_equipment_usage>`_ project on GitHub.
90+
91+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from . import models
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Copyright 2021 César Fernández Domínguez
2+
# Copyright 2024 Tecnativa - Víctor Martínez
3+
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
4+
{
5+
"name": "Maintenance Equipment Usage",
6+
"version": "16.0.1.0.0",
7+
"category": "Maintenance",
8+
"website": "https://github.com/OCA/maintenance",
9+
"author": "César Fernández, Tecnativa, Odoo Community Association (OCA)",
10+
"license": "AGPL-3",
11+
"depends": ["maintenance"],
12+
"installable": True,
13+
"data": [
14+
"security/ir.model.access.csv",
15+
"security/security.xml",
16+
"data/ir_sequence_data.xml",
17+
"views/maintenance_equipment_usage_views.xml",
18+
"views/maintenance_equipment_view.xml",
19+
],
20+
"maintainers": ["victoralmau"],
21+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<odoo noupdate="1">
3+
<record id="sequence_maintenance_equipment_usage" model="ir.sequence">
4+
<field name="name">Maintenance Equipment Usage</field>
5+
<field name="code">maintenance.equipment.usage</field>
6+
<field name="prefix">EU/</field>
7+
<field name="padding">5</field>
8+
<field name="number_next">1</field>
9+
<field name="number_increment">1</field>
10+
<field name="company_id" eval="False" />
11+
</record>
12+
</odoo>

0 commit comments

Comments
 (0)