]> git.koha-community.org Git - koha.git/commit
Bug 19317: (bug 18966 follow-up) Remove leftover
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Thu, 14 Sep 2017 13:57:40 +0000 (10:57 -0300)
committerFridolin Somers <fridolin.somers@biblibre.com>
Fri, 27 Oct 2017 12:00:27 +0000 (14:00 +0200)
commited77ef6a3dba5e71290434b678322154cb1c8d42
tree8ff99c779f104108c7e7f41ef9fdbbf476af655f
parentc0d1fc37a1758f3e2733e32be958d37f36fc24b6
Bug 19317: (bug 18966 follow-up) Remove leftover

Nothing important here, but this line should have been removed by bug
18966:

2177         # Update the fines
2178         $dbh->do(q|UPDATE accountlines SET issue_id = ? WHERE
issue_id = ?|, undef, $old_checkout->issue_id, $issue->issue_id);

The issue_id is now the same when moved from issues to old_issues. We do
not need to update the accountlines table.

No test plan here, you need to understand previous changes to validate
this patch.

Signed-off-by: Colin Campbell <colin.campbell@ptfs-europe.com>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
(cherry picked from commit 0aec9e11d5fa355738cb3475ad72c4aad8efeafa)
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
C4/Circulation.pm