Merge pull request #147 from mdietrichc2c/9.0-correct_deep_search

Correct missing underscore
This commit is contained in:
Frédéric Clementi
2016-07-07 15:24:30 +02:00
committed by GitHub

View File

@@ -11,7 +11,7 @@ class AccountMassReconcileMethod(models.Model):
@api.model
def _get_all_rec_method(self):
_super = super(AccountMassReconcileMethod, self)
methods = _super.get_all_rec_method()
methods = _super._get_all_rec_method()
methods += [
('mass.reconcile.advanced.ref.deep.search',
'Advanced. Partner and Ref. Deep Search'),