Skip to content

Commit 839ba13

Browse files
committed
[16.0][ADD] hr_planning_oca
1 parent 512a9b6 commit 839ba13

15 files changed

Lines changed: 568 additions & 0 deletions

File tree

hr_planning_oca/README.rst

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
==============
2+
HR Planner OCA
3+
==============
4+
5+
..
6+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7+
!! This file is generated by oca-gen-addon-readme !!
8+
!! changes will be overwritten. !!
9+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10+
!! source digest: sha256:6712a128ec2d85312a8cd5e11fd4f45d79baa9c39105fde2ecddf272480c9b5c
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%2Fresource-lightgray.png?logo=github
20+
:target: https://github.com/OCA/resource/tree/16.0/hr_planning_oca
21+
:alt: OCA/resource
22+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
23+
:target: https://translation.odoo-community.org/projects/resource-16-0/resource-16-0-hr_planning_oca
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/resource&target_branch=16.0
27+
:alt: Try me on Runboat
28+
29+
|badge1| |badge2| |badge3| |badge4| |badge5|
30+
31+
32+
**Table of contents**
33+
34+
.. contents::
35+
:local:
36+
37+
Bug Tracker
38+
===========
39+
40+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/resource/issues>`_.
41+
In case of trouble, please check there if your issue has already been reported.
42+
If you spotted it first, help us to smash it by providing a detailed and welcomed
43+
`feedback <https://github.com/OCA/resource/issues/new?body=module:%20hr_planning_oca%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
44+
45+
Do not contact contributors directly about support or help with technical issues.
46+
47+
Credits
48+
=======
49+
50+
Authors
51+
~~~~~~~
52+
53+
* Binhex
54+
55+
Contributors
56+
~~~~~~~~~~~~
57+
58+
* `Binhex <https://www.binhex.cloud>`_:
59+
60+
* Antonio Ruban
61+
* Zuzanna Elzbieta Szalaty Szalaty
62+
63+
Maintainers
64+
~~~~~~~~~~~
65+
66+
This module is maintained by the OCA.
67+
68+
.. image:: https://odoo-community.org/logo.png
69+
:alt: Odoo Community Association
70+
:target: https://odoo-community.org
71+
72+
OCA, or the Odoo Community Association, is a nonprofit organization whose
73+
mission is to support the collaborative development of Odoo features and
74+
promote its widespread use.
75+
76+
This module is part of the `OCA/resource <https://github.com/OCA/resource/tree/16.0/hr_planning_oca>`_ project on GitHub.
77+
78+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

hr_planning_oca/__init__.py

Whitespace-only changes.

hr_planning_oca/__manifest__.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "HR Planner OCA",
3+
"version": "16.0.1.0.1",
4+
"category": "Human Resources",
5+
"website": "https://github.com/OCA/resource",
6+
"author": "Binhex, Odoo Community Association (OCA)",
7+
"depends": [
8+
"project",
9+
"web_timeline",
10+
"helpdesk_mgmt",
11+
"hr_holidays",
12+
],
13+
"data": ["views/menus.xml"],
14+
"application": True,
15+
"installable": True,
16+
"auto_install": False,
17+
"license": "AGPL-3",
18+
}

hr_planning_oca/i18n/es.po

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * hr_planning_oca
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 16.0\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"POT-Creation-Date: 2025-01-06 20:49+0000\n"
10+
"PO-Revision-Date: 2025-01-06 20:49+0000\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: \n"
16+
"Plural-Forms: \n"
17+
18+
#. module: hr_planning_oca
19+
#: model:ir.ui.menu,name:hr_planning_oca.main_menu_planner
20+
msgid "Planning"
21+
msgstr "Planificación"
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
* `Binhex <https://www.binhex.cloud>`_:
2+
3+
* Antonio Ruban
4+
* Zuzanna Elzbieta Szalaty Szalaty

hr_planning_oca/readme/DESCRIPTION.rst

Whitespace-only changes.

hr_planning_oca/readme/USAGE.rst

Whitespace-only changes.
9.23 KB
Loading

0 commit comments

Comments
 (0)