Revision 37ffd321
Von Niclas Zimmermann vor mehr als 11 Jahren hinzugefügt
SL/IC.pm | ||
---|---|---|
157 | 157 |
$trq->finish; |
158 | 158 |
|
159 | 159 |
# is it an orphan |
160 |
my @referencing_tables = qw(invoice orderitems inventory rmaitems);
|
|
160 |
my @referencing_tables = qw(invoice orderitems inventory); |
|
161 | 161 |
my %column_map = ( ); |
162 | 162 |
my $parts_id = conv_i($form->{id}); |
163 | 163 |
|
SL/PE.pm | ||
---|---|---|
172 | 172 |
my $first = 1; |
173 | 173 |
|
174 | 174 |
$where .= qq| AND id NOT IN (|; |
175 |
foreach my $table (qw(invoice orderitems prices rmaitems)) {
|
|
175 |
foreach my $table (qw(invoice orderitems prices)) { |
|
176 | 176 |
$where .= "UNION " unless ($first); |
177 | 177 |
$first = 0; |
178 | 178 |
$where .= |
... | ... | |
253 | 253 |
|
254 | 254 |
my @values = (); |
255 | 255 |
$query = qq|SELECT |; |
256 |
foreach my $table (qw(invoice orderitems prices rmaitems)) {
|
|
256 |
foreach my $table (qw(invoice orderitems prices)) { |
|
257 | 257 |
$query .= " + " unless ($first); |
258 | 258 |
$first = 0; |
259 | 259 |
$query .= qq|(SELECT COUNT(*) FROM $table WHERE pricegroup_id = ?) |; |
sql/Pg-upgrade2/drop_rma.sql | ||
---|---|---|
1 |
-- @tag: drop_rma |
|
2 |
-- @description: Löscht nicht mehr benötigte Tabellen rma und rma_items |
|
3 |
-- @depends: release_3_0_0 |
|
4 |
-- @charset: utf-8 |
|
5 |
|
|
6 |
DROP TABLE rma; |
|
7 |
DROP TABLE rmaitems; |
Auch abrufbar als: Unified diff
Veralteter Code
Dieser Commit entfernt die Tabellen rma und rmaitems. Beide werden
schon seit längerer Zeit nicht mehr aktualisiert und wurden vor dem
Commit nur noch an 2 Stellen ausgelesen.