Lines 22759-22764
if( CheckVersion( $DBversion ) ) {
Link Here
|
22759 |
NewVersion( $DBversion, 24197, "Add new system preference 'AddressForFailedOverdueNotices'" ); |
22759 |
NewVersion( $DBversion, 24197, "Add new system preference 'AddressForFailedOverdueNotices'" ); |
22760 |
} |
22760 |
} |
22761 |
|
22761 |
|
|
|
22762 |
$DBversion = '20.06.00.035'; |
22763 |
if ( CheckVersion( $DBversion ) ) { |
22764 |
$dbh->do(q{ |
22765 |
INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES |
22766 |
('EdifactInvoiceImport', 'automatic', 'automatic|manual', "If on, don't auto-import EDI invoices, just keep them in the database with the status 'new'", 'Choice') |
22767 |
}); |
22768 |
|
22769 |
NewVersion( $DBversion, 23682, "Add new system preference 'EdifactInvoiceImport'" ); |
22770 |
} |
22771 |
|
22762 |
# SEE bug 13068 |
22772 |
# SEE bug 13068 |
22763 |
# if there is anything in the atomicupdate, read and execute it. |
22773 |
# if there is anything in the atomicupdate, read and execute it. |
22764 |
my $update_dir = C4::Context->config('intranetdir') . '/installer/data/mysql/atomicupdate/'; |
22774 |
my $update_dir = C4::Context->config('intranetdir') . '/installer/data/mysql/atomicupdate/'; |
22765 |
- |
|
|