Bug 23228: Add option to automatically display payment receipt for printing after...
[koha.git] / installer / data / mysql / atomicupdate / FinePaymentAutoPopup.perl
1 $DBversion = 'XXX'; # will be replaced by the RM
2 if( CheckVersion( $DBversion ) ) {
3     $dbh->do({
4         INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
5         ('FinePaymentAutoPopup','0',NULL,'If enabled, automatically display a print dialog for a payment receipt when making a payment.','YesNo')
6     });
7
8     SetVersion( $DBversion );
9     print "Upgrade to $DBversion done (Bug 23228 - Add option to automatically display payment receipt for printing after making a payment)\n";
10 }