diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/stock_account/__manifest__.py | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/stock_account/__manifest__.py')
| -rw-r--r-- | addons/stock_account/__manifest__.py | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/addons/stock_account/__manifest__.py b/addons/stock_account/__manifest__.py new file mode 100644 index 00000000..310ca16e --- /dev/null +++ b/addons/stock_account/__manifest__.py @@ -0,0 +1,44 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': 'WMS Accounting', + 'version': '1.1', + 'summary': 'Inventory, Logistic, Valuation, Accounting', + 'description': """ +WMS Accounting module +====================== +This module makes the link between the 'stock' and 'account' modules and allows you to create accounting entries to value your stock movements + +Key Features +------------ +* Stock Valuation (periodical or automatic) +* Invoice from Picking + +Dashboard / Reports for Warehouse Management includes: +------------------------------------------------------ +* Stock Inventory Value at given date (support dates in the past) + """, + 'depends': ['stock', 'account'], + 'category': 'Hidden', + 'sequence': 16, + 'data': [ + 'security/stock_account_security.xml', + 'security/ir.model.access.csv', + 'data/stock_account_data.xml', + 'views/stock_account_views.xml', + 'views/res_config_settings_views.xml', + 'data/product_data.xml', + 'views/product_views.xml', + 'views/stock_quant_views.xml', + 'views/stock_valuation_layer_views.xml', + 'wizard/stock_valuation_layer_revaluation_views.xml', + 'report/report_stock_forecasted.xml', + ], + 'test': [ + ], + 'installable': True, + 'auto_install': True, + 'post_init_hook': '_configure_journals', + 'license': 'LGPL-3', +} |
