diff --git a/setup/stock_production_lot_quantity_tree/odoo/addons/stock_production_lot_quantity_tree b/setup/stock_production_lot_quantity_tree/odoo/addons/stock_production_lot_quantity_tree new file mode 120000 index 000000000..79b737149 --- /dev/null +++ b/setup/stock_production_lot_quantity_tree/odoo/addons/stock_production_lot_quantity_tree @@ -0,0 +1 @@ +../../../../stock_production_lot_quantity_tree \ No newline at end of file diff --git a/setup/stock_production_lot_quantity_tree/setup.py b/setup/stock_production_lot_quantity_tree/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/stock_production_lot_quantity_tree/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) diff --git a/stock_production_lot_quantity_tree/README.rst b/stock_production_lot_quantity_tree/README.rst new file mode 100644 index 000000000..6cfef7866 --- /dev/null +++ b/stock_production_lot_quantity_tree/README.rst @@ -0,0 +1,89 @@ +================================== +Stock Production Lot Quantity Tree +================================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:457be09849982ef97270e1536411b3e8bf8bdf564f32ab2d43a4463bc8e257e1 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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%2Fstock--logistics--warehouse-lightgray.png?logo=github + :target: https://github.com/OCA/stock-logistics-warehouse/tree/16.0/stock_production_lot_quantity_tree + :alt: OCA/stock-logistics-warehouse +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/stock-logistics-warehouse-16-0/stock-logistics-warehouse-16-0-stock_production_lot_quantity_tree + :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/stock-logistics-warehouse&target_branch=16.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module allows to display the lot quantity on its tree 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 +~~~~~~~ + +* ACSONE SA/NV + +Contributors +~~~~~~~~~~~~ + +* Denis Roussel + +* `Xtendoo `_: + + * Manuel Calero +* Adriana Saiz + +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-rousseldenis| image:: https://github.com/rousseldenis.png?size=40px + :target: https://github.com/rousseldenis + :alt: rousseldenis + +Current `maintainer `__: + +|maintainer-rousseldenis| + +This module is part of the `OCA/stock-logistics-warehouse `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/stock_production_lot_quantity_tree/__init__.py b/stock_production_lot_quantity_tree/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/stock_production_lot_quantity_tree/__manifest__.py b/stock_production_lot_quantity_tree/__manifest__.py new file mode 100644 index 000000000..325ea42b9 --- /dev/null +++ b/stock_production_lot_quantity_tree/__manifest__.py @@ -0,0 +1,15 @@ +# Copyright 2020 ACSONE SA/NV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + "name": "Stock Production Lot Quantity Tree", + "summary": """ + Allows to display product quantity field on production lot tree view""", + "version": "16.0.1.0.0", + "license": "AGPL-3", + "author": "ACSONE SA/NV,Odoo Community Association (OCA)", + "maintainers": ["rousseldenis"], + "website": "https://github.com/OCA/stock-logistics-warehouse", + "depends": ["stock"], + "data": ["views/stock_production_lot.xml"], +} diff --git a/stock_production_lot_quantity_tree/i18n/stock_production_lot_quantity_tree.pot b/stock_production_lot_quantity_tree/i18n/stock_production_lot_quantity_tree.pot new file mode 100644 index 000000000..cc93d01ee --- /dev/null +++ b/stock_production_lot_quantity_tree/i18n/stock_production_lot_quantity_tree.pot @@ -0,0 +1,13 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 13.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" diff --git a/stock_production_lot_quantity_tree/readme/CONTRIBUTORS.rst b/stock_production_lot_quantity_tree/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..7e40e6bd8 --- /dev/null +++ b/stock_production_lot_quantity_tree/readme/CONTRIBUTORS.rst @@ -0,0 +1,6 @@ +* Denis Roussel + +* `Xtendoo `_: + + * Manuel Calero +* Adriana Saiz diff --git a/stock_production_lot_quantity_tree/readme/DESCRIPTION.rst b/stock_production_lot_quantity_tree/readme/DESCRIPTION.rst new file mode 100644 index 000000000..12a9d4bf5 --- /dev/null +++ b/stock_production_lot_quantity_tree/readme/DESCRIPTION.rst @@ -0,0 +1 @@ +This module allows to display the lot quantity on its tree view. diff --git a/stock_production_lot_quantity_tree/static/description/icon.png b/stock_production_lot_quantity_tree/static/description/icon.png new file mode 100644 index 000000000..3a0328b51 Binary files /dev/null and b/stock_production_lot_quantity_tree/static/description/icon.png differ diff --git a/stock_production_lot_quantity_tree/static/description/index.html b/stock_production_lot_quantity_tree/static/description/index.html new file mode 100644 index 000000000..de1bf06d0 --- /dev/null +++ b/stock_production_lot_quantity_tree/static/description/index.html @@ -0,0 +1,432 @@ + + + + + +Stock Production Lot Quantity Tree + + + +
+

Stock Production Lot Quantity Tree

+ + +

Beta License: AGPL-3 OCA/stock-logistics-warehouse Translate me on Weblate Try me on Runboat

+

This module allows to display the lot quantity on its tree 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

+
    +
  • ACSONE SA/NV
  • +
+
+
+

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:

+

rousseldenis

+

This module is part of the OCA/stock-logistics-warehouse project on GitHub.

+

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

+
+
+
+ + diff --git a/stock_production_lot_quantity_tree/views/stock_production_lot.xml b/stock_production_lot_quantity_tree/views/stock_production_lot.xml new file mode 100644 index 000000000..1c4b1fe65 --- /dev/null +++ b/stock_production_lot_quantity_tree/views/stock_production_lot.xml @@ -0,0 +1,18 @@ + + + + + stock.production.lot.tree (in stock_production_lot_quantity_tree) + + stock.lot + + + + + + + +