]> git.koha-community.org Git - koha.git/commit
Bug 18242: [SOLUTION 2]Handle correctly move to old_issues
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Thu, 9 Mar 2017 19:58:17 +0000 (16:58 -0300)
committerKatrin Fischer <katrin.fischer.83@web.de>
Mon, 10 Apr 2017 21:38:56 +0000 (23:38 +0200)
commit2f77044f63e1d7faef3692a8533b2c56c2b723ab
treee36a73f17236683d43769a141b6d2c6323395629
parent6bf6a53b86a688bead0b8b3b114c9dc509a661ae
Bug 18242: [SOLUTION 2]Handle correctly move to old_issues

The table old_issues has a primary key defined on the issue_id column.
This issue_id comes from the issues table when an item is checked in.

In some case the value of issue_id already exists in the table

Basically this happens when an item is returned and mysqld is restarted:
The auto increment value for issues.issue_id will be reset to
MAX(issue_id)+1 (which is the value of the last entry of old_issues).
See also the description of bug 18003 for more informations.

In this solution the change is done at code level instead of DB
structure: If old_issues.issue_id already exists before moving from
the issues table, the issue_id is updated (not on cascade for
accountlines.issue_id, should it?) before the move.

Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Signed-off-by: Brendan A Gallagher <brendan@bywatersolutions.com>
(cherry picked from commit 7aa0808ff227850fc448b74dabed9b15ac0eb927)
Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
C4/Circulation.pm