diff --git a/sale_order_report_customer_lead/README.rst b/sale_order_report_customer_lead/README.rst new file mode 100644 index 00000000..6eb7f98b --- /dev/null +++ b/sale_order_report_customer_lead/README.rst @@ -0,0 +1,86 @@ +=============================== +Sale Order Report Customer Lead +=============================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:3b118572121ddcef3e983a5eead235f9fe9fe49fd6cd44677fbe89a0d4bf6511 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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%2Fsale--reporting-lightgray.png?logo=github + :target: https://github.com/OCA/sale-reporting/tree/16.0/sale_order_report_customer_lead + :alt: OCA/sale-reporting +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/sale-reporting-16-0/sale-reporting-16-0-sale_order_report_customer_lead + :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/sale-reporting&target_branch=16.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +Prints the line's Lead Time in the Sale Order and Quotation reports. + +**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 +~~~~~~~ + +* Camptocamp SA + +Contributors +~~~~~~~~~~~~ + +* `Camptocamp `_ + + * Iván Todorovich + +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-ivantodorovich| image:: https://github.com/ivantodorovich.png?size=40px + :target: https://github.com/ivantodorovich + :alt: ivantodorovich + +Current `maintainer `__: + +|maintainer-ivantodorovich| + +This module is part of the `OCA/sale-reporting `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/sale_order_report_customer_lead/__init__.py b/sale_order_report_customer_lead/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/sale_order_report_customer_lead/__manifest__.py b/sale_order_report_customer_lead/__manifest__.py new file mode 100644 index 00000000..bb48e99b --- /dev/null +++ b/sale_order_report_customer_lead/__manifest__.py @@ -0,0 +1,16 @@ +# Copyright 2022 Camptocamp SA (https://www.camptocamp.com). +# @author Iván Todorovich +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +{ + "name": "Sale Order Report Customer Lead", + "summary": "Show the lead time on sale documents", + "version": "16.0.1.0.0", + "category": "Sale", + "website": "https://github.com/OCA/sale-reporting", + "author": "Camptocamp SA, Odoo Community Association (OCA)", + "maintainers": ["ivantodorovich"], + "license": "AGPL-3", + "depends": ["sale"], + "data": ["reports/templates.xml"], +} diff --git a/sale_order_report_customer_lead/i18n/sale_order_report_customer_lead.pot b/sale_order_report_customer_lead/i18n/sale_order_report_customer_lead.pot new file mode 100644 index 00000000..43ab51b6 --- /dev/null +++ b/sale_order_report_customer_lead/i18n/sale_order_report_customer_lead.pot @@ -0,0 +1,24 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_order_report_customer_lead +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 15.0\n" +"Report-Msgid-Bugs-To: \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: sale_order_report_customer_lead +#: model_terms:ir.ui.view,arch_db:sale_order_report_customer_lead.report_saleorder_document +msgid "days" +msgstr "" + +#. module: sale_order_report_customer_lead +#: model_terms:ir.ui.view,arch_db:sale_order_report_customer_lead.report_saleorder_document +msgid "Lead Time" +msgstr "" diff --git a/sale_order_report_customer_lead/readme/CONTRIBUTORS.rst b/sale_order_report_customer_lead/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000..a1e0a839 --- /dev/null +++ b/sale_order_report_customer_lead/readme/CONTRIBUTORS.rst @@ -0,0 +1,3 @@ +* `Camptocamp `_ + + * Iván Todorovich diff --git a/sale_order_report_customer_lead/readme/DESCRIPTION.rst b/sale_order_report_customer_lead/readme/DESCRIPTION.rst new file mode 100644 index 00000000..0e848b59 --- /dev/null +++ b/sale_order_report_customer_lead/readme/DESCRIPTION.rst @@ -0,0 +1 @@ +Prints the line's Lead Time in the Sale Order and Quotation reports. diff --git a/sale_order_report_customer_lead/reports/templates.xml b/sale_order_report_customer_lead/reports/templates.xml new file mode 100644 index 00000000..ac8c18f8 --- /dev/null +++ b/sale_order_report_customer_lead/reports/templates.xml @@ -0,0 +1,26 @@ + + + + + + + diff --git a/sale_order_report_customer_lead/static/description/icon.png b/sale_order_report_customer_lead/static/description/icon.png new file mode 100644 index 00000000..3a0328b5 Binary files /dev/null and b/sale_order_report_customer_lead/static/description/icon.png differ diff --git a/sale_order_report_customer_lead/static/description/index.html b/sale_order_report_customer_lead/static/description/index.html new file mode 100644 index 00000000..be5af133 --- /dev/null +++ b/sale_order_report_customer_lead/static/description/index.html @@ -0,0 +1,428 @@ + + + + + +Sale Order Report Customer Lead + + + +
+

Sale Order Report Customer Lead

+ + +

Beta License: AGPL-3 OCA/sale-reporting Translate me on Weblate Try me on Runboat

+

Prints the line’s Lead Time in the Sale Order and Quotation reports.

+

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

+
    +
  • Camptocamp 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 maintainer:

+

ivantodorovich

+

This module is part of the OCA/sale-reporting project on GitHub.

+

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

+
+
+
+ + diff --git a/setup/sale_order_report_customer_lead/odoo/addons/sale_order_report_customer_lead b/setup/sale_order_report_customer_lead/odoo/addons/sale_order_report_customer_lead new file mode 120000 index 00000000..a776745b --- /dev/null +++ b/setup/sale_order_report_customer_lead/odoo/addons/sale_order_report_customer_lead @@ -0,0 +1 @@ +../../../../sale_order_report_customer_lead \ No newline at end of file diff --git a/setup/sale_order_report_customer_lead/setup.py b/setup/sale_order_report_customer_lead/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/sale_order_report_customer_lead/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)