31 lines
868 B
Python
31 lines
868 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': "India Purchase and Warehouse Management",
|
|
'icon': '/l10n_in/static/description/icon.png',
|
|
|
|
'summary': """
|
|
Define default purchase journal on the warehouse""",
|
|
|
|
'description': """
|
|
Define default purchase journal on the warehouse,
|
|
help you to choose correct purchase journal on the purchase order when
|
|
you change the picking operation.
|
|
useful when you setup the multiple GSTIN units.
|
|
""",
|
|
|
|
'author': "Odoo",
|
|
'website': "https://www.odoo.com",
|
|
'category': 'Accounting/Localizations/Purchase',
|
|
'version': '1.0',
|
|
|
|
'depends': ['l10n_in_purchase', 'l10n_in_stock'],
|
|
|
|
'data': [
|
|
'views/stock_warehouse_views.xml',
|
|
],
|
|
'auto_install': True,
|
|
'license': 'LGPL-3',
|
|
}
|