[MIG] account_reconcile_restrict_partner_mismatch: Migration to 15.0

pull/596/head
kaynnan 2023-07-07 10:58:44 -03:00 committed by sbejaoui
parent fea11a0647
commit 337f898683
3 changed files with 4 additions and 9 deletions

View File

@ -5,7 +5,7 @@
"name": "Reconcile restrict partner mismatch",
"summary": "Restrict reconciliation on receivable "
"and payable accounts to the same partner",
"version": "14.0.1.0.0",
"version": "15.0.1.0.0",
"depends": ["account"],
"author": "Camptocamp, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/account-reconcile",

View File

@ -4,12 +4,7 @@
<field name="name">Reconciled items with partner mismatch</field>
<field name="model">account.reconcile.partner.mismatch.report</field>
<field name="arch" type="xml">
<tree
string="Reconciled items with partner mismatch"
create="false"
delete="false"
edit="false"
>
<tree create="false" delete="false" edit="false">
<!-- links are not clickable in tree view
only after open form view -->
<field name="partial_reconcile_id" />

View File

@ -2,10 +2,10 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
from odoo.exceptions import UserError
from odoo.tests.common import SavepointCase
from odoo.tests.common import TransactionCase
class TestReconciliation(SavepointCase):
class TestReconciliation(TransactionCase):
@classmethod
def setUpClass(cls):
super().setUpClass()