mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
[FIX] Super call on static methods
This commit is contained in:
committed by
Florian da Costa
parent
74072c4616
commit
d17534636f
@@ -60,8 +60,11 @@ class MassReconcileBase(models.AbstractModel):
|
|||||||
)
|
)
|
||||||
return ["account_move_line.{}".format(col) for col in aml_cols]
|
return ["account_move_line.{}".format(col) for col in aml_cols]
|
||||||
|
|
||||||
|
def _selection_columns(self):
|
||||||
|
return self._base_columns()
|
||||||
|
|
||||||
def _select_query(self, *args, **kwargs):
|
def _select_query(self, *args, **kwargs):
|
||||||
return "SELECT %s" % ', '.join(self._base_columns())
|
return "SELECT %s" % ', '.join(self._selection_columns())
|
||||||
|
|
||||||
def _from_query(self, *args, **kwargs):
|
def _from_query(self, *args, **kwargs):
|
||||||
return ("FROM account_move_line ")
|
return ("FROM account_move_line ")
|
||||||
|
|||||||
Reference in New Issue
Block a user