account_shared_bank_cash/__manifest__.py

21 lines
716 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': ['account', 'point_of_sale'],
'data': [
'views/pos_payment_method_views.xml',
],
'installable': True,
'application': False,
'license': 'LGPL-3',
'post_init_hook': '_auto_share_accounts_post_init',
'uninstall_hook': '_cleanup_shared_accounts_uninstall',
}