diff --git a/account_move_base_import/README.rst b/account_move_base_import/README.rst index 4f223928..da3e387e 100644 --- a/account_move_base_import/README.rst +++ b/account_move_base_import/README.rst @@ -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 ====================== diff --git a/account_move_base_import/models/account_journal.py b/account_move_base_import/models/account_journal.py index 58de47cd..e04ca80a 100644 --- a/account_move_base_import/models/account_journal.py +++ b/account_move_base_import/models/account_journal.py @@ -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: diff --git a/base_transaction_id/__init__.py b/base_transaction_id/__init__.py index 038f720f..9219cc0e 100644 --- a/base_transaction_id/__init__.py +++ b/base_transaction_id/__init__.py @@ -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 diff --git a/base_transaction_id/__openerp__.py b/base_transaction_id/__openerp__.py index cfe25a12..ebe9944d 100644 --- a/base_transaction_id/__openerp__.py +++ b/base_transaction_id/__openerp__.py @@ -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', }