mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
- 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
44 lines
1.3 KiB
Python
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',
|
|
}
|