diff --git a/fs_product/__init__.py b/fs_product/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/fs_product/__manifest__.py b/fs_product/__manifest__.py new file mode 100644 index 000000000..9ec385e8a --- /dev/null +++ b/fs_product/__manifest__.py @@ -0,0 +1,16 @@ +{ + "name": "File Storage Product", + "version": "16.0.1.0.0", + "author": "Akretion", + "category": "Product", + "depends": [ + "fs_product_multi_image", # OCA/storage + ], + "website": "https://github.com/akretion/ak-odoo-incubator", + "data": [ + "views/product_template.xml", + ], + "maintainer": ["bealdav"], + "license": "AGPL-3", + "installable": True, +} diff --git a/fs_product/readme/DESCRIPTION.rst b/fs_product/readme/DESCRIPTION.rst new file mode 100644 index 000000000..74cfb4b31 --- /dev/null +++ b/fs_product/readme/DESCRIPTION.rst @@ -0,0 +1,3 @@ +Usability additional module for File Storage module + + - filters on products diff --git a/fs_product/views/product_template.xml b/fs_product/views/product_template.xml new file mode 100644 index 000000000..7583ba334 --- /dev/null +++ b/fs_product/views/product_template.xml @@ -0,0 +1,23 @@ + + + + + product.template + + + + + + + + + + diff --git a/setup/fs_product/odoo/addons/fs_product b/setup/fs_product/odoo/addons/fs_product new file mode 120000 index 000000000..88cac4e40 --- /dev/null +++ b/setup/fs_product/odoo/addons/fs_product @@ -0,0 +1 @@ +../../../../fs_product \ No newline at end of file diff --git a/setup/fs_product/setup.py b/setup/fs_product/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/fs_product/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)