forked from Mapan/odoo17e
22 lines
599 B
Python
22 lines
599 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': "Sale Accounting",
|
|
'version': "1.0",
|
|
'category': "Sales/Sales",
|
|
'summary': "Bridge between Sale and Accounting",
|
|
'description': """
|
|
Notify that a matching sale order exists in the reconciliation widget.
|
|
""",
|
|
'depends': ['sale', 'account_accountant'],
|
|
'installable': True,
|
|
'auto_install': True,
|
|
'license': 'OEEL-1',
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'sale_account_accountant/static/src/components/**/*',
|
|
],
|
|
},
|
|
}
|