[MIG] account_mass_reconcile_by_purchase_line: Migration to 10.0

pull/264/head
mreficent 2017-09-15 11:36:04 +02:00 committed by Miquel Raïch
parent 8b3fd58124
commit 4d1c883910
6 changed files with 7 additions and 7 deletions

View File

@ -24,7 +24,7 @@ To use this module, you need to:
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/98/9.0
:target: https://runbot.odoo-community.org/runbot/98/10.0
Bug Tracker
===========

View File

@ -5,7 +5,7 @@
{
"name": "Account Mass Reconcile by Purchase Line",
"summary": "Allows to reconcile based on the PO line",
"version": "9.0.1.0.0",
"version": "10.0.1.0.0",
"author": "Eficent, "
"Odoo Community Association (OCA)",
"website": "https://github.com/OCA/bank-statement-reconcile",

View File

@ -2,7 +2,7 @@
# © 2015-17 Eficent Business and IT Consulting Services S.L. (www.eficent.com)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
from openerp import api, models
from odoo import api, models
class MassReconcileBase(models.AbstractModel):

View File

@ -2,7 +2,7 @@
# © 2015-17 Eficent Business and IT Consulting Services S.L. (www.eficent.com)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
from openerp import api, models
from odoo import api, models
class AccountMassReconcileMethod(models.Model):

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<odoo>
<record id="account_mass_reconcile_form" model="ir.ui.view">
<field name="name">account.mass.reconcile.form</field>
<field name="priority">20</field>
@ -15,4 +15,4 @@ The lines should have the same partner, product and PO lines to be reconciled."
</page>
</field>
</record>
</openerp>
</odoo>

View File

@ -2,7 +2,7 @@
# © 2015-17 Eficent Business and IT Consulting Services S.L. (www.eficent.com)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
from openerp import api, models
from odoo import api, models
class MassReconcileAdvancedByPurchaseLine(models.TransientModel):