Bug 26569: DBRev 20.06.00.053
[koha.git] / installer / data / mysql / labels_upgrade.pl
blobbb891b459c6e7cb10515ede46b12a22f8995130c
1 #!/usr/bin/perl
3 # Copyright 2009 Foundations Bible College.
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20 use Modern::Perl;
22 use C4::Context;
24 my $sth = C4::Context->dbh;
26 # NOTE: As long as we die on error *before* the DROP TABLE instructions are executed, the script may simply be rerun after addressing whatever errors occur; If we get past the data conversion without error, the DROPs and ALTERs could be executed manually if need be.
28 # Turn off key checks for duration of script...
29 $sth->do("
30 SET UNIQUE_CHECKS = 0;
31 ") or die "DB ERROR: " . $sth->errstr . "\n";
33 $sth->do("
34 SET FOREIGN_KEY_CHECKS = 0;
35 ") or die "DB ERROR: " . $sth->errstr . "\n";
37 # Create new tables with temporary names...
38 $sth->do("
39 DROP TABLE IF EXISTS labels_batches_tmp;");
40 $sth->do("
41 CREATE TABLE `labels_batches_tmp` (
42 `label_id` int(11) NOT NULL auto_increment,
43 `batch_id` int(10) NOT NULL default '1',
44 `item_number` int(11) NOT NULL default '0',
45 `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
46 `branch_code` varchar(10) NOT NULL default 'NB',
47 PRIMARY KEY USING BTREE (`label_id`),
48 KEY `branch_fk_constraint` (`branch_code`),
49 KEY `item_fk_constraint` (`item_number`),
50 FOREIGN KEY (`branch_code`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE,
51 FOREIGN KEY (`item_number`) REFERENCES `items` (`itemnumber`) ON DELETE CASCADE
52 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
53 ") or die "DB ERROR: " . $sth->errstr . "\n";
55 $sth->do("
56 DROP TABLE IF EXISTS labels_layouts_tmp;");
57 $sth->do("
58 CREATE TABLE `labels_layouts_tmp` (
59 `layout_id` int(4) NOT NULL auto_increment,
60 `barcode_type` char(100) NOT NULL default 'CODE39',
61 `printing_type` char(32) NOT NULL default 'BAR',
62 `layout_name` char(20) NOT NULL default 'DEFAULT',
63 `guidebox` int(1) default '0',
64 `font` char(10) character set utf8 collate utf8_unicode_ci NOT NULL default 'TR',
65 `font_size` int(4) NOT NULL default '10',
66 `callnum_split` int(1) default '0',
67 `text_justify` char(1) character set utf8 collate utf8_unicode_ci NOT NULL default 'L',
68 `format_string` varchar(210) NOT NULL default 'barcode',
69 PRIMARY KEY USING BTREE (`layout_id`)
70 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
71 ") or die "DB ERROR: " . $sth->errstr . "\n";
73 $sth->do("
74 DROP TABLE IF EXISTS labels_templates_tmp;");
75 $sth->do("
76 CREATE TABLE `labels_templates_tmp` (
77 `template_id` int(4) NOT NULL auto_increment,
78 `profile_id` int(4) default NULL,
79 `template_code` char(100) NOT NULL default 'DEFAULT TEMPLATE',
80 `template_desc` char(100) NOT NULL default 'Default description',
81 `page_width` float NOT NULL default '0',
82 `page_height` float NOT NULL default '0',
83 `label_width` float NOT NULL default '0',
84 `label_height` float NOT NULL default '0',
85 `top_text_margin` float NOT NULL default '0',
86 `left_text_margin` float NOT NULL default '0',
87 `top_margin` float NOT NULL default '0',
88 `left_margin` float NOT NULL default '0',
89 `cols` int(2) NOT NULL default '0',
90 `rows` int(2) NOT NULL default '0',
91 `col_gap` float NOT NULL default '0',
92 `row_gap` float NOT NULL default '0',
93 `units` char(20) NOT NULL default 'POINT',
94 PRIMARY KEY (`template_id`),
95 KEY `template_profile_fk_constraint` (`profile_id`)
96 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
97 ") or die "DB ERROR: " . $sth->errstr . "\n";
99 $sth->do("
100 DROP TABLE IF EXISTS printers_profile_tmp;");
101 $sth->do("
102 CREATE TABLE `printers_profile_tmp` (
103 `profile_id` int(4) NOT NULL auto_increment,
104 `printer_name` varchar(40) NOT NULL default 'Default Printer',
105 `template_id` int(4) NOT NULL default '0',
106 `paper_bin` varchar(20) NOT NULL default 'Bypass',
107 `offset_horz` float NOT NULL default '0',
108 `offset_vert` float NOT NULL default '0',
109 `creep_horz` float NOT NULL default '0',
110 `creep_vert` float NOT NULL default '0',
111 `units` char(20) NOT NULL default 'POINT',
112 PRIMARY KEY (`profile_id`),
113 UNIQUE KEY `printername` (`printer_name`,`template_id`,`paper_bin`)
114 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
115 ") or die "DB ERROR: " . $sth->errstr . "\n";
117 # Migrate data from existing tables to new tables...
119 $sth->do("INSERT INTO `labels_batches_tmp` (label_id, batch_id, item_number) SELECT labelid, batch_id, itemnumber FROM labels;") or die "DB ERROR: " . $sth->errstr . "\n";
120 # Since the new label creator keys batches on branch code we must add a branch code during the conversion; the simplest solution appears to be to grab the top branch code from the branches table...
121 $sth->do("UPDATE `labels_batches_tmp` SET branch_code=(SELECT branchcode FROM branches LIMIT 0,1);") or die "DB ERROR: " . $sth->errstr . "\n";
124 $sth->do("INSERT INTO `labels_layouts_tmp` (layout_id, barcode_type, printing_type, layout_name, guidebox, callnum_split, text_justify, format_string) SELECT lc.id, lc.barcodetype, lc.printingtype, lc.layoutname, lc.guidebox, lc.callnum_split, lc.text_justify, lc.formatstring FROM labels_conf AS lc;") or die "DB ERROR: " . $sth->errstr . "\n";
126 $sth->do("INSERT INTO `labels_templates_tmp` (template_id, template_code, template_desc, page_width, page_height, label_width, label_height, top_margin, left_margin, cols, rows, col_gap, row_gap, units) SELECT lt.tmpl_id, lt.tmpl_code, lt.tmpl_desc, lt.page_width, lt.page_height, lt.label_width, lt.label_height, lt.topmargin, lt.leftmargin, lt.cols, lt.rows, lt.colgap, lt.rowgap, lt.units FROM labels_templates AS lt;") or die "DB ERROR: " . $sth->errstr . "\n";
128 $sth->do("INSERT INTO `printers_profile_tmp` (profile_id, printer_name, template_id, paper_bin, offset_horz, offset_vert, creep_horz, creep_vert, units) SELECT prof_id, printername, tmpl_id, paper_bin, offset_horz, offset_vert, creep_horz, creep_vert, unit FROM printers_profile;") or die "DB ERROR: " . $sth->errstr . "\n";
131 my $sth1 = C4::Context->dbh->prepare("SELECT layout_id, format_string FROM labels_layouts_tmp;");
132 #$sth1->{'TraceLevel'} = 3;
133 $sth1->execute or die "DB ERROR: " . $sth1->errstr . "\n";
134 while (my $layout = $sth1->fetchrow_hashref()) {
135 if (!$layout->{'format_string'}) {
136 my $sth2 = C4::Context->dbh->prepare("SELECT id, title, subtitle, itemtype, barcode, dewey, classification, subclass, itemcallnumber, author, issn, isbn, ccode FROM labels_conf WHERE id = " . $layout->{'layout_id'});
137 $sth2->execute or die "DB ERROR: " . $sth2->errstr . "\n";
138 my $record = $sth2->fetchrow_hashref();
139 my @label_fields = ();
140 RECORD:
141 foreach (keys(%$record)) {
142 next RECORD if $record->{$_} eq '' or $_ eq 'id';
143 $label_fields[$record->{$_}] = $_;
145 shift @label_fields;
146 my $format_string = join (",", @label_fields);
147 # my $format_string = s/^,//i;
148 $sth->do("UPDATE `labels_layouts_tmp` SET format_string=\'$format_string\' WHERE layout_id = " . $record->{'id'}) or die "DB ERROR: " . $sth->errstr . "\n";
152 my $sth3 = C4::Context->dbh->prepare("SELECT template_id FROM labels_templates_tmp;");
153 $sth3->execute or die "DB ERROR: " . $sth3->errstr . "\n";
154 RECORD:
155 while (my $template = $sth3->fetchrow_hashref()) {
156 my $sth4 = C4::Context->dbh->prepare("SELECT profile_id FROM printers_profile_tmp WHERE template_id = " . $template->{'template_id'});
157 $sth4->execute or die "DB ERROR: " . $sth4->errstr . "\n";
158 my $profile_id = $sth4->fetchrow_hashref();
159 next RECORD if $profile_id->{'profile_id'} eq '';
160 $sth->do("UPDATE `labels_templates_tmp` SET profile_id=\'" . $profile_id->{'profile_id'} . "\' WHERE template_id = " . $template->{'template_id'}) or die "DB ERROR: " . $sth->errstr . "\n";
163 # Drop old tables....
165 $sth->do("DROP TABLE IF EXISTS labels;") or die "DB ERROR: " . $sth->errstr . "\n";
166 $sth->do("DROP TABLE IF EXISTS labels_batches;") or die "DB ERROR: " . $sth->errstr . "\n";
167 $sth->do("DROP TABLE IF EXISTS labels_conf;") or die "DB ERROR: " . $sth->errstr . "\n";
168 $sth->do("DROP TABLE IF EXISTS labels_layouts;") or die "DB ERROR: " . $sth->errstr . "\n";
169 $sth->do("DROP TABLE IF EXISTS labels_profile;") or die "DB ERROR: " . $sth->errstr . "\n";
170 $sth->do("DROP TABLE IF EXISTS labels_templates;") or die "DB ERROR: " . $sth->errstr . "\n";
171 $sth->do("DROP TABLE IF EXISTS printers_profile;") or die "DB ERROR: " . $sth->errstr . "\n";
173 # Rename temporary tables to permenant names...
175 $sth->do("ALTER TABLE labels_batches_tmp RENAME TO labels_batches;") or die "DB ERROR: " . $sth->errstr . "\n";
176 $sth->do("ALTER TABLE labels_layouts_tmp RENAME TO labels_layouts;") or die "DB ERROR: " . $sth->errstr . "\n";
177 $sth->do("ALTER TABLE labels_templates_tmp RENAME TO labels_templates;") or die "DB ERROR: " . $sth->errstr . "\n";
178 $sth->do("ALTER TABLE printers_profile_tmp RENAME TO printers_profile;") or die "DB ERROR: " . $sth->errstr . "\n";
181 # Re-enable key checks...
182 $sth->do("
183 SET UNIQUE_CHECKS = 1;
184 ") or die "DB ERROR: " . $sth->errstr . "\n";
186 $sth->do("
187 SET FOREIGN_KEY_CHECKS = 1;
188 ") or die "DB ERROR: " . $sth->errstr . "\n";