Files
account-reconcile/base_transaction_id/__openerp__.py
Yannick Vaucher 14d33736f1 [PORT] base_transaction_id to 9.0
- Reactivate module
- move files in views and models dirs
- create README.rst from description
- make list of contributors
- remove change for invoice created on picking as it doesn't exist
anymore in Odoo Community
- move overrides in bank statement as logic moved in move lines
- adapt view inheritance to not depends on string attribute
2016-01-18 19:58:55 +01:00

44 lines
1.3 KiB
Python

# -*- coding: utf-8 -*-
#
# Author: Yannick Vaucher (Camptocamp)
# Copyright 2012 Camptocamp SA
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
{'name': 'Base transaction id for financial institutes',
'version': '9.0.1.0.0',
'author': "Camptocamp,Odoo Community Association (OCA)",
'maintainer': 'Camptocamp',
'category': 'Hidden/Dependency',
'complexity': 'easy',
'depends': [
'account',
'stock_account',
'sale_stock',
],
'website': 'http://www.openerp.com',
'data': [
'views/invoice.xml',
'views/sale.xml',
'views/account_move_line.xml',
'views/base_transaction_id.xml',
],
'test': [],
'installable': True,
'images': [],
'auto_install': False,
'license': 'AGPL-3',
}