[IMP] update dotfiles [ci skip]

This commit is contained in:
oca-git-bot
2022-03-30 21:45:13 +02:00
committed by sonhd91
parent 12ecf76c55
commit 242b01bb1d
2 changed files with 4 additions and 4 deletions

View File

@@ -17,7 +17,7 @@ class MassReconcileAdvanced(models.AbstractModel):
_description = "Mass Reconcile Advanced"
def _query_debit(self):
"""Select all move (debit>0) as candidate. """
"""Select all move (debit>0) as candidate."""
select = self._select_query()
sql_from = self._from_query()
where, params = self._where_query()
@@ -28,7 +28,7 @@ class MassReconcileAdvanced(models.AbstractModel):
return self.env.cr.dictfetchall()
def _query_credit(self):
"""Select all move (credit>0) as candidate. """
"""Select all move (credit>0) as candidate."""
select = self._select_query()
sql_from = self._from_query()
where, params = self._where_query()
@@ -220,7 +220,7 @@ class MassReconcileAdvanced(models.AbstractModel):
return False
def _rec_auto_lines_advanced(self, credit_lines, debit_lines):
""" Advanced reconciliation main loop """
"""Advanced reconciliation main loop"""
# pylint: disable=invalid-commit
reconciled_ids = []
reconcile_groups = []

View File

@@ -254,7 +254,7 @@ class AccountMassReconcile(models.Model):
}
def open_unreconcile(self):
""" Open the view of move line with the unreconciled move lines"""
"""Open the view of move line with the unreconciled move lines"""
self.ensure_one()
obj_move_line = self.env["account.move.line"]
lines = obj_move_line.search(