diff --git a/egd_stock_custom/README.rst b/egd_stock_custom/README.rst new file mode 100644 index 0000000..6f8a1f2 --- /dev/null +++ b/egd_stock_custom/README.rst @@ -0,0 +1,81 @@ +================ +Egd Stock Custom +================ +.. |badge1| image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +|badge1| + +EGD Stock Custom + +**Table of contents** + +.. contents:: + :local: + +Configuration +============= + +To Configure... + +Usage +===== + +To usage... + +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 smash it by providing 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 - `https://www.escodoo.com.br `_ + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the Escodoo. + +.. |maintainer-escodoo| image:: https://github.com/escodoo.png?size=80px + :target: https://github.com/Escodoo + :alt: escodoo + +|maintainer-escodoo| + +We at Escodoo are exclusively dedicated to deploying the Odoo Platform and are +focused on providing solutions that make our customers more competitive, lowering +costs, making technology more accessible and ensuring it is used strategically to +add even more value to the business. + +.. |maintainer-marcelsavegnago| image:: https://github.com/marcelsavegnago.png?size=40px + :target: https://github.com/marcelsavegnago + :alt: marcelsavegnago + +Current `maintainer `__: + +|maintainer-marcelsavegnago| + +To contribute to this module, please visit https://www.escodoo.com.br. diff --git a/egd_stock_custom/__init__.py b/egd_stock_custom/__init__.py new file mode 100644 index 0000000..0650744 --- /dev/null +++ b/egd_stock_custom/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/egd_stock_custom/__manifest__.py b/egd_stock_custom/__manifest__.py new file mode 100644 index 0000000..aefc33b --- /dev/null +++ b/egd_stock_custom/__manifest__.py @@ -0,0 +1,16 @@ +# Copyright 2024 - TODAY, Escodoo +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +{ + "name": "Egd Stock Custom", + "summary": """ + EGD Stock Custom""", + "version": "14.0.1.0.0", + "license": "AGPL-3", + "author": "Escodoo", + "website": "https://github.com/Escodoo/egd-addons", + "depends": ["stock"], + "data": [ + "views/stock_picking_views.xml", + ], +} diff --git a/egd_stock_custom/models/__init__.py b/egd_stock_custom/models/__init__.py new file mode 100644 index 0000000..ae4c272 --- /dev/null +++ b/egd_stock_custom/models/__init__.py @@ -0,0 +1 @@ +from . import stock_picking diff --git a/egd_stock_custom/models/stock_picking.py b/egd_stock_custom/models/stock_picking.py new file mode 100644 index 0000000..3c513af --- /dev/null +++ b/egd_stock_custom/models/stock_picking.py @@ -0,0 +1,9 @@ +# Copyright 2024 - TODAY, Kaynnan Lemes +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo import models + + +class StockPicking(models.Model): + + _inherit = "stock.picking" diff --git a/egd_stock_custom/readme/CONTRIBUTORS.rst b/egd_stock_custom/readme/CONTRIBUTORS.rst new file mode 100644 index 0000000..e69de29 diff --git a/egd_stock_custom/readme/DESCRIPTION.rst b/egd_stock_custom/readme/DESCRIPTION.rst new file mode 100644 index 0000000..e69de29 diff --git a/egd_stock_custom/readme/USAGE.rst b/egd_stock_custom/readme/USAGE.rst new file mode 100644 index 0000000..e69de29 diff --git a/egd_stock_custom/static/description/icon.png b/egd_stock_custom/static/description/icon.png new file mode 100644 index 0000000..12ab005 Binary files /dev/null and b/egd_stock_custom/static/description/icon.png differ diff --git a/egd_stock_custom/views/stock_picking_views.xml b/egd_stock_custom/views/stock_picking_views.xml new file mode 100644 index 0000000..f378747 --- /dev/null +++ b/egd_stock_custom/views/stock_picking_views.xml @@ -0,0 +1,15 @@ + + + + + stock.picking.tree (in egd_stock_custom) + stock.picking + + + + + + + + diff --git a/setup/egd_stock_custom/odoo/addons/egd_stock_custom b/setup/egd_stock_custom/odoo/addons/egd_stock_custom new file mode 120000 index 0000000..74163ba --- /dev/null +++ b/setup/egd_stock_custom/odoo/addons/egd_stock_custom @@ -0,0 +1 @@ +../../../../egd_stock_custom \ No newline at end of file diff --git a/setup/egd_stock_custom/setup.py b/setup/egd_stock_custom/setup.py new file mode 100644 index 0000000..28c57bb --- /dev/null +++ b/setup/egd_stock_custom/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)