[MIG] account_partner_reconcile: Migration to 11.0

pull/791/head
Jaume Planas 2018-04-06 16:22:47 +02:00 committed by yibudak
parent b460abc512
commit c3609c8877
No known key found for this signature in database
7 changed files with 21 additions and 25 deletions

View File

@ -17,7 +17,7 @@ The button is visible only to users that belong to the accounting groups
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/96/10.0
:target: https://runbot.odoo-community.org/runbot/96/11.0
Bug Tracker
===========
@ -35,6 +35,7 @@ Contributors
------------
* Jordi Ballester <jordi.ballester@eficent.com>
* Jaume Planas <jaume.planas@minorisa.net>
Maintainer
----------

View File

@ -1,2 +1 @@
# -*- coding: utf-8 -*-
from . import models

View File

@ -1,11 +1,10 @@
# -*- coding: utf-8 -*-
# © 2017 Eficent Business and IT Consulting Services S.L.
# (http://www.eficent.com)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
{
'name': "Account Partner Reconcile",
'version': '10.0.1.0.0',
'version': '11.0.1.0.0',
'category': 'Accounting',
'author': 'Eficent,'
'Odoo Community Association (OCA), ',

View File

@ -1,2 +1 @@
# -*- coding: utf-8 -*-
from . import res_partner

View File

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# © 2017 Eficent Business and IT Consulting Services S.L.
# (http://www.eficent.com)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).

View File

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Eficent Business and IT Consulting Services S.L.
# (http://www.eficent.com)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).

View File

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Eficent Business and IT Consulting Services S.L.
# (http://www.eficent.com)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
@ -10,29 +9,30 @@ class TestAccountPartnerReconcile(TransactionCase):
"""
Tests for Account Partner Reconcile.
"""
def setUp(self):
super(TestAccountPartnerReconcile, self).setUp()
self.partner1 = self.env.ref('base.res_partner_1')
def test_account_partner_reconcile(self):
res = self.partner1.action_open_reconcile()
self.assertDictContainsSubset(
{
'type': 'ir.actions.client',
'tag': 'manual_reconciliation_view',
},
res,
# assertDictContainsSubset is deprecated in Python <3.2
expect = {
'type': 'ir.actions.client',
'tag': 'manual_reconciliation_view',
}
self.assertDictEqual(
expect, {k: v for k, v in res.items() if k in expect},
'There was an error and the manual_reconciliation_view '
'couldn\'t be opened.'
)
self.assertDictContainsSubset(
{
'partner_ids': self.partner1.ids,
'show_mode_selector': True,
},
res['context'],
'couldn\'t be opened.')
expect = {
'partner_ids': self.partner1.ids,
'show_mode_selector': True,
}
self.assertDictEqual(
expect, {k: v for k, v in res['context'].items() if k in expect},
'There was an error and the manual_reconciliation_view '
'couldn\'t be opened.'
)
'couldn\'t be opened.')