Whitespace an den Zeilenenden entfernt.
authorMoritz Bunkus <m.bunkus@linet-services.de>
Tue, 13 Sep 2005 13:53:56 +0000 (13:53 +0000)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Tue, 13 Sep 2005 13:53:56 +0000 (13:53 +0000)
27 files changed:
SL/AM.pm
SL/CA.pm
SL/Form.pm
SL/GL.pm
SL/IC.pm
SL/IR.pm
SL/RC.pm
SL/RP.pm
SL/USTVA.pm
bin/mozilla/admin.pl
bin/mozilla/am.pl
bin/mozilla/ap.pl
bin/mozilla/ar.pl
bin/mozilla/ca.pl
bin/mozilla/cp.pl
bin/mozilla/ct.pl
bin/mozilla/datev.pl
bin/mozilla/gl.pl
bin/mozilla/ic.pl
bin/mozilla/ir.pl
bin/mozilla/is.pl
bin/mozilla/licenses.pl
bin/mozilla/login.pl
bin/mozilla/oe.pl
bin/mozilla/pe.pl
bin/mozilla/rp.pl
bin/mozilla/ustva.pl

index 62406e7..a06761c 100644 (file)
--- a/SL/AM.pm
+++ b/SL/AM.pm
@@ -76,7 +76,7 @@ sub get_account {
   $sth->finish;
 
   # get taxkeys and description
-  $query = qq|SELECT taxkey, taxdescription 
+  $query = qq|SELECT taxkey, taxdescription
               FROM tax|;
   $sth = $dbh->prepare($query);
   $sth->execute || $form->dberror($query);
@@ -163,7 +163,7 @@ sub save_account {
                WHERE id = $form->{id}|;
   } else {
 
-    $query = qq|INSERT INTO chart 
+    $query = qq|INSERT INTO chart
                 (accno, description, charttype, gifi_accno, category, link, taxkey_id, pos_ustva, pos_bwa, pos_bilanz,pos_eur)
                 VALUES ('$form->{accno}', '$form->{description}',
                '$form->{charttype}', '$form->{gifi_accno}',
@@ -251,7 +251,7 @@ sub delete_account {
 
   # set inventory_accno_id, income_accno_id, expense_accno_id to defaults
   $query = qq|UPDATE parts
-              SET inventory_accno_id = 
+              SET inventory_accno_id =
                         (SELECT inventory_accno_id FROM defaults)
              WHERE inventory_accno_id = $form->{id}|;
   $dbh->do($query) || $form->dberror($query);
@@ -362,7 +362,7 @@ sub save_gifi {
                description = '$form->{description}'
                WHERE accno = '$form->{id}'|;
   } else {
-    $query = qq|INSERT INTO gifi 
+    $query = qq|INSERT INTO gifi
                 (accno, description)
                 VALUES ('$form->{accno}', '$form->{description}')|;
   }
@@ -570,7 +570,7 @@ sub save_department {
                role = '$form->{role}'
                WHERE id = $form->{id}|;
   } else {
-    $query = qq|INSERT INTO department 
+    $query = qq|INSERT INTO department
                 (description, role)
                 VALUES ('$form->{description}', '$form->{role}')|;
   }
@@ -670,7 +670,7 @@ sub save_business {
                 salesman = '$form->{salesman}'
                WHERE id = $form->{id}|;
   } else {
-    $query = qq|INSERT INTO business 
+    $query = qq|INSERT INTO business
                 (description, discount, customernumberinit, salesman)
                 VALUES ('$form->{description}', $form->{discount}, '$form->{customernumberinit}', '$form->{salesman}')|;
   }
@@ -767,7 +767,7 @@ sub save_sic {
                description = '$form->{description}'
                WHERE code = '$form->{id}'|;
   } else {
-    $query = qq|INSERT INTO sic 
+    $query = qq|INSERT INTO sic
                 (code, sictype, description)
                 VALUES ('$form->{code}', '$form->{sictype}', '$form->{description}')|;
   }
@@ -847,7 +847,7 @@ sub save_preferences {
   # user specific variables are in myconfig
   # save defaults
   my $query = qq|UPDATE defaults SET
-                 inventory_accno_id = 
+                 inventory_accno_id =
                     (SELECT c.id FROM chart c
                                WHERE c.accno = '$form->{inventory_accno}'),
                  income_accno_id =
@@ -1356,4 +1356,3 @@ sub closebooks {
 }
 
 1;
-
index 2ab7e47..a963860 100644 (file)
--- a/SL/CA.pm
+++ b/SL/CA.pm
@@ -369,7 +369,7 @@ sub all_transactions {
       $query .= qq|
 
              UNION ALL
-      
+
                  SELECT a.id, a.invnumber, c.name, a.transdate,
                 a.invoice, ac.sellprice, 'ar' as module
                 FROM ar a
@@ -382,9 +382,9 @@ sub all_transactions {
                 $todate_where
                 $dpt_where
                 $project
-      
+
              UNION ALL
-      
+
                  SELECT a.id, a.invnumber, v.name, a.transdate,
                 a.invoice, ac.sellprice, 'ap' as module
                 FROM ap a
@@ -451,4 +451,3 @@ sub all_transactions {
 }
 
 1;
-
index c7595ac..ebc7e82 100644 (file)
@@ -439,7 +439,7 @@ sub write_trigger {
        <!--
        $trigger_1
        $trigger_2
-        //-->          
+        //-->
         </script>
         |;
 
@@ -1300,7 +1300,7 @@ sub get_contact {
   my ($self, $dbh, $id) = @_;
 
   my $query = qq|SELECT c.*
-              FROM contacts c 
+              FROM contacts c
               WHERE cp_id=$id|;
   $sth = $dbh->prepare($query);
   $sth->execute || $self->dberror($query);
@@ -1319,8 +1319,8 @@ sub get_contacts {
 
   my ($self, $dbh, $id) = @_;
 
-  my $query = qq|SELECT c.cp_id, c.cp_cv_id, c.cp_name, c.cp_givenname 
-              FROM contacts c 
+  my $query = qq|SELECT c.cp_id, c.cp_cv_id, c.cp_name, c.cp_givenname
+              FROM contacts c
               WHERE cp_cv_id=$id|;
   my $sth = $dbh->prepare($query);
   $sth->execute || $self->dberror($query);
@@ -1687,7 +1687,7 @@ sub lastname_used {
     $where = "quotation = '1'";
   }
 
-  my $query = qq|SELECT id FROM $arap 
+  my $query = qq|SELECT id FROM $arap
                  WHERE id IN (SELECT MAX(id) FROM $arap
                              WHERE $where
                              AND ${table}_id > 0)|;
@@ -2211,4 +2211,3 @@ sub parse_date {
 }
 
 1;
-
index 9ae3835..9fdb486 100644 (file)
--- a/SL/GL.pm
+++ b/SL/GL.pm
@@ -124,7 +124,7 @@ sub post_transaction {
   if ($form->{id}) {
 
     # delete individual transactions
-    $query = qq|DELETE FROM acc_trans 
+    $query = qq|DELETE FROM acc_trans
                 WHERE trans_id = $form->{id}|;
     $dbh->do($query) || $form->dberror($query);
 
@@ -149,7 +149,7 @@ sub post_transaction {
   my ($null, $department_id) = split /--/, $form->{department};
   $department_id *= 1;
 
-  $query = qq|UPDATE gl SET 
+  $query = qq|UPDATE gl SET
              reference = '$form->{reference}',
              description = '$form->{description}',
              notes = '$form->{notes}',
@@ -584,8 +584,8 @@ sub transaction {
     $query = "SELECT g.reference, g.description, g.notes, g.transdate,
               d.description AS department, e.name as employee, g.taxincluded, g.gldate
               FROM gl g
-           LEFT JOIN department d ON (d.id = g.department_id)  
-           LEFT JOIN employee e ON (e.id = g.employee_id)  
+           LEFT JOIN department d ON (d.id = g.department_id)
+           LEFT JOIN employee e ON (e.id = g.employee_id)
            WHERE g.id = $form->{id}";
     $sth = $dbh->prepare($query);
     $sth->execute || $form->dberror($query);
@@ -722,4 +722,3 @@ sub debug {
 }
 
 1;
-
index 036a669..ed74db6 100644 (file)
--- a/SL/IC.pm
+++ b/SL/IC.pm
@@ -300,7 +300,7 @@ sub save {
     ($partsgroup, $partsgroup_id) = split /--/, $form->{partsgroup};
   }
 
-  $query = qq|UPDATE parts SET 
+  $query = qq|UPDATE parts SET
              partnumber = '$form->{partnumber}',
              description = '$form->{description}',
              makemodel = '$form->{makemodel}',
@@ -350,7 +350,7 @@ sub save {
   foreach $item (split / /, $form->{taxaccounts}) {
     if ($form->{"IC_tax_$item"}) {
       $query = qq|INSERT INTO partstax (parts_id, chart_id)
-                  VALUES ($form->{id}, 
+                  VALUES ($form->{id},
                          (SELECT c.id
                           FROM chart c
                           WHERE c.accno = '$item'))|;
@@ -1287,4 +1287,3 @@ sub retrieve_item {
 }
 
 1;
-
index a02f4fb..f6cf8b6 100644 (file)
--- a/SL/IR.pm
+++ b/SL/IR.pm
@@ -235,17 +235,17 @@ sub post_invoice {
 
             # add entry for inventory, this one is for the sold item
             if ($linetotal != 0) {
-              $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, 
+              $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount,
                          transdate)
                          VALUES ($ref->{trans_id}, $ref->{inventory_accno_id},
                          $linetotal, '$ref->{transdate}')|;
               $dbh->do($query) || $form->dberror($query);
 
               # add expense
-              $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, 
+              $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount,
                          transdate, taxkey)
                          VALUES ($ref->{trans_id}, $ref->{expense_accno_id},
-                         | . ($linetotal * -1) . qq|, '$ref->{transdate}', 
+                         | . ($linetotal * -1) . qq|, '$ref->{transdate}',
                           (SELECT taxkey from tax WHERE chart_id = $ref->{expense_accno_id}))|;
               $dbh->do($query) || $form->dberror($query);
             }
@@ -443,7 +443,7 @@ sub post_invoice {
            $form->round_amount($form->{amount}{$trans_id}{$accno}, 2)
           ) != 0
         ) {
-        $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, 
+        $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount,
                    transdate, taxkey)
                    VALUES ($trans_id, (SELECT c.id FROM chart c
                                         WHERE c.accno = '$accno'),
@@ -1220,4 +1220,3 @@ SWITCH: {
 }
 
 1;
-
index f9e7891..63a41f4 100644 (file)
--- a/SL/RC.pm
+++ b/SL/RC.pm
@@ -117,11 +117,11 @@ sub payment_transactions {
   $query .= " AND ac.transdate <= '$form->{todate}'"   if $form->{todate};
 
   $query .= qq|
-  
+
       UNION
               SELECT v.name, ac.source, ac.transdate, ac.cleared,
              ac.fx_transaction, ac.amount, a.id,
-             $oid{$myconfig->{dbdriver}} AS oid 
+             $oid{$myconfig->{dbdriver}} AS oid
              FROM vendor v, acc_trans ac, ap a, chart ch
              WHERE v.id = a.vendor_id
 --           AND NOT ac.fx_transaction
@@ -135,11 +135,11 @@ sub payment_transactions {
   $query .= " AND ac.transdate <= '$form->{todate}'"   if $form->{todate};
 
   $query .= qq|
-  
+
       UNION
              SELECT g.description, ac.source, ac.transdate, ac.cleared,
              ac.fx_transaction, ac.amount, g.id,
-             $oid{$myconfig->{dbdriver}} AS oid 
+             $oid{$myconfig->{dbdriver}} AS oid
              FROM gl g, acc_trans ac, chart ch
              WHERE g.id = ac.trans_id
 --           AND NOT ac.fx_transaction
@@ -201,4 +201,3 @@ sub reconcile {
 }
 
 1;
-
index 51b78b4..7bd324b 100644 (file)
--- a/SL/RP.pm
+++ b/SL/RP.pm
@@ -600,7 +600,7 @@ sub get_accounts {
     if ($form->{method} eq 'cash') {
 
       $query = qq|
-       
+
                 SELECT g.accno, sum(ac.amount) AS amount,
                 g.description, c.category
                 FROM acc_trans ac
@@ -621,9 +621,9 @@ sub get_accounts {
                   )
                 $project
                 GROUP BY g.accno, g.description, c.category
-                
+
        UNION ALL
-       
+
                 SELECT '' AS accno, SUM(ac.amount) AS amount,
                 '' AS description, c.category
                 FROM acc_trans ac
@@ -667,9 +667,9 @@ sub get_accounts {
                   )
                 $project
                 GROUP BY g.accno, g.description, c.category
-                
+
        UNION ALL
-       
+
                 SELECT '' AS accno, SUM(ac.amount) AS amount,
                 '' AS description, c.category
                 FROM acc_trans ac
@@ -694,7 +694,7 @@ sub get_accounts {
        UNION ALL
 
 -- add gl
-       
+
                 SELECT g.accno, sum(ac.amount) AS amount,
                 g.description, c.category
                 FROM acc_trans ac
@@ -709,9 +709,9 @@ sub get_accounts {
                 AND NOT (c.link = 'AR' OR c.link = 'AP')
                 $project
                 GROUP BY g.accno, g.description, c.category
-                
+
        UNION ALL
-       
+
                 SELECT '' AS accno, SUM(ac.amount) AS amount,
                 '' AS description, c.category
                 FROM acc_trans ac
@@ -731,9 +731,9 @@ sub get_accounts {
       if ($form->{project_id}) {
 
         $query .= qq|
-         
+
        UNION ALL
-       
+
                 SELECT g.accno AS accno, SUM(ac.sellprice * ac.qty) AS amount,
                 g.description AS description, c.category
                 FROM invoice ac
@@ -758,7 +758,7 @@ sub get_accounts {
                 GROUP BY g.accno, g.description, c.category
 
        UNION ALL
-       
+
                 SELECT g.accno AS accno, SUM(ac.sellprice * ac.qty) * -1 AS amount,
                 g.description AS description, c.category
                 FROM invoice ac
@@ -796,7 +796,7 @@ sub get_accounts {
       }
 
       $query = qq|
-      
+
              SELECT g.accno, SUM(ac.amount) AS amount,
              g.description, c.category
              FROM acc_trans ac
@@ -808,9 +808,9 @@ sub get_accounts {
              $category
              $project
              GROUP BY g.accno, g.description, c.category
-             
+
           UNION ALL
-          
+
              SELECT '' AS accno, SUM(ac.amount) AS amount,
              '' AS description, c.category
              FROM acc_trans ac
@@ -827,9 +827,9 @@ sub get_accounts {
       if ($form->{project_id}) {
 
         $query .= qq|
-         
+
         UNION ALL
-       
+
                 SELECT g.accno AS accno, SUM(ac.sellprice * ac.qty) AS amount,
                 g.description AS description, c.category
                 FROM invoice ac
@@ -846,7 +846,7 @@ sub get_accounts {
                 GROUP BY g.accno, g.description, c.category
 
        UNION ALL
-       
+
                 SELECT g.accno AS accno, SUM(ac.sellprice * ac.qty) * -1 AS amount,
                 g.description AS description, c.category
                 FROM invoice ac
@@ -870,7 +870,7 @@ sub get_accounts {
     if ($form->{method} eq 'cash') {
 
       $query = qq|
-       
+
                 SELECT c.accno, sum(ac.amount) AS amount,
                 c.description, c.category
                 FROM acc_trans ac
@@ -888,12 +888,12 @@ sub get_accounts {
                     WHERE link LIKE '%AR_paid%'
                     $subwhere
                   )
-                    
+
                 $project
                 GROUP BY c.accno, c.description, c.category
-                
+
        UNION ALL
-       
+
                 SELECT c.accno, sum(ac.amount) AS amount,
                 c.description, c.category
                 FROM acc_trans ac
@@ -911,10 +911,10 @@ sub get_accounts {
                     WHERE link LIKE '%AP_paid%'
                     $subwhere
                   )
-                    
+
                 $project
                 GROUP BY c.accno, c.description, c.category
-                
+
         UNION ALL
 
                 SELECT c.accno, sum(ac.amount) AS amount,
@@ -935,9 +935,9 @@ sub get_accounts {
       if ($form->{project_id}) {
 
         $query .= qq|
-         
+
         UNION ALL
-       
+
                 SELECT c.accno AS accno, SUM(ac.sellprice * ac.qty) AS amount,
                 c.description AS description, c.category
                 FROM invoice ac
@@ -962,7 +962,7 @@ sub get_accounts {
                 GROUP BY c.accno, c.description, c.category
 
         UNION ALL
-       
+
                 SELECT c.accno AS accno, SUM(ac.sellprice) AS amount,
                 c.description AS description, c.category
                 FROM invoice ac
@@ -999,7 +999,7 @@ sub get_accounts {
       }
 
       $query = qq|
-      
+
                 SELECT c.accno, sum(ac.amount) AS amount,
                 c.description, c.category
                 FROM acc_trans ac
@@ -1015,9 +1015,9 @@ sub get_accounts {
       if ($form->{project_id}) {
 
         $query .= qq|
-         
+
        UNION ALL
-       
+
                 SELECT c.accno AS accno, SUM(ac.sellprice * ac.qty) AS amount,
                 c.description AS description, c.category
                 FROM invoice ac
@@ -1033,7 +1033,7 @@ sub get_accounts {
                 GROUP BY c.accno, c.description, c.category
 
        UNION ALL
-       
+
                 SELECT c.accno AS accno, SUM(ac.sellprice * ac.qty) * -1 AS amount,
                 c.description AS description, c.category
                 FROM invoice ac
@@ -1156,7 +1156,7 @@ sub get_accounts_g {
   if ($form->{method} eq 'cash') {
 
     $query = qq|
-       
+
                 SELECT sum(ac.amount) AS amount,
                 c.$category
                 FROM acc_trans ac
@@ -1173,12 +1173,12 @@ sub get_accounts_g {
                     WHERE link LIKE '%AR_paid%'
                     $subwhere
                   )
-                    
+
                 $project
                 GROUP BY c.$category
-                
+
        UNION
-       
+
                 SELECT sum(ac.amount) AS amount,
                 c.$category
                 FROM acc_trans ac
@@ -1195,10 +1195,10 @@ sub get_accounts_g {
                     WHERE link LIKE '%AP_paid%'
                     $subwhere
                   )
-                    
+
                 $project
                 GROUP BY c.$category
-                
+
         UNION
 
                 SELECT sum(ac.amount) AS amount,
@@ -1218,9 +1218,9 @@ sub get_accounts_g {
     if ($form->{project_id}) {
 
       $query .= qq|
-         
+
         UNION
-       
+
                 SELECT SUM(ac.sellprice * ac.qty) AS amount,
                 c.$category
                 FROM invoice ac
@@ -1245,7 +1245,7 @@ sub get_accounts_g {
                 GROUP BY c.$category
 
         UNION
-       
+
                 SELECT SUM(ac.sellprice) AS amount,
                 c.$category
                 FROM invoice ac
@@ -1282,7 +1282,7 @@ sub get_accounts_g {
     }
 
     $query = qq|
-      
+
                 SELECT sum(ac.amount) AS amount,
                 c.$category
                 FROM acc_trans ac
@@ -1297,9 +1297,9 @@ sub get_accounts_g {
     if ($form->{project_id}) {
 
       $query .= qq|
-         
+
        UNION
-       
+
                 SELECT SUM(ac.sellprice * ac.qty) AS amount,
                 c.$category
                 FROM invoice ac
@@ -1315,7 +1315,7 @@ sub get_accounts_g {
                 GROUP BY c.$category
 
        UNION
-       
+
                 SELECT SUM(ac.sellprice * ac.qty) * -1 AS amount,
                 c.$category
                 FROM invoice ac
@@ -1531,9 +1531,9 @@ sub trial_balance {
       $query .= qq|
 
        -- add project transactions from invoice
-       
+
        UNION ALL
-       
+
                SELECT g.accno, g.description, c.category,
                SUM(ac.sellprice * ac.qty) AS amount
                FROM invoice ac
@@ -1548,7 +1548,7 @@ sub trial_balance {
                GROUP BY g.accno, g.description, c.category
 
        UNION ALL
-       
+
                SELECT g.accno, g.description, c.category,
                SUM(ac.sellprice * ac.qty) * -1 AS amount
                FROM invoice ac
@@ -1585,9 +1585,9 @@ sub trial_balance {
       $query .= qq|
 
        -- add project transactions from invoice
-       
+
        UNION ALL
-       
+
                SELECT c.accno, c.description, c.category,
                SUM(ac.sellprice * ac.qty) AS amount
                FROM invoice ac
@@ -1601,7 +1601,7 @@ sub trial_balance {
                GROUP BY c.accno, c.description, c.category
 
        UNION ALL
-       
+
                SELECT c.accno, c.description, c.category,
                SUM(ac.sellprice * ac.qty) * -1 AS amount
                FROM invoice ac
@@ -1634,7 +1634,7 @@ sub trial_balance {
              $project
              AND ac.amount < 0
              AND c.accno = ?) AS debit,
-             
+
             (SELECT SUM(ac.amount)
              FROM acc_trans ac
              JOIN chart c ON (c.id = ac.chart_id)
@@ -1657,7 +1657,7 @@ sub trial_balance {
                $project
                AND ac.amount < 0
                AND c.gifi_accno = ?) AS debit,
-               
+
               (SELECT SUM(ac.amount)
                FROM acc_trans ac
                JOIN chart c ON (c.id = ac.chart_id)
@@ -1685,7 +1685,7 @@ sub trial_balance {
              $dpt_where
              $project
              AND c.accno = ?) AS debit,
-             
+
             (SELECT SUM(ac.sellprice * ac.qty)
              FROM invoice ac
              JOIN parts p ON (ac.parts_id = p.id)
@@ -1844,15 +1844,15 @@ sub aging {
          (SELECT $buysell FROM exchangerate
           WHERE $form->{arap}.curr = exchangerate.curr
           AND exchangerate.transdate = $form->{arap}.transdate) AS exchangerate
-  FROM $form->{arap}, $form->{ct} 
+  FROM $form->{arap}, $form->{ct}
        WHERE paid != amount
        AND $form->{arap}.$form->{ct}_id = $form->{ct}.id
        AND $form->{ct}.id = $id
        AND (
-               transdate <= (date '$form->{todate}' - interval '0 days') 
+               transdate <= (date '$form->{todate}' - interval '0 days')
                AND transdate >= (date '$form->{todate}' - interval '30 days')
            )
-       
+
        UNION
 
 -- between 31-60 days
@@ -1860,66 +1860,66 @@ sub aging {
        SELECT $form->{ct}.id AS ctid, $form->{ct}.name,
        street, zipcode, city, country, contact, email,
        phone as customerphone, fax as customerfax, $form->{ct}number,
-       "invnumber", "transdate", 
+       "invnumber", "transdate",
        0.00 as "c0", (amount - paid) as "c30", 0.00 as "c60", 0.00 as "c90",
        "duedate", invoice, $form->{arap}.id,
          (SELECT $buysell FROM exchangerate
           WHERE $form->{arap}.curr = exchangerate.curr
           AND exchangerate.transdate = $form->{arap}.transdate) AS exchangerate
   FROM $form->{arap}, $form->{ct}
-       WHERE paid != amount 
-       AND $form->{arap}.$form->{ct}_id = $form->{ct}.id 
+       WHERE paid != amount
+       AND $form->{arap}.$form->{ct}_id = $form->{ct}.id
        AND $form->{ct}.id = $id
        AND (
-               transdate < (date '$form->{todate}' - interval '30 days') 
+               transdate < (date '$form->{todate}' - interval '30 days')
                AND transdate >= (date '$form->{todate}' - interval '60 days')
                )
 
        UNION
-  
+
 -- between 61-90 days
 
        SELECT $form->{ct}.id AS ctid, $form->{ct}.name,
        street, zipcode, city, country, contact, email,
        phone as customerphone, fax as customerfax, $form->{ct}number,
-       "invnumber", "transdate", 
+       "invnumber", "transdate",
        0.00 as "c0", 0.00 as "c30", (amount - paid) as "c60", 0.00 as "c90",
        "duedate", invoice, $form->{arap}.id,
          (SELECT $buysell FROM exchangerate
           WHERE $form->{arap}.curr = exchangerate.curr
           AND exchangerate.transdate = $form->{arap}.transdate) AS exchangerate
-       FROM $form->{arap}, $form->{ct} 
+       FROM $form->{arap}, $form->{ct}
        WHERE paid != amount
-       AND $form->{arap}.$form->{ct}_id = $form->{ct}.id 
+       AND $form->{arap}.$form->{ct}_id = $form->{ct}.id
        AND $form->{ct}.id = $id
        AND (
-               transdate < (date '$form->{todate}' - interval '60 days') 
+               transdate < (date '$form->{todate}' - interval '60 days')
                AND transdate >= (date '$form->{todate}' - interval '90 days')
                )
 
        UNION
-  
+
 -- over 90 days
 
        SELECT $form->{ct}.id AS ctid, $form->{ct}.name,
        street, zipcode, city, country, contact, email,
        phone as customerphone, fax as customerfax, $form->{ct}number,
-       "invnumber", "transdate", 
+       "invnumber", "transdate",
        0.00 as "c0", 0.00 as "c30", 0.00 as "c60", (amount - paid) as "c90",
        "duedate", invoice, $form->{arap}.id,
          (SELECT $buysell FROM exchangerate
           WHERE $form->{arap}.curr = exchangerate.curr
           AND exchangerate.transdate = $form->{arap}.transdate) AS exchangerate
-       FROM $form->{arap}, $form->{ct} 
+       FROM $form->{arap}, $form->{ct}
        WHERE paid != amount
-       AND $form->{arap}.$form->{ct}_id = $form->{ct}.id 
+       AND $form->{arap}.$form->{ct}_id = $form->{ct}.id
        AND $form->{ct}.id = $id
-       AND transdate < (date '$form->{todate}' - interval '90 days') 
+       AND transdate < (date '$form->{todate}' - interval '90 days')
 
        ORDER BY
-  
+
   ctid, transdate, invnumber
-  
+
                |;
 
     my $sth = $dbh->prepare($query);
@@ -2271,7 +2271,7 @@ sub payments {
                WHERE ac.chart_id = $ref->{id}
                $where
                $invnumber
-               
+
        UNION
                SELECT g.description, g.reference, NULL AS ordnumber,
                ac.transdate, ac.amount * $ml AS paid, ac.source,
@@ -2617,4 +2617,3 @@ sub income_statement {
   $main::lxdebug->leave_sub();
 }
 1;
-
index 31d13ca..ff63556 100644 (file)
@@ -139,7 +139,7 @@ SWITCH: {
            <input type=hidden name="patterncount" value="$patterncount">
            <input type=hidden name="patternlength" value="$patterncount">
            <input type=hidden name="delimiter" value="$delimiter">
-           <input type=hidden name="part" value="$part">  
+           <input type=hidden name="part" value="$part">
   |;
   my $h = 0;
   my $i = 0;
@@ -191,7 +191,7 @@ sub fa_auswahl {
   #}
 
   #if ( $terminal eq 'mozilla' or $terminal eq 'js' ) {
-  print qq|    
+  print qq|
         <br>
         <script language="Javascript">
         function update_auswahl()
@@ -223,7 +223,7 @@ sub fa_auswahl {
     print qq|
                }|;
   }
-  print qq| 
+  print qq|
         }
         </script>
 
@@ -261,7 +261,7 @@ sub fa_auswahl {
   print qq|
            <tr>
               <td>Finanzamt
-              </td> 
+              </td>
               <td>
                  <select size="1" name="elsterFFFF_new">|;
   if ($elsterFFFF eq '') {
@@ -281,7 +281,7 @@ sub fa_auswahl {
   print qq|
                  </td>
               </tr>
-            </table>    
+            </table>
             </select>|;
 
   $main::lxdebug->leave_sub();
@@ -410,7 +410,7 @@ sub query_finanzamt {
   if ($DBI::err) {
 
     #There is no table, read the table from sql/finanzamt.sql
-    print qq|<p>Bitte warten, Tabelle $table wird einmalig in Datenbank: 
+    print qq|<p>Bitte warten, Tabelle $table wird einmalig in Datenbank:
     $myconfig->{dbname} als Benutzer: $myconfig->{dbuser} hinzugefügt...</p>|;
     process_query($form, $dbh, $filename) || $self->error(DBI->errstr);
 
@@ -557,4 +557,3 @@ sub process_query {
 }
 
 1;
-
index afd284b..566f29a 100644 (file)
@@ -647,7 +647,7 @@ sub form_header {
          <td><input name="${item}_dbuser" size=15 value=$form->{"${item}_dbuser"}></td>
          <th align=right>| . $locale->text('Password') . qq|</th>
          <td><input name="${item}_dbpasswd" type=password size=10 value=$form->{"${item}_dbpasswd"}></td>
-         
+
        </tr>|;
     }
 
@@ -777,7 +777,7 @@ sub form_header {
         $webdav{"${directory}c"} = "";
       }
     }
-    print qq|  
+    print qq|
    <tr>
     <td colspan=2><hr size=3 noshade></td>
   </tr>
@@ -787,15 +787,15 @@ sub form_header {
   <table width=100%>
        <tr>
        <td><input name=angebote class=checkbox type=checkbox value=1 $webdav{angebotec}>&nbsp;Angebot</td>
-       <td><input name=bestellungen class=checkbox type=checkbox value=1 $webdav{bestellungenc}>&nbsp;Bestellung</td> 
+       <td><input name=bestellungen class=checkbox type=checkbox value=1 $webdav{bestellungenc}>&nbsp;Bestellung</td>
        <td><input name=rechnungen class=checkbox type=checkbox value=1 $webdav{rechnungenc}>&nbsp;Rechnung</td>
        </tr>
        <tr>
        <td><input name=anfragen class=checkbox type=checkbox value=1 $webdav{anfragenc}>&nbsp;Angebot</td>
-       <td><input name=lieferantenbestellungen class=checkbox type=checkbox value=1 $webdav{lieferantenbestellungenc}>&nbsp;Lieferantenbestellung</td> 
+       <td><input name=lieferantenbestellungen class=checkbox type=checkbox value=1 $webdav{lieferantenbestellungenc}>&nbsp;Lieferantenbestellung</td>
        <td><input name=einkaufsrechnungen class=checkbox type=checkbox value=1 $webdav{einkaufsrechnungenc}>&nbsp;Einkaufsrechnung</td>
        </tr>
-  </table>    
+  </table>
   <tr>
     <td colspan=2><hr size=3 noshade></td>
   </tr>
@@ -1247,7 +1247,7 @@ sub dbselect_source {
     <td><input type=password name=dbpasswd size=10></td>
 
   </tr>
-  
+
   <tr>
 
     <th align=right>$form->{connectstring}</th>
@@ -1457,7 +1457,7 @@ sub create_dataset {
     <td>$dbsources</td>
 
   </tr>
-  
+
   <tr>
 
     <th align=right nowrap>| . $locale->text('Create Dataset') . qq|</th>
@@ -1471,7 +1471,7 @@ sub create_dataset {
     <td><select name=encoding>$selectencoding</select></td>
 
   </tr>
+
   <tr>
 
     <th align=right nowrap>|
@@ -1480,7 +1480,7 @@ sub create_dataset {
     <td>@charts</td>
 
   </tr>
+
   <tr><td colspan=2>
 <p>
 <input type=hidden name=dbdriver value=$form->{dbdriver}>
@@ -1598,7 +1598,7 @@ sub delete_dataset {
     $dbsources
     </td>
   </tr>
-  
+
   <tr><td>
 <p>
 <input type=hidden name=dbdriver value=$form->{dbdriver}>
@@ -1701,4 +1701,3 @@ sub lock_system {
   $form->redirect($locale->text('Lockfile created!'));
 
 }
-
index c21f482..20f1ad8 100644 (file)
@@ -385,8 +385,8 @@ sub account_header {
                </td>
              </tr>
            </table>
-         </td>  
-       </tr>  
+         </td>
+       </tr>
 |;
   }
 
@@ -944,9 +944,9 @@ sub list_department {
 
   print qq|
   </form>
-  
+
   </body>
-  </html> 
+  </html>
 |;
 
   $lxdebug->leave_sub();
@@ -1163,11 +1163,11 @@ sub list_business {
   }
 
   print qq|
-  
+
   </form>
-  
+
   </body>
-  </html> 
+  </html>
 |;
 
   $lxdebug->leave_sub();
@@ -1216,7 +1216,7 @@ sub business_header {
   <tr>
     <td align=right>| . $locale->text('Salesman') . qq|</td>
     <td><input name=salesman class=checkbox type=checkbox value=1 $form->{salesman}></td>
-  </tr> 
+  </tr>
   <td colspan=2><hr size=3 noshade></td>
   </tr>
 </table>
@@ -1376,9 +1376,9 @@ sub list_sic {
 
   print qq|
   </form>
-  
+
   </body>
-  </html> 
+  </html>
 |;
 
   $lxdebug->leave_sub();
@@ -2119,9 +2119,9 @@ sub list_warehouse {
 
   print qq|
   </form>
-  
+
   </body>
-  </html> 
+  </html>
 |;
 
   $lxdebug->leave_sub();
@@ -2199,4 +2199,3 @@ sub continue {
 
   $lxdebug->leave_sub();
 }
-
index 77e9d36..4b2d974 100644 (file)
@@ -392,7 +392,7 @@ sub form_header {
        <td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value=$form->{transdate}> $readonly</td>
        <td><input type=button name=transdate id="trigger1" value=|
       . $locale->text('button')
-      . qq|></td>  
+      . qq|></td>
        |;
     $button2 = qq|
        <td><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value=$form->{duedate}> $readonly</td>
@@ -504,7 +504,7 @@ sub form_header {
     <td>
       <table width=100%>
 
-$jsscript  
+$jsscript
 |;
 
   $amount  = $locale->text('Amount');
@@ -561,13 +561,13 @@ $jsscript
 
          <input type=hidden name=oldinvtotal value=$form->{oldinvtotal}>
          <input type=hidden name=oldtotalpaid value=$form->{oldtotalpaid}>
-         
+
          <input type=hidden name=taxaccounts value="$form->{taxaccounts}">
-         
+
          <td colspan=2></td>
           <td><select name=APselected>$form->{selectAP}</select></td>
          <input type=hidden name=AP value="$form->{AP}">
-         
+
        </tr>
        <tr>
          <th align=right nowrap>| . $locale->text('Notes') . qq|</th>
@@ -658,7 +658,7 @@ $jsscript
   print qq|
     <input type=hidden name=paidaccounts value=$form->{paidaccounts}>
     <input type=hidden name=selectAP_paid value="$form->{selectAP_paid}">
-    
+
       </table>
     </td>
   </tr>
@@ -1446,18 +1446,18 @@ sub ap_transactions {
   </tr>
   <tr>
     <td><hr size=3 noshade></td>
-  </tr>  
+  </tr>
 </table>
 
 <br>
 <form method=post action=$form->{script}>
+
 <input name=callback type=hidden value="$form->{callback}">
-  
+
 <input type=hidden name=path value=$form->{path}>
 <input type=hidden name=login value=$form->{login}>
 <input type=hidden name=password value=$form->{password}>
-   
+
 <input class=submit type=submit name=action value="|
     . $locale->text('AP Transaction') . qq|">
 
@@ -1517,4 +1517,3 @@ sub ap_subtotal {
 
   $lxdebug->leave_sub();
 }
-
index 2451cc1..9d3f117 100644 (file)
@@ -410,7 +410,7 @@ sub form_header {
        <td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value=$form->{transdate}></td>
        <td><input type=button name=transdate id="trigger1" value=|
       . $locale->text('button')
-      . qq|></td>  
+      . qq|></td>
        |;
     $button2 = qq|
        <td><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value=$form->{duedate}></td>
@@ -522,7 +522,7 @@ sub form_header {
       <table width=100%>
 
 $jsscript
-          
+
   <input type=hidden name=AR_amount value="$form->{AR_amount}">
   <input type=hidden name=taxchart value="$form->{taxchart}">
   <input type=hidden name=rowcount value=$form->{rowcount}>
@@ -585,7 +585,7 @@ $jsscript
          <td colspan=2></td>
          <td><select name=ARselected>$form->{selectAR}</select></td>
           <input type=hidden name=AR value="$form->{AR}">
-  
+
         </tr>
         <tr>
          <th align=right>| . $locale->text('Notes') . qq|</th>
@@ -1030,8 +1030,8 @@ sub search {
     } (@{ $form->{all_departments} });
   }
 
-  $department = qq| 
-        <tr> 
+  $department = qq|
+        <tr>
          <th align=right nowrap>| . $locale->text('Department') . qq|</th>
          <td colspan=3><select name=department>$form->{selectdepartment}</select></td>
        </tr>
@@ -1559,4 +1559,3 @@ sub ar_subtotal {
 
   $lxdebug->leave_sub();
 }
-
index 3d52198..56ae608 100644 (file)
@@ -92,7 +92,7 @@ sub chart_of_accounts {
 
   print qq|
 <body>
-  
+
 <table border=0 width=100%>
   <tr><th class=listtop colspan=$colspan>$form->{title}</th></tr>
   <tr height="5"></tr>
@@ -513,4 +513,3 @@ sub ca_subtotal {
 
   $lxdebug->leave_sub();
 }
-
index 314b329..4decb86 100644 (file)
@@ -316,7 +316,7 @@ sub form_header {
       </table>
     </td>
   </tr>
-  
+
 $jsscript
 |;
 
@@ -781,4 +781,3 @@ sub check_form {
 
   $lxdebug->leave_sub();
 }
-
index 6dbf425..e20efd2 100644 (file)
@@ -641,7 +641,7 @@ sub form_header {
          <input name=department_2 size=16 maxlength=75 tabindex=3 value="$form->{department_2}"></td>
           <td><input name=shiptodepartment_1 size=16 maxlength=75 value="$form->{shiptodepartment_1}">
          <input name=shiptodepartment_2 size=16 maxlength=75 value="$form->{shiptodepartment_2}"></td>
-       </tr>        
+       </tr>
        <tr>
          <th align=right nowrap>| . $locale->text('Street') . qq|</th>
          <td><input name=street size=35 tabindex=4 maxlength=75 value="$form->{street}"></td>
@@ -766,7 +766,7 @@ sub form_header {
           <th align=right>| . $locale->text('Bank Code Number') . qq|</th>
           <td><input name=bank_code size=10 tabindex=20 value="$form->{bank_code}"></td>
           <th align=right>| . $locale->text('Bank') . qq|</th>
-          <td><input name=bank size=30 tabindex=21 value="$form->{bank}"></td>          
+          <td><input name=bank size=30 tabindex=21 value="$form->{bank}"></td>
         </tr>
        <tr>
           $business
@@ -859,7 +859,7 @@ $update_button
   }
 
   print qq|
+
   </form>
 
 </body>
@@ -1171,4 +1171,3 @@ sub salesman_selected {
 }
 
 sub continue { &{ $form->{nextsub} } }
-
index 654a0e2..01c519d 100644 (file)
@@ -61,30 +61,30 @@ sub export {
        <tr>
          <td align=left nowrap>| . $locale->text("Beraternummer") . qq|</td>
          <td><input name=beraternr size=10 maxlength=7 value="$form->{beraternr}"></td>
-       
+
          <td align=left nowrap>| . $locale->text("DFV-Kennzeichen") . qq|</td>
          <td><input name=dfvkz size=5 maxlength=2 value="$form->{dfvkz}"></td>
        </tr>
        <tr>
          <td align=left nowrap>| . $locale->text("Beratername") . qq|</td>
          <td><input name=beratername size=10 maxlength=9 value="$form->{beratername}"></td>
-       
+
          <td align=left nowrap>| . $locale->text("Password") . qq|</td>
          <td><input name=passwort size=5 maxlength=4 value="$form->{passwort}"></td>
        </tr>
        <tr>
          <td align=left nowrap>| . $locale->text("Mandantennummer") . qq|</td>
          <td><input name=mandantennr size=10 maxlength=5 value="$form->{mandantennr}"></td>
-       
+
          <td align=left nowrap>| . $locale->text("Datenträgernummer") . qq|</td>
          <td><input name=datentraegernr size=5 maxlength=3 value="$form->{datentraegernr}"></td>
-       </tr>   
+       </tr>
        <tr>
          <td><input checked name=kne type=checkbox class=checkbox value=1> |
     . $locale->text("Kontonummernerweiterung (KNE)")
     . qq|</td>
           <td></td>
-       
+
          <td align=left nowrap>| . $locale->text("Abrechnungsnummer") . qq|</td>
          <td><input name=abrechnungsnr size=5 maxlength=3 value="$form->{abrechnungsnr}"></td>
        </tr>
@@ -93,7 +93,7 @@ sub export {
     . $locale->text("Export Buchungsdaten")
     . qq|</td>
           <td></td>
-          
+
          <td><input name=exporttype type=radio class=radio value=1> |
     . $locale->text("Export Stammdaten")
     . qq|</td>
@@ -216,7 +216,7 @@ sub export_bewegungsdaten {
          <td align=left></td>
           <td align=left><select name=monat>$form->{allemonate}</select></td>
         </tr>
-        <tr>  
+        <tr>
           <td align=left><input name=zeitraum class=radio type=radio value=quartal>&nbsp;</td><td align=left>|
     . $locale->text('Quartal')
     . qq|</td>
@@ -224,13 +224,13 @@ sub export_bewegungsdaten {
           <td align=left></td>
           <td align=left><select name=quartal>$form->{allequartale}</select></td>
         </tr>
-        <tr> 
+        <tr>
           <td align=left><input name=zeitraum class=radio type=radio value=zeit>&nbsp;</td><td align=left>|
     . $locale->text('Datum von')
     . qq|</td>
           <td align=left><input name=transdatefrom size=8></td>
          <td align=left>| . $locale->text('bis') . qq|</td>
-          <td align=left><input name=transdateto size=8></td>          
+          <td align=left><input name=transdateto size=8></td>
        </tr>
       </table>
     </td>
index a34572f..e0a5811 100644 (file)
@@ -248,7 +248,7 @@ sub search {
        <td><input name=datefrom id=datefrom size=11 title="$myconfig{dateformat}">
        <input type=button name=datefrom id="trigger1" value=|
       . $locale->text('button')
-      . qq|></td>  
+      . qq|></td>
        |;
     $button2 = qq|
        <td><input name=dateto id=dateto size=11 title="$myconfig{dateformat}">
@@ -1056,7 +1056,7 @@ sub form_header {
        <td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value=$form->{transdate} tabindex="2" $readonly></td>
        <td><input type=button name=transdate id="trigger1" value=|
       . $locale->text('button')
-      . qq|></td>  
+      . qq|></td>
        |;
 
     #write Trigger
@@ -1124,7 +1124,7 @@ sub form_header {
          </td>
        </tr>|;
   }
-  print qq|    
+  print qq|
        $department|;
   if ($form->{id}) {
     print qq|
@@ -1215,7 +1215,7 @@ sub form_header {
       . $locale->text('Split Debit')
       . qq|"></td>
           <input  name=debit_splited type=hidden size=10 value=$form->{debit_splited}>
-         </tr>          
+         </tr>
           <tr>
          <th align=right>| . $locale->text('Credit') . qq|</th>
          <td><select name=creditchartselected tabindex="6">$form->{creditchart}</select></td>
@@ -1288,7 +1288,7 @@ sub form_footer {
       |;
     }
   }
-  print qq| 
+  print qq|
 <input type=hidden name=path value=$form->{path}>
 <input type=hidden name=login value=$form->{login}>
 <input type=hidden name=password value=$form->{password}>
@@ -1598,7 +1598,7 @@ sub display_split_credit {
            function update_stilltopost (betrag){
            remaining = parseFloat(document.split_credit.creditpost.value) - parseFloat(betrag);
            document.split_credit.creditpost.value= remaining;
-           }           
+           }
 </script>
 
 <table>|;
@@ -1690,7 +1690,7 @@ sub display_split_debit {
            function update_stilltopost (betrag){
            remaining = parseFloat(document.split_debit.debitpost.value) - parseFloat(betrag);
            document.split_debit.debitpost.value= remaining;
-           }           
+           }
 </script>
 
 <table>|;
index 33a78b9..81db767 100644 (file)
@@ -527,7 +527,7 @@ sub choice {
 
   print qq|
      <input class=submit type=submit name=action value="|
-    . $locale->text('list') . qq|"> 
+    . $locale->text('list') . qq|">
     </form>
 
    </body>
@@ -1262,7 +1262,7 @@ sub addtop100 {
 
   print qq|
     <input type=hidden name=ndxs_counter value="$form->{ndxs_counter}">
-    
+
     <input class=submit type=submit name=action value="|
     . $locale->text('choice') . qq|">|;
 
@@ -2259,7 +2259,7 @@ sub form_header {
 
   print qq|
   <body onLoad="fokus()">
+
 
 <form method=post name="ic" action=$form->{script}>
 
@@ -2325,7 +2325,7 @@ sub form_header {
     . $locale->text('Updated')
     . qq|</th>
                 $button1
-              </tr>  
+              </tr>
              <tr>
                <th align="right" nowrap="true">| . $locale->text('List Price') . qq|</th>
                <td><input name=listprice size=11 value=$form->{listprice}></td>
@@ -2351,7 +2351,7 @@ sub form_header {
     </td>
   </tr>
   $imagelinks
-  
+
 $jsscript
 |;
   $lxdebug->leave_sub();
@@ -3044,4 +3044,3 @@ sub restock_assemblies {
 }
 
 sub continue { &{ $form->{nextsub} } }
-
index fac3ba4..a684593 100644 (file)
@@ -271,7 +271,7 @@ sub form_header {
        <td><input name=invdate id=invdate size=11 title="$myconfig{dateformat}" value=$form->{invdate}></td>
        <td><input type=button name=invdate id="trigger1" value=|
       . $locale->text('button')
-      . qq|></td>  
+      . qq|></td>
        |;
     $button2 = qq|
        <td width="13"><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value=$form->{duedate}></td>
@@ -328,12 +328,12 @@ sub form_header {
              <tr>
                <th align=right nowrap>| . $locale->text('Vendor') . qq|</th>
                <td colspan=3>$vendor</td>
-               
+
                 <th align=richt nowrap>|
     . $locale->text('Contact Person')
     . qq|</th>
                 <td colspan=3>$contact</td>
-               
+
                 <input type=hidden name=vendor_id value=$form->{vendor_id}>
                <input type=hidden name=oldvendor value="$form->{oldvendor}">
 
@@ -391,7 +391,7 @@ sub form_header {
   </tr>
 
 $jsscript
-    
+
 <input type=hidden name=selectcurrency value="$form->{selectcurrency}">
 <input type=hidden name=defaultcurrency value=$form->{defaultcurrency}>
 <input type=hidden name=fxgain_accno value=$form->{fxgain_accno}>
@@ -551,7 +551,7 @@ sub form_footer {
   <tr>
     <td><hr size=3 noshade></td>
   </tr>
-  <tr>   
+  <tr>
     <th class=listtop align=left>Dokumente im Webdav-Repository</th>
   </tr>
     <table width=100%>
@@ -560,7 +560,7 @@ sub form_footer {
 |;
     foreach $file (keys %{ $form->{WEBDAV} }) {
       $webdav_list .= qq|
-      <tr>     
+      <tr>
         <td align=left>$file</td>
         <td align=left><a href="$form->{WEBDAV}{$file}">$form->{WEBDAV}{$file}</a></td>
       </tr>
@@ -949,4 +949,3 @@ sub yes {
 
   $lxdebug->leave_sub();
 }
-
index 5b9df52..4673ccb 100644 (file)
@@ -316,7 +316,7 @@ sub form_header {
        <td><input name=invdate id=invdate size=11 title="$myconfig{dateformat}" value=$form->{invdate}></td>
        <td><input type=button name=invdate id="trigger1" value=|
       . $locale->text('button')
-      . qq|></td>  
+      . qq|></td>
        |;
     $button2 = qq|
        <td width="13"><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value=$form->{duedate}></td>
@@ -477,7 +477,7 @@ sub form_header {
   </tr>
 
 $jsscript
-  
+
 <!-- shipto are in hidden variables -->
 
 <input type=hidden name=shiptoname value="$form->{shiptoname}">
@@ -645,7 +645,7 @@ sub form_footer {
   <tr>
     <td><hr size=3 noshade></td>
   </tr>
-  <tr>   
+  <tr>
     <th class=listtop align=left>Dokumente im Webdav-Repository</th>
   </tr>
     <table width=100%>
@@ -654,7 +654,7 @@ sub form_footer {
 |;
     foreach $file (keys %{ $form->{WEBDAV} }) {
       $webdav_list .= qq|
-      <tr>     
+      <tr>
         <td align=left>$file</td>
         <td align=left><a href="$form->{WEBDAV}{$file}">$form->{WEBDAV}{$file}</a></td>
       </tr>
@@ -1101,4 +1101,3 @@ sub yes {
 
   $lxdebug->leave_sub();
 }
-
index 4efab2f..9339736 100644 (file)
@@ -493,7 +493,7 @@ sub search {
       </tr>
     </table>
   </tr>
-  <tr><td colspan=4><hr size=3 noshade></td></tr>                               
+  <tr><td colspan=4><hr size=3 noshade></td></tr>
 </table>
 
 <input type=hidden name=nextsub value=\"do_search\">
index e6dd8e7..cea1559 100644 (file)
@@ -99,7 +99,7 @@ sub login_screen {
              <tr>
                <th align=right>| . $locale->text('Login Name') . qq|</th>
                <td><input class=login name=login size=30 tabindex="1"></td>
-             </tr> 
+             </tr>
              <tr>
                <th align=right>| . $locale->text('Password') . qq|</th>
                <td><input class=login type=password name=password size=30 tabindex="2"></td>
@@ -119,7 +119,7 @@ sub login_screen {
     </td>
   </tr>
 </table>
-  
+
 </body>
 </html>
 |;
@@ -238,4 +238,3 @@ $myconfig{company}
 
   $lxdebug->leave_sub();
 }
-
index d9ccd05..44bfbd4 100644 (file)
@@ -242,7 +242,7 @@ sub form_header {
        <td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value=$form->{transdate}></td>
        <td><input type=button name=transdate id="trigger1" value=|
       . $locale->text('button')
-      . qq|></td>            
+      . qq|></td>
       |;
     $button2 = qq|
        <td width="13"><input name=reqdate id=reqdate size=11 title="$myconfig{dateformat}" value=$form->{reqdate}></td>
@@ -573,7 +573,7 @@ sub form_header {
       </table>
     </td>
   </tr>
-  
+
 $jsscript
 
 <!-- shipto are in hidden variables -->
@@ -589,7 +589,7 @@ $jsscript
 <input type=hidden name=shiptoemail value="$form->{shiptoemail}">
 
 <!-- email variables -->
-<input type=hidden name=message value="$form->{message}"> 
+<input type=hidden name=message value="$form->{message}">
 <input type=hidden name=email value="$form->{email}">
 <input type=hidden name=subject value="$form->{subject}">
 <input type=hidden name=cc value="$form->{cc}">
@@ -749,7 +749,7 @@ sub form_footer {
   if ($webdav) {
     $webdav_list = qq|
 
-  <tr>   
+  <tr>
     <th class=listtop align=left>Dokumente im Webdav-Repository</th>
   </tr>
     <table width=100%>
@@ -758,7 +758,7 @@ sub form_footer {
 |;
     foreach $file (keys %{ $form->{WEBDAV} }) {
       $webdav_list .= qq|
-      <tr>     
+      <tr>
         <td align=left>$file</td>
         <td align=left><a href="$form->{WEBDAV}{$file}">$form->{WEBDAV}{$file}</a></td>
       </tr>
@@ -813,7 +813,7 @@ Bearbeiten des $form->{heading}<br>
 <input class=submit type=submit name=action value="|
         . $locale->text('Order') . qq|">|;
     }
-    print qq|   
+    print qq|
 <input class=submit type=submit name=action value="|
       . $locale->text('Invoice') . qq|">
 |;
@@ -850,7 +850,7 @@ Bearbeiten des $form->{heading}<br>
     &menubar;
   }
 
-  print qq| 
+  print qq|
 
 <input type=hidden name=rowcount value=$form->{rowcount}>
 
@@ -1088,8 +1088,8 @@ sub search {
     } (@{ $form->{all_departments} });
   }
 
-  $department = qq|  
-        <tr>  
+  $department = qq|
+        <tr>
          <th align=right nowrap>| . $locale->text('Department') . qq|</th>
          <td colspan=3><select name=department>$form->{selectdepartment}</select></td>
        </tr>
@@ -2271,7 +2271,7 @@ sub display_ship_receive {
 <input type=hidden name=shiptoemail value="$form->{shiptoemail}">
 
 <!-- email variables -->
-<input type=hidden name=message value="$form->{message}"> 
+<input type=hidden name=message value="$form->{message}">
 <input type=hidden name=email value="$form->{email}">
 <input type=hidden name=subject value="$form->{subject}">
 <input type=hidden name=cc value="$form->{cc}">
@@ -2422,7 +2422,7 @@ sub display_ship_receive {
   }
 
   print qq|
-  
+
 <input type=hidden name=rowcount value=$form->{rowcount}>
 
 <input name=callback type=hidden value="$callback">
@@ -2676,7 +2676,7 @@ sub list_transfer {
       </table>
     </td>
   </tr>
-  
+
   <tr>
     <td><hr size=3 noshade></td>
   </tr>
@@ -2719,4 +2719,3 @@ sub transfer {
 
   $lxdebug->leave_sub();
 }
-
index 0ee0621..201e96b 100644 (file)
@@ -283,7 +283,7 @@ sub project_report {
 
   print qq|
   </form>
-  
+
 </body>
 </html>
 |;
@@ -611,4 +611,3 @@ sub form_partsgroup_footer {
 
   $lxdebug->leave_sub();
 }
-
index 5772e16..7989d86 100644 (file)
@@ -200,7 +200,7 @@ sub report {
         . $locale->text('button') . qq|>|;
       $button2 = qq|
          <input name=$name_2 id=$id_2 size=11 title="$myconfig{dateformat}">|;
-      $button2_2 = qq|  
+      $button2_2 = qq|
          <input type=button name=$name_2 id="$trigger_2" value=|
         . $locale->text('button') . qq|>
        |;
@@ -394,7 +394,7 @@ $jsscript
         </tr>
        <tr>
                <td colspan=5><hr size=3 noshade></td>
-       </tr>   
+       </tr>
        <tr>
          <th align=leftt>| . $locale->text('Method') . qq|</th>
          <td colspan=3><input name=method class=radio type=radio value=accrual $accrual>|
@@ -524,7 +524,7 @@ $checked></td>
         </tr>
        <tr>
                <td colspan=5><hr size=3 noshade></td>
-       </tr>   
+       </tr>
        <tr>
          <th align=leftt>| . $locale->text('Method') . qq|</th>
          <td colspan=3><input name=method class=radio type=radio value=accrual $accrual>|
@@ -533,15 +533,15 @@ $checked></td>
       . $locale->text('EUR')
       . qq|</td>
        </tr>
-        
-$jsscript    
+
+$jsscript
 |;
   }
 
   if ($form->{report} eq "ustva") {
 
     print qq|
-    
+
         <br>
         <input type=hidden name=nextsub value=generate_ustva>
 </table>
@@ -638,7 +638,7 @@ $checked></td>
        </tr>
        <tr>
                <td colspan=5><hr size=3 noshade></td>
-       </tr>   
+       </tr>
        <tr>
          <th align=left>| . $locale->text('Method') . qq|</th>
          <td colspan=3><input name=method class=radio type=radio value=accrual $accrual>|
@@ -702,7 +702,7 @@ $checked></td>
       . $locale->text('Account Number')
       . qq|</td>
        </tr>
-        
+
 $jsscript
 |;
   }
@@ -739,7 +739,7 @@ $jsscript
       . $locale->text('All Accounts')
       . qq|</td>
        </tr>
-        
+
 $jsscript
 |;
   }
@@ -974,7 +974,7 @@ $jsscript
 
        <input type=hidden name=nextsub value=$nextsub>
        <input type=hidden name=action value=$nextsub>
-        
+
 $jsscript
 |;
   }
@@ -1035,8 +1035,8 @@ $jsscript
       . qq|</td>
        </tr>
 
-$jsscript 
-        
+$jsscript
+
          <input type=hidden name=db value=$form->{db}>
          <input type=hidden name=sort value=transdate>
 |;
@@ -1906,7 +1906,7 @@ sub aging {
 <input type=hidden name=path value=$form->{path}>
 <input type=hidden name=login value=$form->{login}>
 <input type=hidden name=password value=$form->{password}>
-  
+
 <br>
 <input class=submit type=submit name=action value="|
       . $locale->text('Select all') . qq|">
@@ -3261,4 +3261,3 @@ sub generate_ustva {
   }
   $lxdebug->leave_sub();
 }
-
index e04bc45..1bab651 100644 (file)
@@ -157,10 +157,10 @@ sub report {
          $form->{tel}
          <br>
          | . $locale->text('Fax.: ') . qq|
-         $form->{fax}    
+         $form->{fax}
          <br>
          <br>
-         $form->{email}          
+         $form->{email}
          <br>
          <br>
          | . $locale->text('Steuernummer: ') . qq|
@@ -192,7 +192,7 @@ sub report {
       . qq|" name="FA_steuerberater" id=steuerberater class=checkbox type=checkbox value="1">&nbsp;
             <b>| . $locale->text('Steuerberater/-in') . qq|</b>
             </legend>
-            
+
             $form->{FA_steuerberater_name}<br>
             $form->{FA_steuerberater_street}<br>
             $form->{FA_steuerberater_city}<br>
@@ -267,7 +267,7 @@ sub report {
 
   if ($form->{FA_Name} ne '') {
     print qq|
-    <td width="50%" valign="top">        
+    <td width="50%" valign="top">
          <fieldset>
          <legend>
          <b>| . $locale->text('Finanzamt') . qq|</b>
@@ -289,7 +289,7 @@ sub report {
           <br>
           | . $locale->text('Tel. : ') . qq|
           $form->{FA_Telefon}
-          <br> 
+          <br>
           | . $locale->text('Fax. : ') . qq|
           $form->{FA_Fax}
           <br>
@@ -331,7 +331,7 @@ sub report {
           <tr>
           <td>
           $form->{FA_Bankbezeichnung_1}
-          <br>                  
+          <br>
           | . $locale->text('Konto: ') . qq|
           $form->{FA_Kontonummer_1}
           <br>
@@ -343,7 +343,7 @@ sub report {
           <br>
           | . $locale->text('Konto: ') . qq|
           $form->{FA_Kontonummer_2}
-          <br> 
+          <br>
           | . $locale->text('BLZ: ') . qq|
           $form->{FA_BLZ_2}
           </td>
@@ -357,10 +357,10 @@ sub report {
           <br>
           <br>
           $form->{FA_Bankbezeichnung_1}
-          <br>                  
+          <br>
           | . $locale->text('Konto: ') . qq|
           $form->{FA_Kontonummer_1}
-          <br> 
+          <br>
           | . $locale->text('BLZ: ') . qq|
           $form->{FA_BLZ_1}          <br>
           <br>|;
@@ -371,10 +371,10 @@ sub report {
           <br>
           <br>
           $form->{FA_Bankbezeichnung_oertlich}
-          <br>                  
+          <br>
           | . $locale->text('Konto: ') . qq|
           $form->{FA_Kontonummer_2}
-          <br> 
+          <br>
           | . $locale->text('BLZ: ') . qq|
           $form->{FA_BLZ_2}
      |;
@@ -640,7 +640,7 @@ sub ustva_vorauswahl {
          <option value="$key" $selected>|
         . $locale->text("$liste{$key}")
         . qq|</option>
-         
+
    |;
     }
     print qq|</select>|;
@@ -726,14 +726,14 @@ sub ustva_vorauswahl {
          <option value="$key">$listea{$key} |
         . $locale->text('Quarter')
         . qq|</option>
-         
+
      |;
     }
 
     foreach $key (sort keys %listeb) {
       print qq|
          <option value="$key">| . $locale->text("$listeb{$key}") . qq|</option>
-         
+
      |;
     }
     print qq|</select>|;
@@ -1113,7 +1113,7 @@ sub edit {
            <label for="">|
     . $locale->text('Dauerfristverlängerung')
     . qq|</label>
-           
+
            </fieldset>
            <br>
            <fieldset>
@@ -1158,7 +1158,7 @@ sub edit {
            <input name="FA_steuerberater_tel" id=steuerberater size=25 value="$form->{FA_steuerberater_tel}">
            </tr>
            </table>
-           
+
            </fieldset>
 
            <br>
@@ -1177,7 +1177,7 @@ sub edit {
   my @variables = qw( steuernummer elsterland elstersteuernummer elsterFFFF);
   my $variable  = '';
   foreach $variable (@variables) {
-    print qq|  
+    print qq|
           <input name=$variable type=hidden value="$form->{$variable}">|;
   }
   my $steuernummer_new = '';
@@ -1202,7 +1202,7 @@ sub edit {
     FA_Email FA_Internet);
 
   foreach $variable (@variables) {
-    print qq|  
+    print qq|
           <input name=$variable type=hidden value="$form->{$variable}">|;
   }
 
@@ -1235,8 +1235,8 @@ sub edit_form {
         || $form->{elsterland_new} eq 'Auswahl');
   USTVA::info(
     $locale->text(
-      'Es fehlen Angaben zur Versteuerung. 
-  Wenn Sie Ist Versteuert sind, wählen Sie die Einnahmen/Überschuß-Rechnung aus. 
+      'Es fehlen Angaben zur Versteuerung.
+  Wenn Sie Ist Versteuert sind, wählen Sie die Einnahmen/Überschuß-Rechnung aus.
   Sind Sie Soll-Versteuert und Bilanzverpflichtet, dann wählen Sie Bilanz aus.'
     ))
     if ($form->{method} eq '');
@@ -1581,7 +1581,7 @@ sub show_fa_daten {
                       | . $locale->text('Telefon') . qq|<br>
                       <input name="FA_Telefon" size="40" title="FA_Telefon" value="$form->{FA_Telefon}" $readonly>
                       <br>
-                      <br> 
+                      <br>
                       | . $locale->text('Fax') . qq|<br>
                       <input name="FA_Fax" size="40" title="FA_Fax" value="$form->{FA_Fax}" $readonly>
                       <br>
@@ -1620,7 +1620,7 @@ sub show_fa_daten {
                     <b>|
       . $locale->text('Bankverbindungen des Finanzamts') . qq|</b>
                     <legend>
-                    <table>   
+                    <table>
                     <tr>
                      <td>
                         | . $locale->text('Kreditinstitut') . qq|
@@ -1632,7 +1632,7 @@ sub show_fa_daten {
                         <br>
                         <input name="FA_Kontonummer_1" size="15" value="$form->{FA_Kontonummer_1}" $readonly>
                         <br>
-                        <br> 
+                        <br>
                         | . $locale->text('Bankleitzahl') . qq|
                         <br>
                         <input name="FA_BLZ_1" size="15" value="$form->{FA_BLZ_1}" $readonly>
@@ -1647,7 +1647,7 @@ sub show_fa_daten {
                         <br>
                         <input name="FA_Kontonummer_2" size="15" value="$form->{FA_Kontonummer_2}" $readonly>
                         <br>
-                        <br> 
+                        <br>
                         | . $locale->text('Bankleitzahl') . qq|
                         <br>
                         <input name="FA_BLZ_2" size="15" value="$form->{FA_BLZ_2}" $readonly>
@@ -1667,7 +1667,7 @@ sub show_fa_daten {
                     <br>
                     <input name="FA_Kontonummer_1" size="30" value="$form->{FA_Kontonummer_1}" $readonly>
                     <br>
-                    <br> 
+                    <br>
                     | . $locale->text('Bankleitzahl (BLZ)') . qq|
                     <br>
                     <input name="FA_BLZ_1" size="15" value="$form->{FA_BLZ_1}" $readonly>
@@ -1685,12 +1685,12 @@ sub show_fa_daten {
                     <legend>
                       <b>|
       . $locale->text('Bankverbindung des Finanzamts') . qq|</b>
-                    <legend> 
+                    <legend>
                     | . $locale->text('Kontonummer') . qq|
                     <br>
                     <input name="FA_Kontonummer_2" size="30" value="$form->{FA_Kontonummer_2}" $readonly>
                     <br>
-                    <br> 
+                    <br>
                     | . $locale->text('Bankleitzahl (BLZ)') . qq|
                     <br>
                     <input name="FA_BLZ_2" size="15" value="$form->{FA_BLZ_2}" $readonly>
@@ -1704,7 +1704,7 @@ sub show_fa_daten {
   }
   print qq|
                  </td>
-               </tr>              
+               </tr>
           </table>
   </fieldset>
   |;
@@ -1801,7 +1801,7 @@ SWITCH:
     do {
       $form->error(
         "Ungültiger Anmeldezeitraum.\n
-                                        Sie können für ELSTER nur einen monatlichen oder 
+                                        Sie können für ELSTER nur einen monatlichen oder
                                         quartalsweisen Anmeldezeitraum auswählen."
       );
     };
@@ -2147,4 +2147,3 @@ sub elster_xml {
   close XML;
   $lxdebug->leave_sub();
 }
-