mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
Merge pull request #163 from akretion/9-fix-cleanup
9.0 base_transaction_id: Remove unneeded dependencies
This commit is contained in:
@@ -52,10 +52,7 @@ both.
|
|||||||
|
|
||||||
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
|
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
|
||||||
:alt: Try me on Runbot
|
:alt: Try me on Runbot
|
||||||
:target: https://runbot.odoo-community.org/runbot/{repo_id}/{branch}
|
:target: https://runbot.odoo-community.org/runbot/98/9.0
|
||||||
|
|
||||||
.. repo_id is available in https://github.com/OCA/maintainer-tools/blob/master/tools/repos_with_ids.txt
|
|
||||||
.. branch is "8.0" for example
|
|
||||||
|
|
||||||
Known issues / Roadmap
|
Known issues / Roadmap
|
||||||
======================
|
======================
|
||||||
|
|||||||
@@ -301,7 +301,7 @@ class AccountJournal(models.Model):
|
|||||||
if col not in move_line_obj._columns:
|
if col not in move_line_obj._columns:
|
||||||
raise UserError(
|
raise UserError(
|
||||||
_("Missing column! Column %s you try to import is not "
|
_("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_vals = self.prepare_move_vals(result_row_list, parser)
|
||||||
move = move_obj.create(move_vals)
|
move = move_obj.create(move_vals)
|
||||||
try:
|
try:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# -*- coding: utf-8 -*# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# © 2012-2015 Yannick Vaucher (Camptocamp)
|
# © 2012-2015 Yannick Vaucher (Camptocamp)
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||||
from . import models
|
from . import models
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# -*- coding: utf-8 -*# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# © 2012 Yannick Vaucher (Camptocamp)
|
# © 2012 Yannick Vaucher (Camptocamp)
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||||
{'name': 'Base transaction id for financial institutes',
|
{'name': 'Base transaction id for financial institutes',
|
||||||
@@ -6,22 +6,16 @@
|
|||||||
'author': "Camptocamp,Odoo Community Association (OCA)",
|
'author': "Camptocamp,Odoo Community Association (OCA)",
|
||||||
'maintainer': 'Camptocamp',
|
'maintainer': 'Camptocamp',
|
||||||
'category': 'Hidden/Dependency',
|
'category': 'Hidden/Dependency',
|
||||||
'complexity': 'easy',
|
|
||||||
'depends': [
|
'depends': [
|
||||||
'account',
|
'sale',
|
||||||
'stock_account',
|
|
||||||
'sale_stock',
|
|
||||||
],
|
],
|
||||||
'website': 'http://www.openerp.com',
|
'website': 'https://www.odoo-community.org/',
|
||||||
'data': [
|
'data': [
|
||||||
'views/invoice.xml',
|
'views/invoice.xml',
|
||||||
'views/sale.xml',
|
'views/sale.xml',
|
||||||
'views/account_move_line.xml',
|
'views/account_move_line.xml',
|
||||||
'views/base_transaction_id.xml',
|
'views/base_transaction_id.xml',
|
||||||
],
|
],
|
||||||
'test': [],
|
|
||||||
'installable': True,
|
'installable': True,
|
||||||
'images': [],
|
|
||||||
'auto_install': False,
|
|
||||||
'license': 'AGPL-3',
|
'license': 'AGPL-3',
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user