forked from Mapan/odoo17e
20 lines
504 B
Python
20 lines
504 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': "Mrp Accounting",
|
|
'version': "1.0",
|
|
'category': 'Inventory/Inventory',
|
|
'summary': "Bridge between Mrp and Accounting",
|
|
'description': """
|
|
Automatic accounting for MRP
|
|
""",
|
|
'depends': ['mrp_account', 'stock_accountant'],
|
|
'data': [
|
|
'views/res_config_settings_views.xml',
|
|
],
|
|
'installable': True,
|
|
'auto_install': True,
|
|
'license': 'OEEL-1',
|
|
}
|