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

36 lines
1.1 KiB
Python

# -*- coding: utf-8 -*-
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
{
'name': 'WMS Landed Costs',
'author': 'Odoo S.A.',
'version': '1.1',
'summary': 'Landed Costs',
'description': """
Landed Costs Management
=======================
This module allows you to easily add extra costs on pickings and decide the split of these costs among their stock moves in order to take them into account in your stock valuation.
""",
'website': 'https://flectrahq.com/page/warehouse',
'depends': ['stock_account', 'purchase'],
'category': 'Warehouse',
'sequence': 16,
'demo': [
],
'data': [
'security/ir.model.access.csv',
'data/stock_landed_cost_data.xml',
'views/product_views.xml',
'views/stock_landed_cost_views.xml',
'views/res_config_settings_views.xml',
],
'test': [
'../account/test/account_minimal_test.xml',
'../stock_account/test/stock_valuation_account.xml',
'test/stock_landed_costs.yml',
'test/stock_landed_costs_rounding.yml',
],
'installable': True,
'auto_install': False,
}