flectra/addons/stock_account/__manifest__.py
2018-01-16 16:38:17 +05:30

46 lines
1.4 KiB
Python

# -*- coding: utf-8 -*-
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
{
'name': 'WMS Accounting',
'author': 'Odoo S.A.',
'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)
""",
'website': 'https://flectrahq.com/page/warehouse',
'depends': ['stock', 'account'],
'category': 'Hidden',
'sequence': 16,
'demo': [
'data/stock_account_demo.yml'
],
'data': [
'security/stock_account_security.xml',
'security/ir.model.access.csv',
'wizard/stock_change_standard_price_views.xml',
'data/stock_account_data.xml',
'views/stock_account_views.xml',
'views/res_config_settings_views.xml',
'data/product_data.xml',
'views/product_views.xml',
'data/stock_account_data_post_install.yml',
],
'test': [
],
'installable': True,
'auto_install': True,
}