19 lines
523 B
Python
19 lines
523 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
{
|
||
|
'name' : 'Tax Cash Basis Edit Base Account',
|
||
|
'version' : '1.0',
|
||
|
'summary': 'Add a custom account to handle base amount lines',
|
||
|
'sequence': 5,
|
||
|
'description': """
|
||
|
Move the cash basis lines to another account.
|
||
|
""",
|
||
|
'category': 'Accounting',
|
||
|
'depends': ['account_tax_cash_basis'],
|
||
|
'data': [
|
||
|
'views/account_tax_views.xml',
|
||
|
],
|
||
|
'installable': True,
|
||
|
'auto_install': True,
|
||
|
}
|