diff --git a/repair_timeline/README.rst b/repair_timeline/README.rst new file mode 100644 index 000000000..0930cd32a --- /dev/null +++ b/repair_timeline/README.rst @@ -0,0 +1,88 @@ +=============== +Repair Timeline +=============== + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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%2Fmanufacture-lightgray.png?logo=github + :target: https://github.com/OCA/manufacture/tree/12.0/repair_timeline + :alt: OCA/manufacture +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/manufacture-12-0/manufacture-12-0-repair_timeline + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/129/12.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This Module adds a timeline view for the repair orders + +**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 smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Escodoo + +Contributors +~~~~~~~~~~~~ + +* Marcel Savegnago + +Other credits +~~~~~~~~~~~~~ + +The development of this module has been financially supported by: + +* Escodoo + +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 + +Current `maintainer `__: + +|maintainer-marcelsavegnago| + +This module is part of the `OCA/manufacture `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/repair_timeline/__init__.py b/repair_timeline/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/repair_timeline/__manifest__.py b/repair_timeline/__manifest__.py new file mode 100644 index 000000000..58ef86592 --- /dev/null +++ b/repair_timeline/__manifest__.py @@ -0,0 +1,22 @@ +# Copyright 2021 - TODAY, Escodoo +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + 'name': 'Repair Timeline', + 'summary': """ + Add timeline view""", + 'category': 'Manufacturing', + 'version': '12.0.1.0.0', + 'license': 'AGPL-3', + 'author': 'Escodoo,Odoo Community Association (OCA)', + 'maintainers': ['marcelsavegnago'], + 'website': 'https://github.com/oca/manufacture', + 'images': ['static/description/banner.png'], + 'depends': [ + 'base_repair', + 'web_timeline' + ], + 'data': [ + 'views/repair_order.xml' + ], +} diff --git a/repair_timeline/i18n/pt_BR.po b/repair_timeline/i18n/pt_BR.po new file mode 100644 index 000000000..b6ddd1ed8 --- /dev/null +++ b/repair_timeline/i18n/pt_BR.po @@ -0,0 +1,23 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * repair_timeline +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-02-03 07:01+0000\n" +"PO-Revision-Date: 2021-02-03 04:01-0300\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 2.4.1\n" +"Last-Translator: Marcel Savegnago \n" +"Language: pt_BR\n" + +#. module: repair_timeline +#: model_terms:ir.ui.view,arch_db:repair_timeline.view_repair_order_timeline +msgid "Customer:" +msgstr "Cliente:" diff --git a/repair_timeline/i18n/repair_timeline.pot b/repair_timeline/i18n/repair_timeline.pot new file mode 100644 index 000000000..0a624d0f4 --- /dev/null +++ b/repair_timeline/i18n/repair_timeline.pot @@ -0,0 +1,22 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * repair_timeline +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-02-03 07:01+0000\n" +"PO-Revision-Date: 2021-02-03 07:01+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: repair_timeline +#: model_terms:ir.ui.view,arch_db:repair_timeline.view_repair_order_timeline +msgid "Customer:" +msgstr "" + diff --git a/repair_timeline/readme/CONTRIBUTORS.rst b/repair_timeline/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..61f9287b3 --- /dev/null +++ b/repair_timeline/readme/CONTRIBUTORS.rst @@ -0,0 +1 @@ +* Marcel Savegnago diff --git a/repair_timeline/readme/CREDITS.rst b/repair_timeline/readme/CREDITS.rst new file mode 100644 index 000000000..fcb24d045 --- /dev/null +++ b/repair_timeline/readme/CREDITS.rst @@ -0,0 +1,3 @@ +The development of this module has been financially supported by: + +* Escodoo diff --git a/repair_timeline/readme/DESCRIPTION.rst b/repair_timeline/readme/DESCRIPTION.rst new file mode 100644 index 000000000..caa60ff59 --- /dev/null +++ b/repair_timeline/readme/DESCRIPTION.rst @@ -0,0 +1 @@ +This Module adds a timeline view for the repair orders diff --git a/repair_timeline/static/description/banner.png b/repair_timeline/static/description/banner.png new file mode 100644 index 000000000..da4f6de2a Binary files /dev/null and b/repair_timeline/static/description/banner.png differ diff --git a/repair_timeline/static/description/icon.png b/repair_timeline/static/description/icon.png new file mode 100644 index 000000000..3a0328b51 Binary files /dev/null and b/repair_timeline/static/description/icon.png differ diff --git a/repair_timeline/static/description/index.html b/repair_timeline/static/description/index.html new file mode 100644 index 000000000..d6beca472 --- /dev/null +++ b/repair_timeline/static/description/index.html @@ -0,0 +1,429 @@ + + + + + + +Repair Timeline + + + +
+

Repair Timeline

+ + +

Beta License: AGPL-3 OCA/manufacture Translate me on Weblate Try me on Runbot

+

This Module adds a timeline view for the repair orders

+

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 smashing it by providing a detailed and welcomed +feedback.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Escodoo
  • +
+
+
+

Contributors

+ +
+
+

Other credits

+

The development of this module has been financially supported by:

+ +
+
+

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 maintainer:

+

marcelsavegnago

+

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

+

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

+
+
+
+ + diff --git a/repair_timeline/views/repair_order.xml b/repair_timeline/views/repair_order.xml new file mode 100644 index 000000000..7ea558f36 --- /dev/null +++ b/repair_timeline/views/repair_order.xml @@ -0,0 +1,35 @@ + + + + + + + Repair Orders Timeline + repair.order + timeline + + + + +
+
+ Customer: + +
+ + + + + + + tree,kanban,pivot,calendar,timeline,form + + + +