diff --git a/account_move_line_tree_limit/README.rst b/account_move_line_tree_limit/README.rst new file mode 100644 index 0000000000..529beb8668 --- /dev/null +++ b/account_move_line_tree_limit/README.rst @@ -0,0 +1,28 @@ +.. 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 + +============================ +Account Move Line Tree Limit +============================ + +Change account move line tree limit in accoun move view. + +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 +======= + +Contributors +------------ + +* Berezi Amubieta +* Ana Juaristi diff --git a/account_move_line_tree_limit/__init__.py b/account_move_line_tree_limit/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/account_move_line_tree_limit/__manifest__.py b/account_move_line_tree_limit/__manifest__.py new file mode 100644 index 0000000000..25298af347 --- /dev/null +++ b/account_move_line_tree_limit/__manifest__.py @@ -0,0 +1,18 @@ +# Copyright 2025 Berezi Amubieta - AvanzOSC +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +{ + "name": "Account Move Line Tree Limit", + "version": "16.0.1.0.0", + "category": "Accounting & Finance", + "license": "AGPL-3", + "author": "AvanzOSC", + "website": "https://github.com/avanzosc/odoo-addons", + "depends": [ + "account", + ], + "data": [ + "views/account_move_view.xml", + ], + "installable": True, +} diff --git a/account_move_line_tree_limit/views/account_move_view.xml b/account_move_line_tree_limit/views/account_move_view.xml new file mode 100644 index 0000000000..c7abc8c9ba --- /dev/null +++ b/account_move_line_tree_limit/views/account_move_view.xml @@ -0,0 +1,12 @@ + + + + account.move + + + + 120 + + + + diff --git a/setup/account_move_line_tree_limit/odoo/addons/account_move_line_tree_limit b/setup/account_move_line_tree_limit/odoo/addons/account_move_line_tree_limit new file mode 120000 index 0000000000..421f0a04e2 --- /dev/null +++ b/setup/account_move_line_tree_limit/odoo/addons/account_move_line_tree_limit @@ -0,0 +1 @@ +../../../../account_move_line_tree_limit \ No newline at end of file diff --git a/setup/account_move_line_tree_limit/setup.py b/setup/account_move_line_tree_limit/setup.py new file mode 100644 index 0000000000..28c57bb640 --- /dev/null +++ b/setup/account_move_line_tree_limit/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)