Bug #862 behoben, Funktionen fuer die Buttons unter den Listen (Rechnungen und Buchun...
[kivitendo-erp.git] / bin / mozilla / cp.pl
index d8890a1..d341ffd 100644 (file)
 #
 #======================================================================
 
-
 use SL::CP;
 use SL::OP;
 use SL::IS;
 use SL::IR;
 
-require "$form->{path}/arap.pl";
+use strict ("vars", "subs");
+#use warnings;
+
+require "bin/mozilla/arap.pl";
+require "bin/mozilla/common.pl";
+
+our ($form, %myconfig, $lxdebug, $locale, $auth);
 
 1;
-# end of main
 
+# end of main
 
 sub payment {
   $lxdebug->enter_sub();
 
-  
+  $auth->assert('cash');
+
+  my (@curr);
+
   $form->{ARAP} = ($form->{type} eq 'receipt') ? "AR" : "AP";
   $form->{arap} = lc $form->{ARAP};
 
@@ -58,18 +66,22 @@ sub payment {
   }
 
   $form->{"select$form->{vc}"} = "";
-  
+
   if ($form->{"all_$form->{vc}"}) {
     $form->{"$form->{vc}_id"} = $form->{"all_$form->{vc}"}->[0]->{id};
-    map { $form->{"select$form->{vc}"} .= "<option>$_->{name}--$_->{id}\n" } @{ $form->{"all_$form->{vc}"} };
+    map { $form->{"select$form->{vc}"} .= "<option>$_->{name}--$_->{id}\n" }
+      @{ $form->{"all_$form->{vc}"} };
   }
 
   # departments
-  if (@{ $form->{all_departments} }) { 
+  if (@{ $form->{all_departments} }) {
     $form->{selectdepartment} = "<option>\n";
-    $form->{department} = "$form->{department}--$form->{department_id}";
+    $form->{department}       = "$form->{department}--$form->{department_id}";
 
-    map { $form->{selectdepartment} .= "<option>$_->{description}--$_->{id}\n" } (@{ $form->{all_departments} });
+    map {
+      $form->{selectdepartment} .=
+        "<option>$_->{description}--$_->{id}\n"
+    } (@{ $form->{all_departments} });
   }
 
   CP->paymentaccounts(\%myconfig, \%$form);
@@ -77,13 +89,18 @@ sub payment {
   $form->{selectaccount} = "";
   $form->{"select$form->{ARAP}"} = "";
 
-  map { $form->{selectaccount} .= "<option>$_->{accno}--$_->{description}\n" } @{ $form->{PR}{"$form->{ARAP}_paid"} };
-  map { $form->{"select$form->{ARAP}"} .= "<option>$_->{accno}--$_->{description}\n" } @{ $form->{PR}{$form->{ARAP}} };
+  map { $form->{selectaccount} .= "<option>$_->{accno}--$_->{description}\n" }
+    @{ $form->{PR}{"$form->{ARAP}_paid"} };
+  map {
+    $form->{"select$form->{ARAP}"} .=
+      "<option>$_->{accno}--$_->{description}\n"
+  } @{ $form->{PR}{ $form->{ARAP} } };
 
   # currencies
-  @curr = split /:/, $form->{currencies};
+  @curr = split(/:/, $form->{currencies});
   chomp $curr[0];
-  $form->{defaultcurrency} = $form->{currency} = $form->{oldcurrency} = $curr[0];
+  $form->{defaultcurrency} = $form->{currency} = $form->{oldcurrency} =
+    $curr[0];
 
   $form->{selectcurrency} = "";
   map { $form->{selectcurrency} .= "<option>$_\n" } @curr;
@@ -96,56 +113,63 @@ sub payment {
   $lxdebug->leave_sub();
 }
 
-
-
 sub form_header {
   $lxdebug->enter_sub();
 
+  $auth->assert('cash');
+
+  my ($vc, $vclabel, $allvc, $arap, $department, $exchangerate);
+  my ($jsscript, $button1, $button2, $onload);
 
   $vclabel = ucfirst $form->{vc};
   $vclabel = $locale->text($vclabel);
-  
+
   if ($form->{type} eq 'receipt') {
-    $form->{title} = $locale->text('Receipt');
+    $form->{title}     = $locale->text('Receipt');
     $form->{origtitle} = "Receipt";
   }
   if ($form->{type} eq 'check') {
-    $form->{title} = $locale->text('Payment');
+    $form->{title}     = $locale->text('Payment');
     $form->{origtitle} = "Payment";
   }
 
-# $locale->text('Customer')
-# $locale->text('Vendor')
+  # $locale->text('Customer')
+  # $locale->text('Vendor')
 
-  if ($form->{$form->{vc}} eq "") {
+  if ($form->{ $form->{vc} } eq "") {
     map { $form->{"addr$_"} = "" } (1 .. 4);
   }
 
   if ($form->{currency} ne $form->{defaultcurrency}) {
-    $form->{exchangerate} = $form->format_amount(\%myconfig, $form->{exchangerate});
+    $form->{exchangerate} =
+      $form->format_amount(\%myconfig, $form->{exchangerate});
     if ($form->{forex}) {
       $exchangerate = qq|
              <tr>
-               <th align=right nowrap>|.$locale->text('Exchangerate').qq|</th>
+               <th align=right nowrap>| . $locale->text('Exchangerate') . qq|</th>
                <td colspan=3><input type=hidden name=exchangerate size=10 value=$form->{exchangerate}>$form->{exchangerate}</td>
              </tr>
 |;
     } else {
       $exchangerate = qq|
              <tr>
-               <th align=right nowrap>|.$locale->text('Exchangerate').qq|</th>
+               <th align=right nowrap>| . $locale->text('Exchangerate') . qq|</th>
                <td colspan=3><input name=exchangerate size=10 value=$form->{exchangerate}></td>
              </tr>
 |;
     }
   }
 
-  foreach $item ($form->{vc}, account, currency, $form->{ARAP}, department) {
+  foreach my $item ($form->{vc}, "account", "currency", $form->{ARAP}, "department") {
     $form->{"select$item"} =~ s/ selected//;
-    $form->{"select$item"} =~ s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
+    $form->{"select$item"} =~
+      s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
   }
 
-  $vc = ($form->{"select$form->{vc}"}) ? qq|<select name=$form->{vc}>$form->{"select$form->{vc}"}\n</select>| : qq|<input name=$form->{vc} size=35 value="$form->{$form->{vc}}">|;
+  $vc =
+    ($form->{"select$form->{vc}"})
+    ? qq|<select name=$form->{vc}>$form->{"select$form->{vc}"}\n</select>|
+    : qq|<input name=$form->{vc} size=35 value="$form->{$form->{vc}}">|;
 
   if ($form->{all_vc}) {
     $allvc = "checked";
@@ -154,13 +178,13 @@ sub form_header {
     $allvc = "";
     $form->{openinvoices} = 1;
   }
-  
-# $locale->text('AR')
-# $locale->text('AP')
+
+  # $locale->text('AR')
+  # $locale->text('AP')
 
   $department = qq|
               <tr>
-               <th align="right" nowrap>|.$locale->text('Department').qq|</th>
+               <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
                <td><select name=department>$form->{selectdepartment}</select>
                <input type=hidden name=selectdepartment value="$form->{selectdepartment}">
 
@@ -168,33 +192,37 @@ sub form_header {
            </tr>
 | if $form->{selectdepartment};
 
-  $form->{jsscript} = $jscalendar;
-  $jsscript = "";    
-  if ($form->{jsscript}) 
-  {
+  $form->{jsscript} = 1;
+  $jsscript = "";
+  if ($form->{jsscript}) {
+
     # with JavaScript Calendar
     $button1 = qq|
-       <td><input name=datepaid id=datepaid size=11 title="$myconfig{dateformat}" value="$form->{datepaid}">
-       <input type=button name=datepaid id="trigger1" value=|.$locale->text('button').qq|></td>
+       <td><input name=datepaid id=datepaid size=11 title="$myconfig{dateformat}" value="$form->{datepaid}" onBlur=\"check_right_date_format(this)\">
+       <input type=button name=datepaid id="trigger1" value=|
+      . $locale->text('button') . qq|></td>
        |;
-      #write Trigger
-      $jsscript = Form->write_trigger(\%myconfig,"1","datepaid","BL","trigger1","","","");
-   }
-   else
-   {
-      # without JavaScript Calendar
-      $button1 = qq|
-                              <td><input name=transdatefrom id=transdatefrom size=11 title="$myconfig{dateformat}"></td>|;
-    }
+
+    #write Trigger
+    $jsscript =
+      Form->write_trigger(\%myconfig, "1", "datepaid", "BL", "trigger1");
+  } else {
+
+    # without JavaScript Calendar
+    $button1 = qq|
+                              <td><input name=transdatefrom id=transdatefrom size=11 title="$myconfig{dateformat}" onBlur=\"check_right_date_format(this)\"></td>|;
+  }
+  $form->{javascript} .= qq|<script type="text/javascript" src="js/common.js"></script>|;
   $form->header;
 
   $arap = lc $form->{ARAP};
-
+  $onload = qq|focus()|;
+  $onload .= qq|;setupDateFormat('|. $myconfig{dateformat} .qq|', '|. $locale->text("Falsches Datumsformat!") .qq|')|;
+  $onload .= qq|;setupPoints('|. $myconfig{numberformat} .qq|', '|. $locale->text("wrongformat") .qq|')|;
   print qq|
-<body>
+<body onLoad="$onload">
 
-<form method=post action=$form->{script}>
+<form method=post action=cp.pl>
 
 <input type=hidden name=defaultcurrency value=$form->{defaultcurrency}>
 <input type=hidden name=closedto value=$form->{closedto}>
@@ -223,7 +251,7 @@ sub form_header {
                <td align=right>
                <input name=all_vc type=checkbox style=checkbox value=Y $allvc>
                <input type=hidden name="oldall_vc" value="$form->{all_vc}"></td>
-               <th align=left>|.$locale->text('All').qq|</th>
+               <th align=left>| . $locale->text('All') . qq|</th>
              </tr>
              <tr>
                <th align=right>$vclabel</th>
@@ -233,7 +261,7 @@ sub form_header {
                <input type=hidden name="old$form->{vc}" value="$form->{"old$form->{vc}"}">
              </tr>
              <tr valign=top>
-               <th align=right nowrap>|.$locale->text('Address').qq|</th>
+               <th align=right nowrap>| . $locale->text('Address') . qq|</th>
                <td colspan=2>
                  <table>
                    <tr>
@@ -256,7 +284,7 @@ sub form_header {
                <input type=hidden name=country value="$form->{country}">
              </tr>
              <tr>
-               <th align=right>|.$locale->text('Memo').qq|</th>
+               <th align=right>| . $locale->text('Memo') . qq|</th>
                <td colspan=2><input name="memo" size=30 value="$form->{memo}"></td>
              </tr>
            </table>
@@ -265,35 +293,30 @@ sub form_header {
            <table>
              $department
              <tr>
-               <th align=right nowrap>|.$locale->text($form->{ARAP}).qq|</th>
-               <td colspan=3><select name=$form->{ARAP}>$form->{"select$form->{ARAP}"}</select>
-               </td>
-               <input type=hidden name="select$form->{ARAP}" value="$form->{"select$form->{ARAP}"}">
-             </tr>
-             <tr>
-               <th align=right nowrap>|.$locale->text('Account').qq|</th>
+               <th align=right nowrap>| . $locale->text('Account') . qq|</th>
                <td colspan=3><select name=account>$form->{selectaccount}</select>
                <input type=hidden name=selectaccount value="$form->{selectaccount}">
                </td>
              </tr>
              <tr>
-               <th align=right nowrap>|.$locale->text('Date').qq|</th>
+               <th align=right nowrap>| . $locale->text('Date') . qq|</th>
                 $button1
              </tr>
              <tr>
-               <th align=right nowrap>|.$locale->text('Currency').qq|</th>
+               <th align=right nowrap>| . $locale->text('Currency') . qq|</th>
                <td><select name=currency>$form->{selectcurrency}</select></td>
                <input type=hidden name=selectcurrency value="$form->{selectcurrency}">
                <input type=hidden name=oldcurrency value=$form->{oldcurrency}>
              </tr>
              $exchangerate
              <tr>
-               <th align=right nowrap>|.$locale->text('Source').qq|</th>
+               <th align=right nowrap>| . $locale->text('Source') . qq|</th>
                <td colspan=3><input name=source value="$form->{source}" size=10></td>
              </tr>
              <tr>
-               <th align=right nowrap>|.$locale->text('Amount').qq|</th>
-               <td colspan=3><input name=amount size=10 value=|.$form->format_amount(\%myconfig, $form->{amount}, 2).qq|></td>
+               <th align="right" nowrap>| . $locale->text('Amount') . qq|</th>
+               <td colspan="3"><input name="amount" size="10" value="|
+    . $form->format_amount(\%myconfig, $form->{amount}, 2) . qq|" onBlur=\"check_right_number_format(this)\"></td>
              </tr>
            </table>
          </td>
@@ -301,24 +324,27 @@ sub form_header {
       </table>
     </td>
   </tr>
-  
+
 $jsscript
 |;
 
   $lxdebug->leave_sub();
 }
 
-
 sub list_invoices {
   $lxdebug->enter_sub();
 
+  $auth->assert('cash');
+
+  my (@column_index, %column_data, $colspan, $invoice);
+  my ($totalamount, $totaldue, $totalpaid);
 
   @column_index = qw(invnumber transdate amount due checked paid);
-  
+
   $colspan = $#column_index + 1;
 
   $invoice = $locale->text('Invoices');
-  
+
   print qq|
   <input type=hidden name=column_index value="id @column_index">
   <tr>
@@ -329,13 +355,19 @@ sub list_invoices {
        </tr>
 |;
 
-  $column_data{invnumber} = qq|<th nowrap class=listheading>|.$locale->text('Invoice')."</th>";
-  $column_data{transdate} = qq|<th nowrap class=listheading>|.$locale->text('Date')."</th>";
-  $column_data{amount} = qq|<th nowrap class=listheading>|.$locale->text('Amount')."</th>";
-  $column_data{due} = qq|<th nowrap class=listheading>|.$locale->text('Due')."</th>";
-  $column_data{paid} = qq|<th nowrap class=listheading>|.$locale->text('Amount')."</th>";
-  $column_data{checked} = qq|<th nowrap class=listheading>|.$locale->text('Select')."</th>";
-  
+  $column_data{invnumber} =
+    qq|<th nowrap class=listheading>| . $locale->text('Invoice') . "</th>";
+  $column_data{transdate} =
+    qq|<th nowrap class=listheading>| . $locale->text('Date') . "</th>";
+  $column_data{amount} =
+    qq|<th nowrap class=listheading>| . $locale->text('Amount') . "</th>";
+  $column_data{due} =
+    qq|<th nowrap class=listheading>| . $locale->text('Due') . "</th>";
+  $column_data{paid} =
+    qq|<th nowrap class=listheading>| . $locale->text('Amount') . "</th>";
+  $column_data{checked} =
+    qq|<th nowrap class=listheading>| . $locale->text('Select') . "</th>";
+
   print qq|
         <tr>
 |;
@@ -344,32 +376,44 @@ sub list_invoices {
         </tr>
 |;
 
-  for $i (1 .. $form->{rowcount}) {
+  for my $i (1 .. $form->{rowcount}) {
+
+    my $j = 0;
+
+    map {
+      $form->{"${_}_$i"} =
+        $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
+    } qw(amount due paid);
 
-    map { $form->{"${_}_$i"} = $form->parse_amount(\%myconfig, $form->{"${_}_$i"}) } qw(amount due paid);
-    
     $totalamount += $form->{"amount_$i"};
-    $totaldue += $form->{"due_$i"};
-    $totalpaid += $form->{"paid_$i"};
+    $totaldue    += $form->{"due_$i"};
+    $totalpaid   += $form->{"paid_$i"};
 
-    map { $form->{"${_}_$i"} = $form->format_amount(\%myconfig, $form->{"${_}_$i"}, 2) } qw(amount due paid);
+    map {
+      $form->{"${_}_$i"} =
+        $form->format_amount(\%myconfig, $form->{"${_}_$i"}, 2)
+    } qw(amount due paid);
 
     $column_data{invnumber} = qq|<td>$form->{"invnumber_$i"}</td>
       <input type=hidden name="invnumber_$i" value="$form->{"invnumber_$i"}">
       <input type=hidden name="id_$i" value=$form->{"id_$i"}>|;
     $column_data{transdate} = qq|<td width=15%>$form->{"transdate_$i"}</td>
       <input type=hidden name="transdate_$i" value=$form->{"transdate_$i"}>|;
-    $column_data{amount} = qq|<td align=right width=15%>$form->{"amount_$i"}</td>
+    $column_data{amount} =
+      qq|<td align=right width=15%>$form->{"amount_$i"}</td>
       <input type=hidden name="amount_$i" value=$form->{"amount_$i"}>|;
     $column_data{due} = qq|<td align=right width=15%>$form->{"due_$i"}</td>
       <input type=hidden name="due_$i" value=$form->{"due_$i"}>|;
 
-    $column_data{paid} = qq|<td align=right width=15%><input name="paid_$i" size=10 value=$form->{"paid_$i"}></td>|;
+    $column_data{paid} =
+      qq|<td align=right width=15%><input name="paid_$i" size=10 value=$form->{"paid_$i"}></td>|;
 
     $form->{"checked_$i"} = ($form->{"checked_$i"}) ? "checked" : "";
-    $column_data{checked} = qq|<td align=center width=10%><input name="checked_$i" type=checkbox style=checkbox $form->{"checked_$i"}></td>|;
+    $column_data{checked} =
+      qq|<td align=center width=10%><input name="checked_$i" type=checkbox style=checkbox $form->{"checked_$i"}></td>|;
 
-    $j++; $j %= 2;
+    $j++;
+    $j %= 2;
     print qq|
        <tr class=listrow$j>
 |;
@@ -381,9 +425,18 @@ sub list_invoices {
 
   map { $column_data{$_} = "<td>&nbsp;</td>" } @column_index;
 
-  $column_data{amount} = qq|<th class=listtotal align=right>|.$form->format_amount(\%myconfig, $totalamount, 2, "&nbsp;").qq|</th>|;
-  $column_data{due} = qq|<th class=listtotal align=right>|.$form->format_amount(\%myconfig, $totaldue, 2, "&nbsp;").qq|</th>|;
-  $column_data{paid} = qq|<th class=listtotal align=right>|.$form->format_amount(\%myconfig, $totalpaid, 2, "&nbsp;").qq|</th>|;
+  $column_data{amount} =
+      qq|<th class=listtotal align=right>|
+    . $form->format_amount(\%myconfig, $totalamount, 2, "&nbsp;")
+    . qq|</th>|;
+  $column_data{due} =
+      qq|<th class=listtotal align=right>|
+    . $form->format_amount(\%myconfig, $totaldue, 2, "&nbsp;")
+    . qq|</th>|;
+  $column_data{paid} =
+      qq|<th class=listtotal align=right>|
+    . $form->format_amount(\%myconfig, $totalpaid, 2, "&nbsp;")
+    . qq|</th>|;
 
   print qq|
         <tr class=listtotal>
@@ -399,30 +452,33 @@ sub list_invoices {
   $lxdebug->leave_sub();
 }
 
-
 sub form_footer {
   $lxdebug->enter_sub();
 
+  $auth->assert('cash');
+
+  my ($media, $format, $latex_templates);
+
+  $form->{DF}{ $form->{format} } = "selected";
+  $form->{OP}{ $form->{media} }  = "selected";
 
-  $form->{DF}{$form->{format}} = "selected";
-  $form->{OP}{$form->{media}} = "selected";
-  
   $media = qq|
-          <option value=screen $form->{OP}{screen}>|.$locale->text('Screen');
+          <option value=screen $form->{OP}{screen}>| . $locale->text('Screen');
 
-  if ($myconfig{printer} && $latex) {
+  if ($myconfig{printer} && $latex_templates) {
     $media .= qq|
-          <option value=printer $form->{OP}{printer}>|.$locale->text('Printer');
+          <option value=printer $form->{OP}{printer}>|
+      . $locale->text('Printer');
   }
-  if ($latex) {
+  if ($latex_templates) {
     $media .= qq|
-          <option value=queue $form->{OP}{queue}>|.$locale->text('Queue');
+          <option value=queue $form->{OP}{queue}>| . $locale->text('Queue');
     $format .= qq|
-            <option value=postscript $form->{DF}{postscript}>|.$locale->text('Postscript').qq|
-           <option value=pdf $form->{DF}{pdf}>|.$locale->text('PDF');
+            <option value=postscript $form->{DF}{postscript}>|
+      . $locale->text('Postscript') . qq|
+           <option value=pdf $form->{DF}{pdf}>| . $locale->text('PDF');
   }
-  
-             
+
   print qq|
   <tr>
     <td><hr size=3 noshade></td>
@@ -430,30 +486,22 @@ sub form_footer {
 </table>
 <input type=hidden name=rowcount value=$form->{rowcount}>
 
-<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('Update').qq|">
-<input class=submit type=submit name=action value="|.$locale->text('Post').qq|">|;
+<input class=submit type=submit name=action value="|
+    . $locale->text('Update') . qq|">
+<input class=submit type=submit name=action value="|
+    . $locale->text('Post') . qq|">|;
 
-  if ($latex) {
+  if ($latex_templates) {
     print qq|
-<input class=submit type=submit name=action value="|.$locale->text('Print').qq|">|;
+<input class=submit type=submit name=action value="|
+      . $locale->text('Print') . qq|">|;
   }
 
   print qq|
 <select name=format>$format</select>
 <select name=media>$media</select>
-|;
 
-  if ($form->{menubar}) {
-    require "$form->{path}/menu.pl";
-    &menubar;
-  }
-
-  print qq|
   </form>
 
 </body>
@@ -463,13 +511,15 @@ sub form_footer {
   $lxdebug->leave_sub();
 }
 
-
 sub update {
   $lxdebug->enter_sub();
 
+  $auth->assert('cash');
+
   my ($new_name_selected) = @_;
-  
+
+  my ($buysell, $newvc, $updated, $exchangerate, $amount);
+
   if ($form->{vc} eq 'customer') {
     $buysell = "buy";
   } else {
@@ -480,26 +530,33 @@ sub update {
   if ($form->{all_vc} ne $form->{oldall_vc}) {
 
     $form->{openinvoices} = ($form->{all_vc}) ? 0 : 1;
-    
+
     $form->{"select$form->{vc}"} = "";
 
     if ($form->{all_vc}) {
       $form->all_vc(\%myconfig, $form->{vc}, $form->{ARAP});
-      
+
       if ($form->{"all_$form->{vc}"}) {
-       map { $form->{"select$form->{vc}"} .= "<option>$_->{name}--$_->{id}\n" } @{ $form->{"all_$form->{vc}"} };
+        map {
+          $form->{"select$form->{vc}"} .=
+            "<option>$_->{name}--$_->{id}\n"
+        } @{ $form->{"all_$form->{vc}"} };
       }
     } else {
       CP->get_openvc(\%myconfig, \%$form);
-      
+
       if ($form->{"all_$form->{vc}"}) {
-       $newvc = qq|$form->{"all_$form->{vc}"}[0]->{name}--$form->{"all_$form->{vc}"}[0]->{id}|;
-       map { $form->{"select$form->{vc}"} .= "<option>$_->{name}--$_->{id}\n" } @{ $form->{"all_$form->{vc}"} };
+        $newvc =
+          qq|$form->{"all_$form->{vc}"}[0]->{name}--$form->{"all_$form->{vc}"}[0]->{id}|;
+        map {
+          $form->{"select$form->{vc}"} .=
+            "<option>$_->{name}--$_->{id}\n"
+        } @{ $form->{"all_$form->{vc}"} };
       }
-      
+
       # if the name is not the same
       if ($form->{"select$form->{vc}"} !~ /$form->{$form->{vc}}/) {
-       $form->{$form->{vc}} = $newvc;
+        $form->{ $form->{vc} } = $newvc;
       }
     }
   }
@@ -509,8 +566,8 @@ sub update {
 
   if ($new_name_selected || $updated) {
     CP->get_openinvoices(\%myconfig, \%$form);
-    ($newvc) = split /--/, $form->{$form->{vc}};
-    $form->{"old$form->{vc}"} = qq|$newvc--$form->{"$form->{vc}_id"}|;;
+    ($newvc) = split /--/, $form->{ $form->{vc} };
+    $form->{"old$form->{vc}"} = qq|$newvc--$form->{"$form->{vc}_id"}|;
     $updated = 1;
   }
 
@@ -521,9 +578,9 @@ sub update {
       $updated = 1;
     }
   }
-  
-  
-  $form->{exchangerate} = $exchangerate if ($form->{forex} = ($exchangerate = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{datepaid}, $buysell)));
+
+  $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{datepaid}, $buysell);
+  $form->{exchangerate} = $form->{forex} if $form->{forex};
 
   $amount = $form->{amount} = $form->parse_amount(\%myconfig, $form->{amount});
 
@@ -531,102 +588,130 @@ sub update {
     $form->{rowcount} = 0;
 
     $form->{queued} = "";
-    
-    $i = 0;
-    foreach $ref (@{ $form->{PR} }) {
+
+    my $i = 0;
+    foreach my $ref (@{ $form->{PR} }) {
       $i++;
-      $form->{"id_$i"} = $ref->{id};
+      $form->{"id_$i"}        = $ref->{id};
       $form->{"invnumber_$i"} = $ref->{invnumber};
       $form->{"transdate_$i"} = $ref->{transdate};
       $ref->{exchangerate} = 1 unless $ref->{exchangerate};
       $form->{"amount_$i"} = $ref->{amount} / $ref->{exchangerate};
-      $form->{"due_$i"} = ($ref->{amount} - $ref->{paid}) / $ref->{exchangerate};
+      $form->{"due_$i"}    =
+        ($ref->{amount} - $ref->{paid}) / $ref->{exchangerate};
       $form->{"checked_$i"} = "";
-      $form->{"paid_$i"} = "";
+      $form->{"paid_$i"}    = "";
 
       # need to format
-      map { $form->{"${_}_$i"} = $form->format_amount(\%myconfig, $form->{"${_}_$i"}, 2) } qw(amount due);
+      map {
+        $form->{"${_}_$i"} =
+          $form->format_amount(\%myconfig, $form->{"${_}_$i"}, 2)
+      } qw(amount due);
 
     }
     $form->{rowcount} = $i;
   }
 
   # recalculate
-  $amount = $form->{amount};
-  for $i (1 .. $form->{rowcount}) {
 
-    map { $form->{"${_}_$i"} = $form->parse_amount(\%myconfig, $form->{"${_}_$i"}) } qw(amount due paid);
+  # Modified from $amount = $form->{amount} by J.Zach to update amount to total
+  # payment amount in Zahlungsausgang
+  $amount = 0;
+  for my $i (1 .. $form->{rowcount}) {
+
+    map {
+      $form->{"${_}_$i"} =
+        $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
+    } qw(amount due paid);
 
     if ($form->{"checked_$i"}) {
+
       # calculate paid_$i
       if (!$form->{"paid_$i"}) {
-       $form->{"paid_$i"} = $form->{"due_$i"};
+        $form->{"paid_$i"} = $form->{"due_$i"};
       }
-      
-      $amount -= $form->{"paid_$i"};
+
+      # Modified by J.Zach, see abovev
+      $amount += $form->{"paid_$i"}; 
+
     } else {
       $form->{"paid_$i"} = "";
     }
 
-    map { $form->{"${_}_$i"} = $form->format_amount(\%myconfig, $form->{"${_}_$i"}, 2) } qw(amount due paid);
+    map {
+      $form->{"${_}_$i"} =
+        $form->format_amount(\%myconfig, $form->{"${_}_$i"}, 2)
+    } qw(amount due paid);
 
   }
 
+  # Line added by J.Zach, see above
+  $form->{amount}=$amount; 
+
   &form_header;
   &list_invoices;
   &form_footer;
-  
+
   $lxdebug->leave_sub();
 }
 
 sub post {
   $lxdebug->enter_sub();
 
+  $auth->assert('cash');
 
   &check_form;
-  
+
   if ($form->{currency} ne $form->{defaultcurrency}) {
-    $form->error($locale->text('Exchangerate missing!')) unless $form->{exchangerate};
+    $form->error($locale->text('Exchangerate missing!'))
+      unless $form->{exchangerate};
   }
 
-  $msg1 = "$form->{origtitle} posted!";
-  $msg2 = "Cannot post $form->{origtitle}!";
+  my $msg1 = "$form->{origtitle} posted!";
+  my $msg2 = "Cannot post $form->{origtitle}!";
 
-# $locale->text('Payment posted!')
-# $locale->text('Receipt posted!')
-# $locale->text('Cannot post Payment!')
-# $locale->text('Cannot post Receipt!')
+  # $locale->text('Payment posted!')
+  # $locale->text('Receipt posted!')
+  # $locale->text('Cannot post Payment!')
+  # $locale->text('Cannot post Receipt!')
 
-  $form->redirect($locale->text($msg1)) if (CP->process_payment(\%myconfig, \%$form));
+  $form->redirect($locale->text($msg1))
+    if (CP->process_payment(\%myconfig, \%$form));
   $form->error($locale->text($msg2));
 
   $lxdebug->leave_sub();
 }
 
-
 sub print {
   $lxdebug->enter_sub();
 
+  $auth->assert('cash');
+
+  my ($whole, $check, %queued, $spool, $filename, $userspath);
+
   &check_form;
 
-  ($whole, $form->{decimal}) = split /\./, $form->{amount};
-  
+  ($whole, $form->{decimal}) = split(/\./, $form->{amount});
+
   $form->{amount} = $form->format_amount(\%myconfig, $form->{amount}, 2);
-  
-  $form->{decimal} .= "00";
+
+  #$form->{decimal} .= "00";
   $form->{decimal} = substr($form->{decimal}, 0, 2);
 
   $check = new CP $myconfig{countrycode};
   $check->init;
   $form->{text_amount} = $check->num2text($whole);
 
-  &{ "$form->{vc}_details" };
+  if ($form->{vc} eq 'customer') {
+    IS->customer_details(\%myconfig, $form);
+  } else {
+    IR->vendor_details(\%myconfig, $form);
+  }
 
   $form->{callback} = "";
-  
+
   $form->{templates} = "$myconfig{templates}";
-  $form->{IN} = "$form->{formname}.tex";
+  $form->{IN}        = "$form->{formname}.tex";
 
   if ($form->{format} eq 'postscript') {
     $form->{postscript} = 1;
@@ -635,13 +720,15 @@ sub print {
     $form->{pdf} = 1;
   }
 
+  delete $form->{OUT};
+
   if ($form->{media} eq 'printer') {
     $form->{OUT} = "| $myconfig{printer}";
   }
   if ($form->{media} eq 'queue') {
-    %queued = split / /, $form->{queued};
-    
-    if ($filename = $queued{$form->{formname}}) {
+    %queued = map { s|.*/|| } split / /, $form->{queued};
+
+    if ($filename = $queued{ $form->{formname} }) {
       unlink "$spool/$filename";
       $filename =~ s/\..*$//g;
     } else {
@@ -650,7 +737,7 @@ sub print {
     }
     $filename .= ($form->{postscript}) ? '.ps' : '.pdf';
     $form->{queued} = "$form->{formname} $filename";
-    $form->{OUT} = ">$spool/$filename";
+    $form->{OUT}    = ">$spool/$filename";
 
     $form->update_status(\%myconfig);
 
@@ -658,68 +745,65 @@ sub print {
 
   $form->{company} = $myconfig{company};
   $form->{address} = $myconfig{address};
-  @a = qw(name invnumber company address text_amount street zipcode city country memo);
-  $form->format_string(@a);
 
   $form->parse_template(\%myconfig, $userspath);
 
   if ($form->{media} ne 'screen') {
-    $form->{callback} = "$form->{script}?action=payment&vc=$form->{vc}&path=$form->{path}&login=$form->{login}&password=$form->{password}&all_vc=$form->{all_vc}";
+    $form->{callback} = "cp.pl?action=payment&vc=$form->{vc}&all_vc=$form->{all_vc}";
 
     $form->redirect if (CP->process_payment(\%myconfig, \%$form));
     $form->error($locale->text('Cannot post payment!'));
   }
-  
+
   $lxdebug->leave_sub();
 }
 
-
-sub customer_details { IS->customer_details(\%myconfig, \%$form) };
-sub vendor_details { IR->vendor_details(\%myconfig, \%$form) };
-  
-
 sub check_form {
   $lxdebug->enter_sub();
 
-  
+  $auth->assert('cash');
+
+  my ($closedto, $datepaid, $amount);
+
   &check_name($form->{vc});
 
   if ($form->{currency} ne $form->{oldcurrency}) {
     &update;
     exit;
   }
-  
+
+  $form->error($locale->text('Zero amount posting!')) if !$form->parse_amount(\%myconfig, $form->{amount});
   $form->error($locale->text('Date missing!')) unless $form->{datepaid};
 
   $closedto = $form->datetonum($form->{closedto}, \%myconfig);
   $datepaid = $form->datetonum($form->{datepaid}, \%myconfig);
-  
-  $form->error($locale->text('Cannot process payment for a closed period!')) if ($datepaid <= $closedto);
+
+  $form->error($locale->text('Cannot process payment for a closed period!'))
+    if ($form->date_closed($form->{"datepaid"}, \%myconfig));
 
   $amount = $form->parse_amount(\%myconfig, $form->{amount});
   $form->{amount} = $amount;
 
-  
-  for $i (1 .. $form->{rowcount}) {
-    if ($form->{"paid_$i"}) {
-      $amount -= $form->parse_amount($myconfig, $form->{"paid_$i"});
-      
-      push(@{ $form->{paid} }, $form->{"paid_$i"});
-      push(@{ $form->{due} }, $form->{"due_$i"});
+  for my $i (1 .. $form->{rowcount}) {
+    if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
+      $amount -= $form->parse_amount(\%myconfig, $form->{"paid_$i"});
+
+      push(@{ $form->{paid} },      $form->{"paid_$i"});
+      push(@{ $form->{due} },       $form->{"due_$i"});
       push(@{ $form->{invnumber} }, $form->{"invnumber_$i"});
-      push(@{ $form->{invdate} }, $form->{"transdate_$i"});
+      push(@{ $form->{invdate} },   $form->{"transdate_$i"});
     }
   }
 
   if ($form->round_amount($amount, 2) != 0) {
     push(@{ $form->{paid} }, $form->format_amount(\%myconfig, $amount, 2));
     push(@{ $form->{due} }, $form->format_amount(\%myconfig, 0, "0"));
-    push(@{ $form->{invnumber} }, ($form->{ARAP} eq 'AR') ? $locale->text('Deposit') : $locale->text('Prepayment'));
+    push(@{ $form->{invnumber} },
+         ($form->{ARAP} eq 'AR')
+         ? $locale->text('Deposit')
+         : $locale->text('Prepayment'));
     push(@{ $form->{invdate} }, $form->{datepaid});
   }
-   
+
   $lxdebug->leave_sub();
 }
-
-