Skip to content

Commit

Permalink
Finish migration to v11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
grindtildeath authored and anothingguy committed Mar 4, 2022
1 parent bb33acb commit f5ccbb4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
# Copyright 2015-2018 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
from odoo import api, models
from odoo import models


class AccountMassReconcileMethod(models.Model):

_inherit = 'account.mass.reconcile.method'

@api.model
def _get_all_rec_method(self):
_super = super(AccountMassReconcileMethod, self)
methods = _super._get_all_rec_method()
def _selection_name(self):
methods = super()._selection_name()
methods += [
('mass.reconcile.advanced.ref.deep.search',
'Advanced. Partner and Ref. Deep Search'),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2018 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo.tests import SavepointCase
Expand Down

0 comments on commit f5ccbb4

Please sign in to comment.