Skip to content

Commit

Permalink
Merge PR #1392 into 17.0
Browse files Browse the repository at this point in the history
Signed-off-by dreispt
  • Loading branch information
OCA-git-bot committed Dec 10, 2024
2 parents 53aa3c4 + f709958 commit 5982171
Show file tree
Hide file tree
Showing 29 changed files with 2,832 additions and 0 deletions.
115 changes: 115 additions & 0 deletions hr_employee_ppe/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
==============================================
Personal Protective Equipment (PPE) Management
==============================================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:f93350fdf3af6b48bd086a31abb6cd33bcf2b9b3ad1c793ea8fd8a8ac6a65251
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fhr-lightgray.png?logo=github
:target: https://github.com/OCA/hr/tree/17.0/hr_employee_ppe
:alt: OCA/hr
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/hr-17-0/hr-17-0-hr_employee_ppe
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/hr&target_branch=17.0
:alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|

This module allows you to manage allocation of PPE to your employees. A
product can be marked as ppe and additional information as duration and
indications can also be added. If ppe products are selected in a
equipment request, a button to print a receipt of PPE will appear. In
addition, a chron will check every day if an allocation has been
expired.

**Table of contents**

.. contents::
:local:

Installation
============

To install this module, you need to have HR module installed or it will
be requested during installation.

Usage
=====



Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/hr/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/hr/issues/new?body=module:%20hr_employee_ppe%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Do not contact contributors directly about support or help with technical issues.

Credits
=======

Authors
-------

* Escodoo

Contributors
------------

- Eduardo Aparicio <[email protected]>
- Marcel Savegnago <[email protected]>
- Joao Carassato <[email protected]>
- Fernando Colus <[email protected]>
- Alba Riera <[email protected]>

Other credits
-------------

The development of this module has been financially supported by:

- Escodoo - https://www.escodoo.com.br
- Creu Blanca - https://www.creublanca.es

Maintainers
-----------

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

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.

.. |maintainer-marcelsavegnago| image:: https://github.com/marcelsavegnago.png?size=40px
:target: https://github.com/marcelsavegnago
:alt: marcelsavegnago
.. |maintainer-eduaparicio| image:: https://github.com/eduaparicio.png?size=40px
:target: https://github.com/eduaparicio
:alt: eduaparicio

Current `maintainers <https://odoo-community.org/page/maintainer-role>`__:

|maintainer-marcelsavegnago| |maintainer-eduaparicio|

This module is part of the `OCA/hr <https://github.com/OCA/hr/tree/17.0/hr_employee_ppe>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
1 change: 1 addition & 0 deletions hr_employee_ppe/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
23 changes: 23 additions & 0 deletions hr_employee_ppe/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Copyright 2020 Escodoo
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

{
"name": "Personal Protective Equipment (PPE) Management",
"version": "17.0.1.0.0",
"author": "Escodoo, Odoo Community Association (OCA)",
"maintainers": ["marcelsavegnago", "eduaparicio"],
"images": ["static/description/banner.png"],
"website": "https://github.com/OCA/hr",
"license": "AGPL-3",
"category": "Human Resources",
"depends": ["hr_personal_equipment_request"],
"data": [
"views/product_template.xml",
"views/hr_personal_equipment.xml",
"views/hr_personal_equipment_request.xml",
"data/hr_employee_ppe_cron.xml",
"reports/hr_employee_ppe_report_template.xml",
"reports/hr_employee_ppe_report.xml",
],
"installable": True,
}
14 changes: 14 additions & 0 deletions hr_employee_ppe/data/hr_employee_ppe_cron.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding='UTF-8' ?>
<odoo noupdate="1">
<record model="ir.cron" id="hr_employee_ppe_cron">
<field name="name">PPE's expiry date verification</field>
<field name="model_id" ref="model_hr_personal_equipment" />
<field name="state">code</field>
<field name="code">model.cron_ppe_expiry_verification()</field>
<field name="user_id" ref="base.user_root" />
<field name="interval_number">1</field>
<field name="interval_type">days</field>
<field name="numbercall">-1</field>
<field eval="False" name="doall" />
</record>
</odoo>
Loading

0 comments on commit 5982171

Please sign in to comment.