22 lines
759 B
Python
22 lines
759 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': 'Account Shared Bank Cash',
|
|
'version': '1.0',
|
|
'category': 'Accounting',
|
|
'summary': 'Allows Bank & Cash accounts to be shared between companies',
|
|
'description': """
|
|
This module removes the standard restriction that prevents Chart of Accounts (COA) of type 'Bank and Cash' from being shared across multiple companies.
|
|
""",
|
|
'author': 'Suherdy Yacob',
|
|
'depends': ['point_of_sale', 'account'],
|
|
'data': [
|
|
'views/pos_payment_method_views.xml',
|
|
'views/account_journal_views.xml',
|
|
],
|
|
'installable': True,
|
|
'application': False,
|
|
'license': 'LGPL-3',
|
|
'post_init_hook': '_auto_share_accounts_post_init',
|
|
'uninstall_hook': '_cleanup_shared_accounts_uninstall',
|
|
}
|