diff --git a/hr_payroll/README.rst b/hr_payroll/README.rst new file mode 100644 index 00000000..9a868d87 --- /dev/null +++ b/hr_payroll/README.rst @@ -0,0 +1,93 @@ +======= +Payroll +======= + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:def4f708faf4767d5767c515426c572391d63f2a30ffde152f86d3a019c0b920 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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-LGPL--3-blue.png + :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fpayroll-lightgray.png?logo=github + :target: https://github.com/OCA/payroll/tree/17.0/payroll + :alt: OCA/payroll +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/payroll-17-0/payroll-17-0-payroll + :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/payroll&target_branch=17.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +Manage your employee payroll records. + +This module is a backport from Odoo SA and as such, it is not included in the OCA CLA. That means we do not have a copy of the copyright on it like all other OCA modules. + +**Table of contents** + +.. contents:: + :local: + +Bug Tracker +=========== + +Bugs are tracked on `GitHub 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 `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Odoo SA + +Contributors +~~~~~~~~~~~~ + +* Odoo SA +* David James +* Hilar AK +* Nimarosa (Nicolas Rodriguez) +* Henrik Norlin (@appstogrow) + +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-appstogrow| image:: https://github.com/appstogrow.png?size=40px + :target: https://github.com/appstogrow + :alt: appstogrow +.. |maintainer-nimarosa| image:: https://github.com/nimarosa.png?size=40px + :target: https://github.com/nimarosa + :alt: nimarosa + +Current `maintainers `__: + +|maintainer-appstogrow| |maintainer-nimarosa| + +This module is part of the `OCA/payroll `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/hr_payroll/__init__.py b/hr_payroll/__init__.py new file mode 100644 index 00000000..64c145a2 --- /dev/null +++ b/hr_payroll/__init__.py @@ -0,0 +1,5 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import models +from . import report +from . import wizard diff --git a/hr_payroll/__manifest__.py b/hr_payroll/__manifest__.py new file mode 100644 index 00000000..f7bf3cb4 --- /dev/null +++ b/hr_payroll/__manifest__.py @@ -0,0 +1,15 @@ +{ + "name": "Payroll", + "version": "17.0.1.0.0", + "category": "Payroll", + "website": "https://github.com/OCA/payroll", + "summary": "Manage your employee payroll records", + "license": "AGPL-3", + "author": "Open Source Integrators, " + "Asociacion Mexicana de Odoo (AMOdoo), " + "Odoo Community Association (OCA)", + "depends": [ + "payroll", + ], + "maintainers": ["max3903"], +} diff --git a/hr_payroll/pyproject.toml b/hr_payroll/pyproject.toml new file mode 100644 index 00000000..4231d0cc --- /dev/null +++ b/hr_payroll/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/hr_payroll/readme/CONTRIBUTORS.rst b/hr_payroll/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000..ab792860 --- /dev/null +++ b/hr_payroll/readme/CONTRIBUTORS.rst @@ -0,0 +1 @@ +* Maxime Chambreuil diff --git a/hr_payroll/readme/DESCRIPTION.rst b/hr_payroll/readme/DESCRIPTION.rst new file mode 100644 index 00000000..91b80ce8 --- /dev/null +++ b/hr_payroll/readme/DESCRIPTION.rst @@ -0,0 +1,2 @@ +This module is only here to provide compatibility between OCA modules and +Odoo Enterprise. diff --git a/hr_payroll/static/description/icon.png b/hr_payroll/static/description/icon.png new file mode 100644 index 00000000..41d2e567 Binary files /dev/null and b/hr_payroll/static/description/icon.png differ diff --git a/hr_payroll/static/description/icon.svg b/hr_payroll/static/description/icon.svg new file mode 100644 index 00000000..2754487c --- /dev/null +++ b/hr_payroll/static/description/icon.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/hr_payroll/static/description/index.html b/hr_payroll/static/description/index.html new file mode 100644 index 00000000..a4e1ef3f --- /dev/null +++ b/hr_payroll/static/description/index.html @@ -0,0 +1,427 @@ + + + + + +Payroll + + + +
+

Payroll

+ + +

Beta License: LGPL-3 OCA/payroll Translate me on Weblate Try me on Runboat

+

Manage your employee payroll records.

+

This module is a backport from Odoo SA and as such, it is not included in the OCA CLA. That means we do not have a copy of the copyright on it like all other OCA modules.

+

Table of contents

+ +
+

Bug Tracker

+

Bugs are tracked on GitHub 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.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Odoo SA
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

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.

+

Current maintainers:

+

appstogrow nimarosa

+

This module is part of the OCA/payroll project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ +