[MIG] account_partner_reconcile: Migration to 10.0
parent
5533232309
commit
b460abc512
|
@ -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/9.0
|
||||
:target: https://runbot.odoo-community.org/runbot/96/10.0
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
{
|
||||
'name': "Account Partner Reconcile",
|
||||
'version': '9.0.1.0.0',
|
||||
'version': '10.0.1.0.0',
|
||||
'category': 'Accounting',
|
||||
'author': 'Eficent,'
|
||||
'Odoo Community Association (OCA), ',
|
|
@ -3,7 +3,7 @@
|
|||
# (http://www.eficent.com)
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from openerp import models, api
|
||||
from odoo import api, models
|
||||
|
||||
|
||||
class ResPartner(models.Model):
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
# -*- 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).
|
||||
|
||||
from . import test_account_partner_reconcile
|
|
@ -0,0 +1,38 @@
|
|||
# -*- 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).
|
||||
|
||||
from odoo.tests.common import TransactionCase
|
||||
|
||||
|
||||
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,
|
||||
'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'],
|
||||
'There was an error and the manual_reconciliation_view '
|
||||
'couldn\'t be opened.'
|
||||
)
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<openerp>
|
||||
<odoo>
|
||||
|
||||
<record id="res_partner_view_buttons" model="ir.ui.view">
|
||||
<field name="name">res.partner.view.buttons</field>
|
||||
|
@ -17,4 +17,4 @@
|
|||
</field>
|
||||
</record>
|
||||
|
||||
</openerp>
|
||||
</odoo>
|
||||
|
|
Loading…
Reference in New Issue