Bug 18930: Do not insert '*' in circulation_rules
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Thu, 25 Oct 2018 13:16:20 +0000 (10:16 -0300)
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>
Mon, 15 Jul 2019 10:27:59 +0000 (11:27 +0100)
We must insert NULL instead, otherwise the FK constraint will fail

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Agustin Moyano <agustinmoyano@theke.io>
Signed-off-by: Josef Moravec <josef.moravec@gmail.com>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

installer/data/mysql/atomicupdate/bug_18930.perl

index 3426d99..99533de 100644 (file)
@@ -3,7 +3,7 @@ if( CheckVersion( $DBversion ) ) {
     if ( column_exists( 'refund_lost_item_fee_rules', 'refund' ) ) {
         $dbh->do("
             INSERT INTO circulation_rules ( categorycode, branchcode, itemtype, rule_name, rule_value )
-            SELECT NULL, branchcode, NULL, 'refund', refund
+            SELECT NULL, IF(branchcode='*', NULL, branchcode), NULL, 'refund', refund
             FROM refund_lost_item_fee_rules
         ");
         $dbh->do("DROP TABLE refund_lost_item_fee_rules");