[MIG] account_mass_reconcile_by_purchase_line: Migration to 10.0
parent
8b3fd58124
commit
4d1c883910
|
@ -24,7 +24,7 @@ To use this module, you need to:
|
||||||
|
|
||||||
.. 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/98/9.0
|
:target: https://runbot.odoo-community.org/runbot/98/10.0
|
||||||
|
|
||||||
Bug Tracker
|
Bug Tracker
|
||||||
===========
|
===========
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
{
|
{
|
||||||
"name": "Account Mass Reconcile by Purchase Line",
|
"name": "Account Mass Reconcile by Purchase Line",
|
||||||
"summary": "Allows to reconcile based on the PO line",
|
"summary": "Allows to reconcile based on the PO line",
|
||||||
"version": "9.0.1.0.0",
|
"version": "10.0.1.0.0",
|
||||||
"author": "Eficent, "
|
"author": "Eficent, "
|
||||||
"Odoo Community Association (OCA)",
|
"Odoo Community Association (OCA)",
|
||||||
"website": "https://github.com/OCA/bank-statement-reconcile",
|
"website": "https://github.com/OCA/bank-statement-reconcile",
|
|
@ -2,7 +2,7 @@
|
||||||
# © 2015-17 Eficent Business and IT Consulting Services S.L. (www.eficent.com)
|
# © 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).
|
# 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):
|
class MassReconcileBase(models.AbstractModel):
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
# © 2015-17 Eficent Business and IT Consulting Services S.L. (www.eficent.com)
|
# © 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).
|
# 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):
|
class AccountMassReconcileMethod(models.Model):
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<openerp>
|
<odoo>
|
||||||
<record id="account_mass_reconcile_form" model="ir.ui.view">
|
<record id="account_mass_reconcile_form" model="ir.ui.view">
|
||||||
<field name="name">account.mass.reconcile.form</field>
|
<field name="name">account.mass.reconcile.form</field>
|
||||||
<field name="priority">20</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>
|
</page>
|
||||||
</field>
|
</field>
|
||||||
</record>
|
</record>
|
||||||
</openerp>
|
</odoo>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
# © 2015-17 Eficent Business and IT Consulting Services S.L. (www.eficent.com)
|
# © 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).
|
# 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):
|
class MassReconcileAdvancedByPurchaseLine(models.TransientModel):
|
||||||
|
|
Loading…
Reference in New Issue