[MIG] account_reconcile_restrict_partner_mismatch: Migration to 15.0
parent
fea11a0647
commit
337f898683
|
@ -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",
|
||||
|
|
|
@ -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" />
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue