Skip to content

Commit

Permalink
[FIX] account_reconciliation_widget: dict refactoring / typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ozono committed Jan 19, 2021
1 parent aa43f58 commit 038f415
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions account_reconciliation_widget/models/account_journal.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ def action_open_reconcile_to_check(self):
action_context = {
"show_mode_selector": False,
"company_ids": self.mapped("company_id").ids,
"suspense_moves_mode": True,
"statement_line_ids": ids,
}
action_context.update({"suspense_moves_mode": True})
action_context.update({"statement_line_ids": ids})
return {
"type": "ir.actions.client",
"tag": "bank_statement_reconciliation_view",
Expand Down
2 changes: 1 addition & 1 deletion account_reconciliation_widget/models/account_move.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def _create_writeoff(self, writeoff_vals):
:param writeoff_vals: list of dicts containing values suitable for
account_move_line.create(). The data in vals will be processed to
create bot writeoff account.move.line and their enclosing
create both writeoff account.move.line and their enclosing
account.move.
"""

Expand Down

0 comments on commit 038f415

Please sign in to comment.