1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/sale_account_accountant/__manifest__.py
2024-12-10 09:04:09 +07:00

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/**/*',
],
},
}