Merge pull request #163 from akretion/9-fix-cleanup

9.0 base_transaction_id: Remove unneeded dependencies
This commit is contained in:
Yannick Vaucher
2018-04-06 13:46:48 +02:00
committed by GitHub
4 changed files with 6 additions and 15 deletions

View File

@@ -52,10 +52,7 @@ both.
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/{repo_id}/{branch}
.. repo_id is available in https://github.com/OCA/maintainer-tools/blob/master/tools/repos_with_ids.txt
.. branch is "8.0" for example
:target: https://runbot.odoo-community.org/runbot/98/9.0
Known issues / Roadmap
======================

View File

@@ -301,7 +301,7 @@ class AccountJournal(models.Model):
if col not in move_line_obj._columns:
raise UserError(
_("Missing column! Column %s you try to import is not "
"present in the bank statement line!") % col)
"present in the account move line!") % col)
move_vals = self.prepare_move_vals(result_row_list, parser)
move = move_obj.create(move_vals)
try:

View File

@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*# -*- coding: utf-8 -*-
# -*- coding: utf-8 -*-
# © 2012-2015 Yannick Vaucher (Camptocamp)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from . import models

View File

@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*# -*- 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',
@@ -6,22 +6,16 @@
'author': "Camptocamp,Odoo Community Association (OCA)",
'maintainer': 'Camptocamp',
'category': 'Hidden/Dependency',
'complexity': 'easy',
'depends': [
'account',
'stock_account',
'sale_stock',
'sale',
],
'website': 'http://www.openerp.com',
'website': 'https://www.odoo-community.org/',
'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',
}