diff --git a/hr_leave_create_date/README.rst b/hr_leave_create_date/README.rst new file mode 100644 index 0000000..e3ba273 --- /dev/null +++ b/hr_leave_create_date/README.rst @@ -0,0 +1,60 @@ +==================== +Hr Leave Create Date +==================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:de866a4e241c56ab17e53cc2fbc56aabbc071e429fc366442f51b88c63449f75 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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-solvosci%2Fslv--hr-lightgray.png?logo=github + :target: https://github.com/solvosci/slv-hr/tree/17.0/hr_leave_create_date + :alt: solvosci/slv-hr + +|badge1| |badge2| |badge3| + +Adds create_date to form, tree and search view + +**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 +------- + +* Solvos + +Contributors +------------ + +- Ángel Rivas + +Maintainers +----------- + +This module is part of the `solvosci/slv-hr `_ project on GitHub. + +You are welcome to contribute. diff --git a/hr_leave_create_date/__init__.py b/hr_leave_create_date/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/hr_leave_create_date/__manifest__.py b/hr_leave_create_date/__manifest__.py new file mode 100644 index 0000000..99edf98 --- /dev/null +++ b/hr_leave_create_date/__manifest__.py @@ -0,0 +1,18 @@ +# © 2025 Solvos Consultoría Informática () +# License LGPL-3.0 (https://www.gnu.org/licenses/lgpl-3.0.html) +{ + "name": "Hr Leave Create Date", + "summary": """ + Adds create_date to form, tree and search view + """, + "author": "Solvos", + "license": "LGPL-3", + "version": "17.0.1.0.0", + "category": "Human Resources", + "website": "https://github.com/solvosci/slv-hr", + "depends": ['hr_holidays'], + "data": [ + "views/hr_leave_views.xml", + ], + 'installable': True, +} diff --git a/hr_leave_create_date/i18n/es.po b/hr_leave_create_date/i18n/es.po new file mode 100644 index 0000000..e41ac66 --- /dev/null +++ b/hr_leave_create_date/i18n/es.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_leave_create_date +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 13.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-01-24 07:15+0000\n" +"PO-Revision-Date: 2025-01-24 08:15+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: \n" +"X-Generator: Poedit 3.0.1\n" + +#. module: hr_leave_create_date +#: model_terms:ir.ui.view,arch_db:hr_leave_create_date.view_hr_leave_search_inherit +msgid "Creation Date" +msgstr "Fecha de creación" + +#. module: hr_leave_create_date +#: model_terms:ir.ui.view,arch_db:hr_leave_create_date.view_hr_leave_search_inherit +msgid "Creation date" +msgstr "Fecha de creación" diff --git a/hr_leave_create_date/i18n/hr_leave_create_date.pot b/hr_leave_create_date/i18n/hr_leave_create_date.pot new file mode 100644 index 0000000..f5642e0 --- /dev/null +++ b/hr_leave_create_date/i18n/hr_leave_create_date.pot @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_leave_create_date +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 13.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-01-24 07:15+0000\n" +"PO-Revision-Date: 2025-01-24 07:15+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: hr_leave_create_date +#: model_terms:ir.ui.view,arch_db:hr_leave_create_date.view_hr_leave_search_inherit +msgid "Creation Date" +msgstr "" + +#. module: hr_leave_create_date +#: model_terms:ir.ui.view,arch_db:hr_leave_create_date.view_hr_leave_search_inherit +msgid "Creation date" +msgstr "" diff --git a/hr_leave_create_date/readme/CONTRIBUTORS.md b/hr_leave_create_date/readme/CONTRIBUTORS.md new file mode 100644 index 0000000..b81a921 --- /dev/null +++ b/hr_leave_create_date/readme/CONTRIBUTORS.md @@ -0,0 +1 @@ +* Ángel Rivas \ diff --git a/hr_leave_create_date/readme/DESCRIPTION.md b/hr_leave_create_date/readme/DESCRIPTION.md new file mode 100644 index 0000000..ecbffc6 --- /dev/null +++ b/hr_leave_create_date/readme/DESCRIPTION.md @@ -0,0 +1 @@ +Adds create_date to form, tree and search view \ No newline at end of file diff --git a/hr_leave_create_date/static/description/icon.png b/hr_leave_create_date/static/description/icon.png new file mode 100644 index 0000000..daa2a02 Binary files /dev/null and b/hr_leave_create_date/static/description/icon.png differ diff --git a/hr_leave_create_date/static/description/index.html b/hr_leave_create_date/static/description/index.html new file mode 100644 index 0000000..6ff1f2b --- /dev/null +++ b/hr_leave_create_date/static/description/index.html @@ -0,0 +1,416 @@ + + + + + +Hr Leave Create Date + + + +
+

Hr Leave Create Date

+ + +

Beta License: LGPL-3 solvosci/slv-hr

+

Adds create_date to form, tree and search view

+

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

+
    +
  • Solvos
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is part of the solvosci/slv-hr project on GitHub.

+

You are welcome to contribute.

+
+
+
+ + diff --git a/hr_leave_create_date/views/hr_leave_views.xml b/hr_leave_create_date/views/hr_leave_views.xml new file mode 100644 index 0000000..b9667e6 --- /dev/null +++ b/hr_leave_create_date/views/hr_leave_views.xml @@ -0,0 +1,36 @@ + + + hr.leave.form (in hr_leave_create_date) + hr.leave + + + + + + + + + hr.leave.tree (in hr_holidays_create_date) + hr.leave + + + + + + + + + hr.leave.search (in hr_holidays_create_date) + hr.leave + + + + + + + + + + + +