Skip to content

Commit

Permalink
Merge PR OCA#3149 into 14.0
Browse files Browse the repository at this point in the history
Signed-off-by sergiocorato
  • Loading branch information
OCA-git-bot committed Feb 27, 2024
2 parents 652e7fa + 3982c7a commit ad3799f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions l10n_it_split_payment/migrations/14.0.1.0.0/post-migration.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ def migrate(cr, installed_version):
"""
update account_move_line
set is_split_payment = True
where id in {line_ids}
where id in ({line_ids})
""".format(
line_ids=tuple(line_ids)
line_ids=",".join(map(str, line_ids))
),
)

0 comments on commit ad3799f

Please sign in to comment.