Noch eine potenzielle Abkuerzung fuer "Stck".
[kivitendo-erp.git] / sql / Pg-upgrade / Pg-upgrade-2.2.0.25-2.2.0.26.pl
1 #!/usr/bin/perl
2
3 die("This script cannot be run from the command line.") unless ($main::form);
4
5 use SL::AM;
6
7 sub mydberror {
8   my ($msg) = @_;
9   die($dbup_locale->text("Database update error:") .
10       "<br>$msg<br>" . $DBI::errstr);
11 }
12
13 sub myshowerror {
14   my ($msg) = @_;
15
16   print($main::form->parse_html_template("dbupgrade/units_error",
17                                          { "message" => $msg }));
18   return 2;
19 }
20
21 sub update_units_add_unit {
22   my $form = $main::form;
23
24   return 0 unless ($form->{"new_name"});
25
26   return myshowerror($dbup_locale->text("The name is missing."))
27     if ($form->{"new_name"} eq "");
28   my $units = AM->retrieve_units(\%dbup_myconfig, $form);
29   return myshowerror($dbup_locale->text("A unit with this name does already exist."))
30     if ($units->{$form->{"new_name"}});
31   $units = AM->retrieve_units(\%dbup_myconfig, $form, $form->{"unit_type"});
32
33   my ($base_unit, $factor);
34   if ($form->{"new_base_unit"}) {
35     return myshowerror($dbup_locale->text("The base unit does not exist."))
36       unless (defined($units->{$form->{"new_base_unit"}}));
37
38     return myshowerror($dbup_locale->text("The factor is missing."))
39       if ($form->{"new_factor"} eq "");
40     $factor = $form->parse_amount(\%dbup_myconfig, $form->{"new_factor"});
41     return myshowerror($dbup_locale->text("The factor is missing."))
42       unless ($factor);
43     $base_unit = $form->{"new_base_unit"};
44   }
45
46   my $query = "INSERT INTO units " .
47     "(name, base_unit, factor, type) " .
48     "VALUES (?, ?, ?, ?)";
49   $dbh->do($query, undef, $form->{"new_name"}, $base_unit, $factor,
50            $form->{"unit_type"}) ||
51     mydberror($query .
52               " ($form->{new_name}, $base_unit, $factor, $form->{unit_type})");
53   $dbh->commit();
54   $dbh->begin_work();
55
56   $form->{"saved_message"} = $dbup_locale->text("The unit has been saved.");
57
58   return 0;
59 }
60
61 sub update_units_assign_units {
62   my ($query, $sth, @values);
63
64   my $form = $main::form;
65
66   foreach my $table (qw(parts invoice orderitems rmaitems)) {
67     $query = "UPDATE $table SET unit = ? WHERE lower(unit) = ?";
68     $sth = $dbh->prepare($query);
69
70     for (my $i = 1; $i <= $form->{"rowcount"}; $i++) {
71       next unless ($form->{"new_unit_$i"} && $form->{"old_unit_$i"});
72       @values = ($form->{"new_unit_$i"}, lc($form->{"old_unit_$i"}));
73       $sth->execute(@values) ||
74         mydberror($query . " (" . join(", ", @values) . ")");
75     }
76   }
77
78   $sth->finish();
79   $dbh->commit();
80   $dbh->begin_work();
81 }
82
83 sub update_units_assign_known {
84   my $form = $main::form;
85
86   my %unit_name_mapping = (
87     "st" => "Stck",
88     "st." => "Stck",
89     "stk" => "Stck",
90     "pc" => "Stck",
91     "pcs" => "Stck",
92     "ea" => "Stck",
93     );
94
95   my $i = 1;
96   foreach my $k (keys(%unit_name_mapping)) {
97     $form->{"old_unit_$i"} = $k;
98     $form->{"new_unit_$i"} = $unit_name_mapping{$k};
99     $i++;
100   }
101   $form->{"rowcount"} = scalar(keys(%unit_name_mapping));
102
103   update_units_assign_units();
104 }
105
106 sub update_units_steps_1_2 {
107   my (%unknown_dimension_units, %unknown_service_units);
108
109   my $form = $main::form;
110
111   foreach my $table (qw(parts invoice orderitems rmaitems)) {
112     my ($query, $sth, $ref);
113
114     if ($table eq "parts") {
115       $query = "SELECT unit, inventory_accno_id FROM parts " .
116         "WHERE NOT ((unit = '') OR unit ISNULL OR " .
117         "           unit IN (SELECT name FROM units))";
118
119     } else {
120       $query = "SELECT t.unit, p.inventory_accno_id " .
121         "FROM $table t " .
122         "LEFT JOIN parts p ON p.id = t.parts_id " .
123         "WHERE NOT ((t.unit = '') OR t.unit ISNULL OR " .
124         "           t.unit IN (SELECT name FROM units))";
125     }
126     $sth = $dbh->prepare($query);
127     $sth->execute() || mydberror($query);
128
129     while ($ref = $sth->fetchrow_hashref()) {
130       if ($ref->{"inventory_accno_id"}) {
131         $unknown_dimension_units{$ref->{"unit"}} = 1;
132
133       } else {
134         $unknown_service_units{$ref->{"unit"}} = 1;
135       }
136     }
137
138     $sth->finish();
139   }
140
141   if (scalar(keys(%unknown_dimension_units)) != 0) {
142     my $units = AM->retrieve_units(\%dbup_myconfig, $form, "dimension");
143     my $ddbox = AM->unit_select_data($units, undef, 1);
144
145     my @unknown_parts;
146     map({ push(@unknown_parts, { "name" => $_, "NEW_UNITS" => $ddbox }); }
147         sort({ lc($a) cmp lc($b) } keys(%unknown_dimension_units)));
148
149     print($form->parse_html_template("dbupgrade/units_parts",
150                                      { "NEW_BASE_UNIT_DDBOX" => $ddbox,
151                                        "UNKNOWN_PART_UNITS" => \@unknown_parts,
152                                      }));
153
154     return 2;
155
156   } else {
157     print($form->parse_html_template("dbupgrade/units_parts_done"));
158   }
159
160   if (scalar(keys(%unknown_service_units)) != 0) {
161     my $units = AM->retrieve_units(\%dbup_myconfig, $form, "service");
162     my $ddbox = AM->unit_select_data($units, undef, 1);
163
164     my @unknown_services;
165     map({ push(@unknown_services, { "name" => $_, "NEW_UNITS" => $ddbox }); }
166         sort({ lc($a) cmp lc($b) } keys(%unknown_service_units)));
167
168     print($form->parse_html_template("dbupgrade/units_services",
169                                      { "NEW_BASE_UNIT_DDBOX" => $ddbox,
170                                        "UNKNOWN_PART_UNITS" => \@unknown_services,
171                                      }));
172
173     return 2;
174
175   } else {
176     print($form->parse_html_template("dbupgrade/units_services_done"));
177   }
178
179   return 0;
180 }
181
182 sub update_units_step_3 {
183   my $form = $main::form;
184
185   my $query = "SELECT ";
186   foreach my $table (qw(parts invoice orderitems rmaitems)) {
187     $query .= "(SELECT COUNT(*) FROM $table " .
188       "WHERE (unit ISNULL) OR (unit = '')) +";
189   }
190   substr($query, -1, 1) = "AS has_unassigned";
191   my ($has_unassigned) = $dbh->selectrow_array($query);
192
193   if ($has_unassigned) {
194     my $dimension_units = AM->retrieve_units(\%dbup_myconfig, $form,
195                                              "dimension");
196     my $dimension_ddbox = AM->unit_select_data($dimension_units);
197
198     my $service_units = AM->retrieve_units(\%dbup_myconfig, $form, "service");
199     my $service_ddbox = AM->unit_select_data($service_units);
200
201     print($form->parse_html_template("dbupgrade/units_set_default",
202                                      { "DIMENSION_DDBOX" => $dimension_ddbox,
203                                        "SERVICE_DDBOX" => $service_ddbox }));
204     return 2;
205
206   } else {
207     print($form->parse_html_template("dbupgrade/units_set_default_done"));
208     return 1;
209   }
210 }
211
212 sub update_units_set_default {
213   my $form = $main::form;
214
215   foreach my $table (qw(parts invoice orderitems rmaitems)) {
216     my $base_query = "UPDATE $table SET unit = " .
217       $dbh->quote($form->{"default_service_unit"}) . " " .
218       "WHERE ((unit ISNULL) OR (unit = '')) AND ";
219     my $query;
220
221     if ($table eq "parts") {
222       $query = "UPDATE $table SET unit = " .
223         $dbh->quote($form->{"default_dimension_unit"}) . " " .
224         "WHERE ((unit ISNULL) OR (unit = '')) AND (inventory_accno_id > 0)";
225     } else {
226       $query = "UPDATE $table SET unit = " .
227         $dbh->quote($form->{"default_dimension_unit"}) . " " .
228         "WHERE ((unit ISNULL) OR (unit = '')) AND " .
229         "parts_id IN (SELECT id FROM parts WHERE (inventory_accno_id > 0))";
230     }
231
232     $dbh->do($query) || mydberror($query);
233
234     if ($table eq "parts") {
235       $query = "UPDATE $table SET unit = " .
236         $dbh->quote($form->{"default_service_unit"}) . " " .
237         "WHERE ((unit ISNULL) OR (unit = '')) AND " .
238         "(inventory_accno_id ISNULL) OR (inventory_accno_id = 0)";
239     } else {
240       $query = "UPDATE $table SET unit = " .
241         $dbh->quote($form->{"default_service_unit"}) . " " .
242         "WHERE ((unit ISNULL) OR (unit = '')) AND " .
243         "parts_id IN (SELECT id FROM parts " .
244         "WHERE (inventory_accno_id ISNULL) OR (inventory_accno_id = 0))";
245     }
246
247     $dbh->do($query) || mydberror($query);
248   }
249 }
250
251 sub update_units {
252   my $form = $main::form;
253
254   my $res;
255
256   print($form->parse_html_template("dbupgrade/units_header"));
257
258   if ($form->{"action2"} eq "add_unit") {
259     $res = update_units_add_unit();
260     return $res if ($res);
261
262   } elsif ($form->{"action2"} eq "assign_units") {
263     update_units_assign_units();
264
265   } elsif ($form->{"action2"} eq "set_default") {
266     update_units_set_default();
267
268   }
269
270   update_units_assign_known();
271
272   $res = update_units_steps_1_2();
273   return $res if ($res);
274
275   return update_units_step_3();
276 }
277
278 update_units();