Mehrere redefines entfernt, meist my $query
authorSven Schöling <s.schoeling@linet-services.de>
Thu, 20 Jun 2013 16:48:21 +0000 (18:48 +0200)
committerSven Schöling <s.schoeling@linet-services.de>
Tue, 25 Jun 2013 12:22:30 +0000 (14:22 +0200)
sql/Pg-upgrade2/add_more_constraints_fibu_projekt_xplace.pl
sql/Pg-upgrade2/default_bin_parts.pl
sql/Pg-upgrade2/rundungsfehler_korrigieren_BUG1328.pl

index 67e8e8d..2ed31f3 100644 (file)
@@ -28,8 +28,8 @@ sub run {
     }
   }
   $sth_all_groups->finish();
-  my $query = qq|select count(*) from acc_trans where trans_id is NULL|;
-  my $sth_all_groups = prepare_execute_query($::form, $self->dbh, $query);
+  $query = qq|select count(*) from acc_trans where trans_id is NULL|;
+  $sth_all_groups = prepare_execute_query($::form, $self->dbh, $query);
   while (my $hash_ref = $sth_all_groups->fetchrow_hashref()) {  # Schleife
     if ($hash_ref->{count} eq 0){
       # Falls wir keine alte buggy Installation haben, ist es super die
index 948067c..87daefc 100644 (file)
@@ -105,7 +105,7 @@ sub run {
   }
   # das alte textfeld entfernen
   # hier nochmal, da oben schon ein return 1 gesetzt ist
-  my $query = qq|ALTER TABLE parts drop COLUMN bin|;
+  $query = qq|ALTER TABLE parts drop COLUMN bin|;
   $self->db_query($query);
   return 1;
 }
index a3f0fd2..950e023 100644 (file)
@@ -25,9 +25,9 @@ ap.id) where ac.chart_id IN (select id from chart where link ='AP' OR link like
   $sth_all_groups->finish();
 
 
-  my $query = qq|select distinct id,acamount from (select ar.id, ar.amount as aramount, ac.amount*-1 as acamount from ar left join acc_trans ac on (ac.trans_id =
+  $query = qq|select distinct id,acamount from (select ar.id, ar.amount as aramount, ac.amount*-1 as acamount from ar left join acc_trans ac on (ac.trans_id =
 ar.id) where ac.chart_id IN (select id from chart where link ='AR' OR link like '%:AR' OR link like 'AR:%')) as foo where  aramount + 0.01 = abs(acamount)|;
-  my $sth_all_groups = prepare_execute_query($::form, $self->dbh, $query);
+  $sth_all_groups = prepare_execute_query($::form, $self->dbh, $query);
   while (my $hash_ref = $sth_all_groups->fetchrow_hashref()) {  # Schleife
       # Falls wir keine alte buggy Installation haben, ist es super die
       # Gewissheit zu haben, dass kein acc_trans-Eintrag ohne trans_id vorhanden ist