From c283c8e629d799c3fbc2500a5d0c33d783f4aba6 Mon Sep 17 00:00:00 2001 From: Aritz Olea Date: Tue, 21 Nov 2023 10:03:14 +0100 Subject: [PATCH] [IMP] stock_removal_location_by_priority: pre-commit stuff --- .../odoo/addons/stock_removal_location_by_priority | 1 + setup/stock_removal_location_by_priority/setup.py | 6 ++++++ 2 files changed, 7 insertions(+) create mode 120000 setup/stock_removal_location_by_priority/odoo/addons/stock_removal_location_by_priority create mode 100644 setup/stock_removal_location_by_priority/setup.py diff --git a/setup/stock_removal_location_by_priority/odoo/addons/stock_removal_location_by_priority b/setup/stock_removal_location_by_priority/odoo/addons/stock_removal_location_by_priority new file mode 120000 index 000000000..c56450a33 --- /dev/null +++ b/setup/stock_removal_location_by_priority/odoo/addons/stock_removal_location_by_priority @@ -0,0 +1 @@ +../../../../stock_removal_location_by_priority \ No newline at end of file diff --git a/setup/stock_removal_location_by_priority/setup.py b/setup/stock_removal_location_by_priority/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/stock_removal_location_by_priority/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)