From 3751379f1e9a4c215fb6eb898b4ccc67659b9ace Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Tue, 10 May 2022 21:51:50 +0700 Subject: initial commit 2 --- addons/l10n_in_stock/__init__.py | 2 ++ addons/l10n_in_stock/__manifest__.py | 23 ++++++++++++++++++++++ addons/l10n_in_stock/data/product_demo.xml | 8 ++++++++ .../views/report_stockpicking_operations.xml | 10 ++++++++++ 4 files changed, 43 insertions(+) create mode 100644 addons/l10n_in_stock/__init__.py create mode 100644 addons/l10n_in_stock/__manifest__.py create mode 100644 addons/l10n_in_stock/data/product_demo.xml create mode 100644 addons/l10n_in_stock/views/report_stockpicking_operations.xml (limited to 'addons/l10n_in_stock') diff --git a/addons/l10n_in_stock/__init__.py b/addons/l10n_in_stock/__init__.py new file mode 100644 index 00000000..67dee8c6 --- /dev/null +++ b/addons/l10n_in_stock/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. diff --git a/addons/l10n_in_stock/__manifest__.py b/addons/l10n_in_stock/__manifest__.py new file mode 100644 index 00000000..4369fcd2 --- /dev/null +++ b/addons/l10n_in_stock/__manifest__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': 'Indian - Stock Report(GST)', + 'version': '1.0', + 'description': """GST Stock Report""", + 'category': 'Accounting/Localizations', + 'depends': [ + 'l10n_in', + 'stock', + ], + 'data': [ + 'views/report_stockpicking_operations.xml', + ], + 'demo': [ + 'data/product_demo.xml', + ], + 'installable': True, + 'application': False, + 'auto_install': True, + 'license': 'LGPL-3', +} diff --git a/addons/l10n_in_stock/data/product_demo.xml b/addons/l10n_in_stock/data/product_demo.xml new file mode 100644 index 00000000..52d4c17a --- /dev/null +++ b/addons/l10n_in_stock/data/product_demo.xml @@ -0,0 +1,8 @@ + + + + 4819.60.00 + Box files, letter trays, storage boxes and similar articles, of a kind used in offices, shops or the like + + + diff --git a/addons/l10n_in_stock/views/report_stockpicking_operations.xml b/addons/l10n_in_stock/views/report_stockpicking_operations.xml new file mode 100644 index 00000000..cb6fb012 --- /dev/null +++ b/addons/l10n_in_stock/views/report_stockpicking_operations.xml @@ -0,0 +1,10 @@ + + + + + + -- cgit v1.2.3