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 - Fix definition of javascript customization in reconciliation - Fix display transaction_ref label on move line view - Fix move proposition for reconcile. search with transaction_ref - Use short headers - Update README for bug tracking
28 lines
724 B
Python
28 lines
724 B
Python
# -*- coding: utf-8 -*# -*- coding: utf-8 -*-
|
|
# © 2012 Yannick Vaucher (Camptocamp)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
{'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',
|
|
}
|