1 #=====================================================================
 
   4 # Based on SQL-Ledger Version 2.1.9
 
   5 # Web http://www.lx-office.org
 
   7 #=====================================================================
 
   8 # SQL-Ledger Accounting
 
  11 #  Author: Dieter Simader
 
  12 #   Email: dsimader@sql-ledger.org
 
  13 #     Web: http://www.sql-ledger.org
 
  16 # This program is free software; you can redistribute it and/or modify
 
  17 # it under the terms of the GNU General Public License as published by
 
  18 # the Free Software Foundation; either version 2 of the License, or
 
  19 # (at your option) any later version.
 
  21 # This program is distributed in the hope that it will be useful,
 
  22 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 
  23 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
  24 # GNU General Public License for more details.
 
  25 # You should have received a copy of the GNU General Public License
 
  26 # along with this program; if not, write to the Free Software
 
  27 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
  28 #======================================================================
 
  30 # Accounts Receivables
 
  32 #======================================================================
 
  34 use POSIX qw(strftime);
 
  35 use List::Util qw(sum);
 
  41 use SL::ReportGenerator;
 
  47 our ($cgi, $form, $lxdebug, $locale, %myconfig);
 
  49 require "bin/mozilla/arap.pl";
 
  50 require "bin/mozilla/common.pl";
 
  51 require "bin/mozilla/drafts.pl";
 
  52 require "bin/mozilla/reportgenerator.pl";
 
  58 # this is for our long dates
 
  59 # $locale->text('January')
 
  60 # $locale->text('February')
 
  61 # $locale->text('March')
 
  62 # $locale->text('April')
 
  63 # $locale->text('May ')
 
  64 # $locale->text('June')
 
  65 # $locale->text('July')
 
  66 # $locale->text('August')
 
  67 # $locale->text('September')
 
  68 # $locale->text('October')
 
  69 # $locale->text('November')
 
  70 # $locale->text('December')
 
  72 # this is for our short month
 
  73 # $locale->text('Jan')
 
  74 # $locale->text('Feb')
 
  75 # $locale->text('Mar')
 
  76 # $locale->text('Apr')
 
  77 # $locale->text('May')
 
  78 # $locale->text('Jun')
 
  79 # $locale->text('Jul')
 
  80 # $locale->text('Aug')
 
  81 # $locale->text('Sep')
 
  82 # $locale->text('Oct')
 
  83 # $locale->text('Nov')
 
  84 # $locale->text('Dec')
 
  87   $lxdebug->enter_sub();
 
  89   $auth->assert('general_ledger');
 
  91   return $lxdebug->leave_sub() if (load_draft_maybe());
 
  94   if(!exists $form->{addition} && ($form->{id} ne "")) {
 
  95     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
 
  96         $form->{addition} = "ADDED";
 
  97         $form->save_history($form->dbconnect(\%myconfig));
 
 101   $form->{title}    = "Add";
 
 102   $form->{callback} = "ar.pl?action=add" unless $form->{callback};
 
 104   AR->get_transdate(\%myconfig, $form);
 
 105   $form->{initial_transdate} = $form->{transdate};
 
 107   $form->{transdate} = $form->{initial_transdate};
 
 109   $lxdebug->leave_sub();
 
 113   $lxdebug->enter_sub();
 
 115   $auth->assert('general_ledger');
 
 117   # show history button
 
 118   $form->{javascript} = qq|<script type="text/javascript" src="js/show_history.js"></script>|;
 
 119   #/show hhistory button
 
 120   $form->{javascript} .= qq|<script type="text/javascript" src="js/common.js"></script>|;
 
 121   $form->{title} = "Edit";
 
 126   $lxdebug->leave_sub();
 
 130   $lxdebug->enter_sub();
 
 132   $auth->assert('general_ledger');
 
 137   $lxdebug->leave_sub();
 
 141   $lxdebug->enter_sub();
 
 143   $auth->assert('general_ledger');
 
 145   my ($duedate, $taxincluded, @curr);
 
 147   $form->create_links("AR", \%myconfig, "customer");
 
 148   $duedate = $form->{duedate};
 
 150   $taxincluded = $form->{taxincluded};
 
 151   my $id = $form->{id};
 
 152   IS->get_customer(\%myconfig, \%$form);
 
 153   $form->{taxincluded} = $taxincluded;
 
 156   $form->{duedate}     = $duedate if $duedate;
 
 157   $form->{oldcustomer} = "$form->{customer}--$form->{customer_id}";
 
 158   $form->{rowcount}    = 1;
 
 161   $form->{notes} = $form->{intnotes} unless $form->{notes};
 
 164   @curr = split(/:/, $form->{currencies});
 
 166   $form->{defaultcurrency} = $curr[0];
 
 168   map { $form->{selectcurrency} .= "<option>$_\n" } @curr;
 
 171   if (@{ $form->{all_customer} }) {
 
 172     $form->{customer} = "$form->{customer}--$form->{customer_id}";
 
 173     map { $form->{selectcustomer} .= "<option>$_->{name}--$_->{id}\n" }
 
 174       (@{ $form->{all_customer} });
 
 178   if (@{ $form->{all_departments} }) {
 
 179     $form->{selectdepartment} = "<option>\n";
 
 180     $form->{department}       = "$form->{department}--$form->{department_id}";
 
 183       $form->{selectdepartment} .=
 
 184         "<option>$_->{description}--$_->{id}\n"
 
 185     } (@{ $form->{all_departments} });
 
 188   $form->{employee} = "$form->{employee}--$form->{employee_id}";
 
 191   if (@{ $form->{all_employees} }) {
 
 192     $form->{selectemployee} = "";
 
 193     map { $form->{selectemployee} .= "<option>$_->{name}--$_->{id}\n" }
 
 194       (@{ $form->{all_employees} });
 
 197   # build the popup menus
 
 198   $form->{taxincluded} = ($form->{id}) ? $form->{taxincluded} : "checked";
 
 200   AR->setup_form($form);
 
 203     ($form->datetonum($form->{transdate}, \%myconfig) <=
 
 204      $form->datetonum($form->{closedto}, \%myconfig));
 
 206   $lxdebug->leave_sub();
 
 210   $lxdebug->enter_sub();
 
 212   $auth->assert('general_ledger');
 
 214   my ($title, $readonly, $exchangerate, $rows);
 
 215   my ($taxincluded, $notes, $department, $customer, $employee, $amount, $project);
 
 216   my ($jsscript, $button1, $button2, $onload);
 
 217   my ($selectAR_amount, $selectAR_paid, $korrektur_checked, $ARselected, $tax);
 
 218   my (@column_index, %column_data);
 
 221   $title = $form->{title};
 
 222   $form->{title} = $locale->text("$title Accounts Receivables Transaction");
 
 224   $form->{taxincluded} = ($form->{taxincluded}) ? "checked" : "";
 
 226   # $locale->text('Add Accounts Receivables Transaction')
 
 227   # $locale->text('Edit Accounts Receivables Transaction')
 
 228   $form->{javascript} = qq|<script type="text/javascript">
 
 230   function setTaxkey(accno, row) {
 
 231     var taxkey = accno.options[accno.selectedIndex].value;
 
 232     var reg = /--([0-9]*)/;
 
 233     var found = reg.exec(taxkey);
 
 234     var index = found[1];
 
 235     index = parseInt(index);
 
 236     var tax = 'taxchart_' + row;
 
 237     for (var i = 0; i < document.getElementById(tax).options.length; ++i) {
 
 238       var reg2 = new RegExp("^"+ index, "");
 
 239       if (reg2.exec(document.getElementById(tax).options[i].value)) {
 
 240         document.getElementById(tax).options[i].selected = true;
 
 247   # show history button js
 
 248   $form->{javascript} .= qq|<script type="text/javascript" src="js/show_history.js"></script>|;
 
 249   #/show history button js
 
 250   $form->{javascript} .= qq|<script type="text/javascript" src="js/common.js"></script>|;
 
 251   $readonly = ($form->{id}) ? "readonly" : "";
 
 254     ($form->current_date(\%myconfig) eq $form->{gldate}) ? 1 : 0;
 
 255   $readonly = ($form->{radier}) ? "" : $readonly;
 
 257   # set option selected
 
 258   foreach my $item (qw(customer currency department employee)) {
 
 259     $form->{"select$item"} =~ s/ selected//;
 
 260     $form->{"select$item"} =~
 
 261       s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
 
 264   $form->{exchangerate} = $exchangerate
 
 268                        $form->check_exchangerate(
 
 269                        \%myconfig, $form->{currency}, $form->{transdate}, 'buy'
 
 273   $form->{exchangerate} =
 
 274     $form->format_amount(\%myconfig, $form->{exchangerate});
 
 276   if ($form->{exchangerate} == 0) {
 
 277     $form->{exchangerate} = "";
 
 280   $form->{creditlimit} =
 
 281     $form->format_amount(\%myconfig, $form->{creditlimit}, 0, "0");
 
 282   $form->{creditremaining} =
 
 283     $form->format_amount(\%myconfig, $form->{creditremaining}, 0, "0");
 
 286 <input type=hidden name=forex value=$form->{forex}>
 
 288   if ($form->{currency} ne $form->{defaultcurrency}) {
 
 289     if ($form->{forex}) {
 
 291         <th align=right>| . $locale->text('Exchangerate') . qq|</th>
 
 292         <td><input type=hidden name=exchangerate value=$form->{exchangerate}>$form->{exchangerate}</td>
 
 296         <th align=right>| . $locale->text('Exchangerate') . qq|</th>
 
 297         <td><input name=exchangerate size=10 value=$form->{exchangerate}></td>
 
 304                 <td align=right><input name=taxincluded class=checkbox type=checkbox value=1 $form->{taxincluded}></td>
 
 305                 <th align=left nowrap>| . $locale->text('Tax Included') . qq|</th>
 
 309   if (($rows = $form->numtextrows($form->{notes}, 50)) < 2) {
 
 313     qq|<textarea name=notes rows=$rows cols=50 wrap=soft>$form->{notes}</textarea>|;
 
 317                 <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
 
 318                 <td colspan=3><select name=department>$form->{selectdepartment}</select>
 
 319                 <input type=hidden name=selectdepartment value="$form->{selectdepartment}">
 
 322 | if $form->{selectdepartment};
 
 324   my $n = ($form->{creditremaining} =~ /-/) ? "0" : "1";
 
 326   $customer = ($form->{selectcustomer}) 
 
 327     ? qq|<select name="customer" onchange="document.getElementById('update_button').click();">$form->{selectcustomer}</select>| 
 
 328     : qq|<input name=customer value="$form->{customer}" size=35>|;
 
 331                 <input type=hidden name=employee value="$form->{employee}">
 
 334   if ($form->{selectemployee}) {
 
 337                 <th align=right nowrap>| . $locale->text('Salesperson') . qq|</th>
 
 338                 <td  colspan=2><select name=employee>$form->{selectemployee}</select></td>
 
 339                 <input type=hidden name=selectemployee value="$form->{selectemployee}">
 
 344   my @old_project_ids = ();
 
 345   map({ push(@old_project_ids, $form->{"project_id_$_"})
 
 346           if ($form->{"project_id_$_"}); } (1..$form->{"rowcount"}));
 
 348   $form->get_lists("projects" => { "key" => "ALL_PROJECTS",
 
 350                                    "old_id" => \@old_project_ids },
 
 351                    "charts" => { "key" => "ALL_CHARTS",
 
 352                                  "transdate" => $form->{transdate} },
 
 353                    "taxcharts" => "ALL_TAXCHARTS");
 
 355   map({ $_->{link_split} = [ split(/:/, $_->{link}) ]; }
 
 356       @{ $form->{ALL_CHARTS} });
 
 358   my %project_labels = ();
 
 359   my @project_values = ("");
 
 360   foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
 
 361     push(@project_values, $item->{"id"});
 
 362     $project_labels{$item->{"id"}} = $item->{"projectnumber"};
 
 365   my (%AR_amount_labels, @AR_amount_values);
 
 366   my (%AR_labels, @AR_values);
 
 367   my (%AR_paid_labels, @AR_paid_values);
 
 371   foreach my $item (@{ $form->{ALL_CHARTS} }) {
 
 372     if (grep({ $_ eq "AR_amount" } @{ $item->{link_split} })) {
 
 373       $taxchart_init = $item->{tax_id} if ($taxchart_init eq "");
 
 374       my $key = "$item->{accno}--$item->{tax_id}";
 
 375       push(@AR_amount_values, $key);
 
 376       $AR_amount_labels{$key} =
 
 377         "$item->{accno}--$item->{description}";
 
 379     } elsif (grep({ $_ eq "AR" } @{ $item->{link_split} })) {
 
 380       push(@AR_values, $item->{accno});
 
 381       $AR_labels{$item->{accno}} = "$item->{accno}--$item->{description}";
 
 383     } elsif (grep({ $_ eq "AR_paid" } @{ $item->{link_split} })) {
 
 384       push(@AR_paid_values, $item->{accno});
 
 385       $AR_paid_labels{$item->{accno}} =
 
 386         "$item->{accno}--$item->{description}";
 
 389     $charts{$item->{accno}} = $item;
 
 392   my %taxchart_labels = ();
 
 393   my @taxchart_values = ();
 
 395   foreach my $item (@{ $form->{ALL_TAXCHARTS} }) {
 
 396     my $key = "$item->{id}--$item->{rate}";
 
 397     $taxchart_init = $key if ($taxchart_init eq $item->{id});
 
 398     push(@taxchart_values, $key);
 
 399     $taxchart_labels{$key} =
 
 400       "$item->{taxdescription} " . ($item->{rate} * 100) . ' %';
 
 401     $taxcharts{$item->{id}} = $item;
 
 404   $form->{fokus} = "arledger.customer";
 
 406   # use JavaScript Calendar or not
 
 407   $form->{jsscript} = 1;
 
 409   if ($form->{jsscript}) {
 
 411     # with JavaScript Calendar
 
 413        <td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value="$form->{transdate}" onBlur=\"check_right_date_format(this)\"></td>
 
 414        <td><input type=button name=transdate id="trigger1" value=|
 
 415       . $locale->text('button') . qq|></td>
 
 418        <td><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value="$form->{duedate}" onBlur=\"check_right_date_format(this)\"></td>
 
 419        <td><input type=button name=duedate id="trigger2" value=|
 
 420       . $locale->text('button') . qq|></td></td>
 
 425       Form->write_trigger(\%myconfig, "2", "transdate", "BL", "trigger1",
 
 426                           "duedate", "BL", "trigger2");
 
 429     # without JavaScript Calendar
 
 431       qq|<td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value="$form->{transdate}" onBlur=\"check_right_date_format(this)\"></td>|;
 
 433       qq|<td><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value="$form->{duedate}" onBlur=\"check_right_date_format(this)\"></td>|;
 
 436   my $follow_up_vc         =  $form->{customer};
 
 437   $follow_up_vc            =~ s/--.*?//;
 
 438   my $follow_up_trans_info =  "$form->{invnumber} ($follow_up_vc)";
 
 440   $form->{javascript} .=
 
 441     qq|<script type="text/javascript" src="js/common.js"></script>| .
 
 442     qq|<script type="text/javascript" src="js/show_vc_details.js"></script>| .
 
 443     qq|<script type="text/javascript" src="js/follow_up.js"></script>|;
 
 446   $onload = qq|focus()|;
 
 447   $onload .= qq|;setupDateFormat('|. $myconfig{dateformat} .qq|', '|. $locale->text("Falsches Datumsformat!") .qq|')|;
 
 448   $onload .= qq|;setupPoints('|. $myconfig{numberformat} .qq|', '|. $locale->text("wrongformat") .qq|')|;
 
 450 <body onLoad="$onload">
 
 452 <form method=post name="arledger" action=$form->{script}>
 
 454 <input type=hidden name=id value=$form->{id}>
 
 455 <input type=hidden name=sort value=$form->{sort}>
 
 456 <input type=hidden name=closedto value=$form->{closedto}>
 
 457 <input type=hidden name=locked value=$form->{locked}>
 
 458 <input type=hidden name=title value="$title">
 
 459 <input type="hidden" name="follow_up_trans_id_1" value="| . H($form->{id}) . qq|">
 
 460 <input type="hidden" name="follow_up_trans_type_1" value="ar_transaction">
 
 461 <input type="hidden" name="follow_up_trans_info_1" value="| . H($follow_up_trans_info) . qq|">
 
 462 <input type="hidden" name="follow_up_rowcount" value="1">
 
 464 | . ($form->{saved_message} ? qq|<p>$form->{saved_message}</p>| : "") . qq|
 
 468     <th class=listtop>$form->{title}</th>
 
 478                 <th align="right" nowrap>| . $locale->text('Customer') . qq|</th>
 
 479                 <td colspan=3>$customer <input type="button" value="?" onclick="show_vc_details('customer')"></td>
 
 480                 <input type=hidden name=selectcustomer value="$form->{selectcustomer}">
 
 481                 <input type=hidden name=oldcustomer value="$form->{oldcustomer}">
 
 482                 <input type=hidden name=customer_id value="$form->{customer_id}">
 
 483                 <input type=hidden name=terms value=$form->{terms}>
 
 490                       <th align=left nowrap>| . $locale->text('Credit Limit') . qq|</th>
 
 491                       <td>$form->{creditlimit}</td>
 
 492                       <th align=left nowrap>| . $locale->text('Remaining') . qq|</th>
 
 493                       <td class="plus$n">$form->{creditremaining}</td>
 
 494                       <input type=hidden name=creditlimit value=$form->{creditlimit}>
 
 495                       <input type=hidden name=creditremaining value=$form->{creditremaining}>
 
 501                 <th align=right>| . $locale->text('Currency') . qq|</th>
 
 502                 <td><select name=currency>$form->{selectcurrency}</select></td>
 
 503                 <input type=hidden name=selectcurrency value="$form->{selectcurrency}">
 
 504                 <input type=hidden name=defaultcurrency value=$form->{defaultcurrency}>
 
 505                 <input type=hidden name=fxgain_accno value=$form->{fxgain_accno}>
 
 506                 <input type=hidden name=fxloss_accno value=$form->{fxloss_accno}>
 
 517                 <th align=right nowrap>| . $locale->text('Invoice Number') . qq|</th>
 
 518                 <td><input name=invnumber size=11 value="$form->{invnumber}"></td>
 
 521                 <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
 
 522                 <td><input name=ordnumber size=11 value="$form->{ordnumber}"></td>
 
 525                 <th align=right nowrap>| . $locale->text('Invoice Date') . qq|</th>
 
 529                 <th align=right nowrap>| . $locale->text('Due Date') . qq|</th>
 
 540   <input type=hidden name=rowcount value=$form->{rowcount}>
 
 544            <tr class=listheading>
 
 545           <th class=listheading style="width:15%">|
 
 546     . $locale->text('Account') . qq|</th>
 
 547           <th class=listheading style="width:10%">|
 
 548     . $locale->text('Amount') . qq|</th>
 
 549           <th class=listheading style="width:10%">|
 
 550     . $locale->text('Tax') . qq|</th>
 
 551           <th class=listheading style="width:5%">|
 
 552     . $locale->text('Korrektur') . qq|</th>
 
 553           <th class=listheading style="width:10%">|
 
 554     . $locale->text('Taxkey') . qq|</th>
 
 555           <th class=listheading style="width:10%">|
 
 556     . $locale->text('Project') . qq|</th>
 
 560   $amount  = $locale->text('Amount');
 
 561   $project = $locale->text('Project');
 
 563   for my $i (1 .. $form->{rowcount}) {
 
 566     $form->{"amount_$i"} =
 
 567       $form->format_amount(\%myconfig, $form->{"amount_$i"}, 2);
 
 568     $form->{"tax_$i"} = $form->format_amount(\%myconfig, $form->{"tax_$i"}, 2);
 
 570     my $selected_accno_full;
 
 571     my ($accno_row) = split(/--/, $form->{"AR_amount_$i"});
 
 572     my $item = $charts{$accno_row};
 
 573     $selected_accno_full = "$item->{accno}--$item->{tax_id}";
 
 575     my $selected_taxchart = $form->{"taxchart_$i"};
 
 576     my ($selected_accno, $selected_tax_id) = split(/--/, $selected_accno_full);
 
 577     my ($previous_accno, $previous_tax_id) = split(/--/, $form->{"previous_AR_amount_$i"});
 
 579     if ($previous_accno &&
 
 580         ($previous_accno eq $selected_accno) &&
 
 581         ($previous_tax_id ne $selected_tax_id)) {
 
 582       my $item = $taxcharts{$selected_tax_id};
 
 583       $selected_taxchart = "$item->{id}--$item->{rate}";
 
 586     $selected_taxchart = $taxchart_init unless ($form->{"taxchart_$i"});
 
 589       NTI($cgi->popup_menu('-name' => "AR_amount_$i",
 
 590                            '-id' => "AR_amount_$i",
 
 591                            '-style' => 'width:400px',
 
 592                            '-onChange' => "setTaxkey(this, $i)",
 
 593                            '-values' => \@AR_amount_values,
 
 594                            '-labels' => \%AR_amount_labels,
 
 595                            '-default' => $selected_accno_full))
 
 596       . $cgi->hidden('-name' => "previous_AR_amount_$i",
 
 597                      '-default' => $selected_accno_full);
 
 600       NTI($cgi->popup_menu('-name' => "taxchart_$i",
 
 601                            '-id' => "taxchart_$i",
 
 602                            '-style' => 'width:200px',
 
 603                            '-values' => \@taxchart_values,
 
 604                            '-labels' => \%taxchart_labels,
 
 605                            '-default' => $selected_taxchart))
 
 608     $korrektur_checked = ($form->{"korrektur_$i"} ? 'checked' : '');
 
 611       NTI($cgi->popup_menu('-name' => "project_id_$i",
 
 612                            '-values' => \@project_values,
 
 613                            '-labels' => \%project_labels,
 
 614                            '-default' => $form->{"project_id_$i"} ));
 
 618           <td>$selectAR_amount</td>
 
 619           <td><input name="amount_$i" size=10 value=$form->{"amount_$i"}></td>
 
 620           <td><input name="tax_$i" size=10 value=$form->{"tax_$i"}></td>
 
 621           <td><input type="checkbox" name="korrektur_$i" value="1" $korrektur_checked></td>
 
 623           <td>$projectnumber</td>
 
 630   $form->{invtotal_unformatted} = $form->{invtotal};
 
 631   $form->{invtotal} = $form->format_amount(\%myconfig, $form->{invtotal}, 2);
 
 634     NTI($cgi->popup_menu('-name' => "ARselected", '-id' => "ARselected",
 
 635                          '-style' => 'width:400px',
 
 636                          '-values' => \@AR_values, '-labels' => \%AR_labels,
 
 637                          '-default' => $form->{ARselected}));
 
 646           <td>${ARselected}</td>
 
 647           <th align=left>$form->{invtotal}</th>
 
 649           <input type=hidden name=oldinvtotal value=$form->{oldinvtotal}>
 
 650           <input type=hidden name=oldtotalpaid value=$form->{oldtotalpaid}>
 
 652           <input type=hidden name=taxaccounts value="$form->{taxaccounts}">
 
 665           <th align=left width=1%>| . $locale->text('Notes') . qq|</th>
 
 666           <td align=left>$notes</td>
 
 674         <tr class=listheading>
 
 675           <th colspan=7 class=listheading>|
 
 676     . $locale->text('Incoming Payments') . qq|</th>
 
 680   if ($form->{currency} eq $form->{defaultcurrency}) {
 
 681     @column_index = qw(datepaid source memo paid AR_paid paid_project_id);
 
 683     @column_index = qw(datepaid source memo paid exchangerate AR_paid paid_project_id);
 
 686   $column_data{datepaid}     = "<th>" . $locale->text('Date') . "</th>";
 
 687   $column_data{paid}         = "<th>" . $locale->text('Amount') . "</th>";
 
 688   $column_data{exchangerate} = "<th>" . $locale->text('Exch') . "</th>";
 
 689   $column_data{AR_paid}      = "<th>" . $locale->text('Account') . "</th>";
 
 690   $column_data{source}       = "<th>" . $locale->text('Source') . "</th>";
 
 691   $column_data{memo}         = "<th>" . $locale->text('Memo') . "</th>"; 
 
 692   $column_data{paid_project_id} = "<th>" . $locale->text('Project Number') . "</th>"; 
 
 697   map { print "$column_data{$_}\n" } @column_index;
 
 705   $form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
 
 706   for my $i (1 .. $form->{paidaccounts}) {
 
 712       NTI($cgi->popup_menu('-name' => "AR_paid_$i",
 
 713                            '-id' => "AR_paid_$i",
 
 714                            '-values' => \@AR_paid_values,
 
 715                            '-labels' => \%AR_paid_labels,
 
 716                            '-default' => $form->{"AR_paid_$i"}));
 
 718     $totalpaid += $form->{"paid_$i"};
 
 721     if ($form->{"paid_$i"}) {
 
 723         $form->format_amount(\%myconfig, $form->{"paid_$i"}, 2);
 
 725     $form->{"exchangerate_$i"} =
 
 726       $form->format_amount(\%myconfig, $form->{"exchangerate_$i"});
 
 728     if ($form->{"exchangerate_$i"} == 0) {
 
 729       $form->{"exchangerate_$i"} = "";
 
 732     $exchangerate = qq| |;
 
 733     if ($form->{currency} ne $form->{defaultcurrency}) {
 
 734       if ($form->{"forex_$i"}) {
 
 736           qq|<input type=hidden name="exchangerate_$i" value=$form->{"exchangerate_$i"}>$form->{"exchangerate_$i"}|;
 
 739           qq|<input name="exchangerate_$i" size=10 value=$form->{"exchangerate_$i"}>|;
 
 744 <input type=hidden name="forex_$i" value=$form->{"forex_$i"}>
 
 748       qq|<td align=center><input name="paid_$i" size=11 value="$form->{"paid_$i"}" onBlur=\"check_right_number_format(this)\"></td>|;
 
 749     $column_data{AR_paid} =
 
 750       qq|<td align=center>${selectAR_paid}</td>|;
 
 751     $column_data{exchangerate} = qq|<td align=center>$exchangerate</td>|;
 
 752     $column_data{datepaid}     =
 
 753       qq|<td align=center><input name="datepaid_$i" id="datepaid_$i" size=11 value="$form->{"datepaid_$i"}" onBlur=\"check_right_date_format(this)\">
 
 754          <input type="button" name="datepaid_$i" id="trigger_datepaid_$i" value="?"></td>|;
 
 755     $column_data{source} =
 
 756       qq|<td align=center><input name="source_$i" size=11 value="$form->{"source_$i"}"></td>|;
 
 758       qq|<td align=center><input name="memo_$i" size=11 value="$form->{"memo_$i"}"></td>|;
 
 760     $column_data{paid_project_id} =
 
 762       . NTI($cgi->popup_menu('-name' => "paid_project_id_$i",
 
 763                              '-values' => \@project_values,
 
 764                              '-labels' => \%project_labels,
 
 765                              '-default' => $form->{"paid_project_id_$i"} ))
 
 768     map { print qq|$column_data{$_}\n| } @column_index;
 
 773     push(@triggers, "datepaid_$i", "BL", "trigger_datepaid_$i");
 
 776   my $paid_missing = $form->{invtotal_unformatted} - $totalpaid;
 
 782           <td align="center">| . $locale->text('Total') . qq|</td>
 
 783           <td align="center">| . H($form->format_amount(\%myconfig, $totalpaid, 2)) . qq|</td>
 
 788           <td align="center">| . $locale->text('Missing amount') . qq|</td>
 
 789           <td align="center">| . H($form->format_amount(\%myconfig, $paid_missing, 2)) . qq|</td>
 
 791 | . $form->write_trigger(\%myconfig, scalar(@triggers) / 3, @triggers) .
 
 793 <input type=hidden name=paidaccounts value=$form->{paidaccounts}>
 
 799     <td><hr size=3 noshade></td>
 
 804   $lxdebug->leave_sub();
 
 808   $lxdebug->enter_sub();
 
 810   $auth->assert('general_ledger');
 
 812   my ($transdate, $closedto);
 
 814   my $follow_ups_block;
 
 816     my $follow_ups = FU->follow_ups('trans_id' => $form->{id});
 
 818     if (@{ $follow_ups} ) {
 
 819       my $num_due       = sum map { $_->{due} * 1 } @{ $follow_ups };
 
 820       $follow_ups_block = qq|<p>| . $locale->text("There are #1 unfinished follow-ups of which #2 are due.", scalar @{ $follow_ups }, $num_due) . qq|</p>|;
 
 828 <input name=gldate type=hidden value="| . Q($form->{gldate}) . qq|">
 
 830 <input name=callback type=hidden value="$form->{callback}">
 
 832 . $cgi->hidden('-name' => 'draft_id', '-default' => [$form->{draft_id}])
 
 833 . $cgi->hidden('-name' => 'draft_description', '-default' => [$form->{draft_description}])
 
 839   if (!$form->{id} && $form->{draft_id}) {
 
 840     print(NTI($cgi->checkbox('-name' => 'remove_draft', '-id' => 'remove_draft',
 
 841                              '-value' => 1, '-checked' => $form->{remove_draft},
 
 843           qq| <label for="remove_draft">| .
 
 844           $locale->text("Remove draft when posting") .
 
 848   $transdate = $form->datetonum($form->{transdate}, \%myconfig);
 
 849   $closedto  = $form->datetonum($form->{closedto},  \%myconfig);
 
 851   print qq|<input class="submit" type="submit" name="action" id="update_button" value="| . $locale->text('Update') . qq|">\n|;
 
 853   # ToDO: - insert a global check for stornos, so that a storno is only possible a limited time after saving it
 
 854   print qq| <input class=submit type=submit name=action value="| . $locale->text('Storno') . qq|"> |
 
 855     if ($form->{id} && !IS->has_storno(\%myconfig, $form, 'ar') && !IS->is_storno(\%myconfig, $form, 'ar'));
 
 858     if ($form->{radier}) {
 
 860         <input class=submit type=submit name=action value="| . $locale->text('Post') .            qq|">
 
 861         <input class=submit type=submit name=action value="| . $locale->text('Delete') .          qq|"> |;
 
 863     if ($transdate > $closedto) {
 
 865         <input class=submit type=submit name=action value="| . $locale->text('Use As Template') . qq|"> |;
 
 868         <input class=submit type=submit name=action value="| . $locale->text('Post Payment') .    qq|">
 
 869         <input type="button" class="submit" onclick="follow_up_window()" value="|
 
 870       . $locale->text('Follow-Up')
 
 874     if ($transdate > $closedto) {
 
 875       print qq| <input class=submit type=submit name=action value="| . $locale->text('Post') .     qq|"> | .
 
 876         NTI($cgi->submit('-name' => 'action', '-value' => $locale->text('Save draft'), '-class' => 'submit'));
 
 880   if ($form->{menubar}) {
 
 881     require "bin/mozilla/menu.pl";
 
 884   # button for saving history
 
 885   if($form->{id} ne "") {
 
 886     print qq| <input type=button class=submit onclick=set_history_window($form->{id}); name=history id=history value=| . $locale->text('history') . qq|> |;
 
 888   # /button for saving history
 
 889   # mark_as_paid button 
 
 890   if($form->{id} ne "") {  
 
 891     print qq|<input type="submit" class="submit" name="action" value="| 
 
 892           . $locale->text('mark as paid') . qq|">|;
 
 894   # /mark_as_paid button
 
 903   $lxdebug->leave_sub();
 
 907   $lxdebug->enter_sub();
 
 909   $auth->assert('general_ledger');
 
 911   &mark_as_paid_common(\%myconfig,"ar");  
 
 913   $lxdebug->leave_sub();
 
 917   $lxdebug->enter_sub();
 
 919   $auth->assert('general_ledger');
 
 923   my ($totaltax, $exchangerate, $totalpaid);
 
 925   $form->{invtotal} = 0;
 
 927   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 928     qw(exchangerate creditlimit creditremaining);
 
 930   my @flds  = qw(amount AR_amount projectnumber oldprojectnumber project_id);
 
 934   for my $i (1 .. $form->{rowcount}) {
 
 935     $form->{"amount_$i"} = $form->parse_amount(\%myconfig, $form->{"amount_$i"});
 
 936     $form->{"tax_$i"} = $form->parse_amount(\%myconfig, $form->{"tax_$i"});
 
 937     if ($form->{"amount_$i"}) {
 
 940       if (!$form->{"korrektur_$i"}) {
 
 941         my ($taxkey, $rate) = split(/--/, $form->{"taxchart_$i"});
 
 943           if ($form->{taxincluded}) {
 
 944             $form->{"tax_$i"} = $form->{"amount_$i"} / ($rate + 1) * $rate;
 
 946             $form->{"tax_$i"} = $form->{"amount_$i"} * $rate;
 
 949           $form->{"tax_$i"} = 0;
 
 952       $form->{"tax_$i"} = $form->round_amount($form->{"tax_$i"}, 2);
 
 954       $totaltax += $form->{"tax_$i"};
 
 955       map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
 960   $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
 
 961   $form->{rowcount} = $count + 1;
 
 962   map { $form->{invtotal} += $form->{"amount_$_"} } (1 .. $form->{rowcount});
 
 964   $form->{exchangerate} = $exchangerate
 
 968                        $form->check_exchangerate(
 
 969                        \%myconfig, $form->{currency}, $form->{transdate}, 'buy'
 
 972   $form->{invdate} = $form->{transdate};
 
 973   my $save_AR = $form->{AR};
 
 974   check_name("customer");
 
 975   $form->{AR} = $save_AR;
 
 978     ($form->{taxincluded}) ? $form->{invtotal} : $form->{invtotal} + $totaltax;
 
 980   for my $i (1 .. $form->{paidaccounts}) {
 
 981     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
 
 984           $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
 
 985       } qw(paid exchangerate);
 
 987       $totalpaid += $form->{"paid_$i"};
 
 989       $form->{"exchangerate_$i"} = $exchangerate
 
 991             $form->{"forex_$i"} = (
 
 993                    $form->check_exchangerate(
 
 994                    \%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy'
 
 999   $form->{creditremaining} -=
 
1000     ($form->{invtotal} - $totalpaid + $form->{oldtotalpaid} -
 
1001      $form->{oldinvtotal});
 
1002   $form->{oldinvtotal}  = $form->{invtotal};
 
1003   $form->{oldtotalpaid} = $totalpaid;
 
1007   $lxdebug->leave_sub();
 
1011 # ToDO: fix $closedto and $invdate
 
1014   $lxdebug->enter_sub();
 
1016   $auth->assert('general_ledger');
 
1018   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
 
1020   for my $i (1 .. $form->{paidaccounts}) {
 
1022     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
 
1023       my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
 
1025       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
 
1027 #      $form->error($locale->text('Cannot post payment for a closed period!')) if ($datepaid <= $closedto);
 
1029       if ($form->{currency} ne $form->{defaultcurrency}) {
 
1030 #        $form->{"exchangerate_$i"} = $form->{exchangerate} if ($invdate == $datepaid);
 
1031         $form->isblank("exchangerate_$i", $locale->text('Exchangerate for payment missing!'));
 
1036   ($form->{AR})      = split /--/, $form->{AR};
 
1037   ($form->{AR_paid}) = split /--/, $form->{AR_paid};
 
1038   $form->redirect($locale->text('Payment posted!')) if (AR->post_payment(\%myconfig, \%$form));
 
1039   $form->error($locale->text('Cannot post payment!'));
 
1041   $lxdebug->leave_sub();
 
1046   $auth->assert('general_ledger');
 
1053   $lxdebug->enter_sub();
 
1055   $auth->assert('general_ledger');
 
1061   # check if there is an invoice number, invoice and due date
 
1062   $form->isblank("transdate", $locale->text('Invoice Date missing!'));
 
1063   $form->isblank("duedate",   $locale->text('Due Date missing!'));
 
1064   $form->isblank("customer",  $locale->text('Customer missing!'));
 
1066   my $closedto  = $form->datetonum($form->{closedto},  \%myconfig);
 
1067   my $transdate = $form->datetonum($form->{transdate}, \%myconfig);
 
1068   $form->error($locale->text('Cannot post transaction for a closed period!')) if ($transdate <= $closedto);
 
1070   $form->error($locale->text('Zero amount posting!')) 
 
1071     unless grep $_*1, map $form->parse_amount(\%myconfig, $form->{"amount_$_"}), 1..$form->{rowcount};
 
1073   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
 
1074     if ($form->{currency} ne $form->{defaultcurrency});
 
1076   delete($form->{AR});
 
1078   for my $i (1 .. $form->{paidaccounts}) {
 
1079     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
 
1080       $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
 
1082       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
 
1084       $form->error($locale->text('Cannot post payment for a closed period!'))
 
1085         if ($datepaid <= $closedto);
 
1087       if ($form->{currency} ne $form->{defaultcurrency}) {
 
1088         $form->{"exchangerate_$i"} = $form->{exchangerate} if ($transdate == $datepaid);
 
1089         $form->isblank("exchangerate_$i", $locale->text('Exchangerate for payment missing!'));
 
1094   # if oldcustomer ne customer redo form
 
1095   my ($customer) = split /--/, $form->{customer};
 
1096   if ($form->{oldcustomer} ne "$customer--$form->{customer_id}") {
 
1101   $form->{AR}{receivables} = $form->{ARselected};
 
1102   $form->{storno}          = 0;
 
1104   $lxdebug->message(0, $form->{amount});
 
1105   $form->{id} = 0 if $form->{postasnew};
 
1106   $form->error($locale->text('Cannot post transaction!')) unless AR->post_transaction(\%myconfig, \%$form);
 
1108   # saving the history
 
1109   if(!exists $form->{addition} && $form->{id} ne "") {
 
1110     $form->{snumbers} = "invnumber_$form->{invnumber}";
 
1111     $form->{addition} = "POSTED";
 
1112     $form->save_history($form->dbconnect(\%myconfig));
 
1114   # /saving the history 
 
1115   remove_draft() if $form->{remove_draft};
 
1117   $form->redirect($locale->text('Transaction posted!')) unless $inline;
 
1119   $lxdebug->leave_sub();
 
1123   $lxdebug->enter_sub();
 
1125   $auth->assert('general_ledger');
 
1127   $form->{postasnew} = 1;
 
1128   # saving the history
 
1129   if(!exists $form->{addition} && $form->{id} ne "") {
 
1130     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
 
1131         $form->{addition} = "POSTED AS NEW";
 
1132         $form->save_history($form->dbconnect(\%myconfig));
 
1134   # /saving the history 
 
1137   $lxdebug->leave_sub();
 
1140 sub use_as_template {
 
1141   $lxdebug->enter_sub();
 
1143   $auth->assert('general_ledger');
 
1145   map { delete $form->{$_} } qw(printed emailed queued invnumber invdate deliverydate id datepaid_1 source_1 memo_1 paid_1 exchangerate_1 AP_paid_1 storno);
 
1146   $form->{paidaccounts} = 1;
 
1147   $form->{rowcount}--;
 
1148   $form->{invdate} = $form->current_date(\%myconfig);
 
1151   $lxdebug->leave_sub();
 
1155   $lxdebug->enter_sub();
 
1157   $auth->assert('general_ledger');
 
1159   $form->{title} = $locale->text('Confirm!');
 
1163   delete $form->{header};
 
1168 <form method=post action=$form->{script}>
 
1171   foreach my $key (keys %$form) {
 
1172     next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
 
1173     $form->{$key} =~ s/\"/"/g;
 
1174     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
 
1178 <h2 class=confirm>$form->{title}</h2>
 
1181     . $locale->text('Are you sure you want to delete Transaction')
 
1182     . qq| $form->{invnumber}</h4>
 
1184 <input name=action class=submit type=submit value="|
 
1185     . $locale->text('Yes') . qq|">
 
1192   $lxdebug->leave_sub();
 
1196   $lxdebug->enter_sub();
 
1198   $auth->assert('general_ledger');
 
1200   if (AR->delete_transaction(\%myconfig, \%$form)) {
 
1201     # saving the history
 
1202     if(!exists $form->{addition}) {
 
1203       $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
 
1204           $form->{addition} = "DELETED";
 
1205           $form->save_history($form->dbconnect(\%myconfig));
 
1207     # /saving the history 
 
1208     $form->redirect($locale->text('Transaction deleted!'));
 
1210   $form->error($locale->text('Cannot delete transaction!'));
 
1212   $lxdebug->leave_sub();
 
1216   $lxdebug->enter_sub();
 
1218   $auth->assert('general_ledger | invoice_edit');
 
1220   my ($customer, $department);
 
1221   my ($jsscript, $button1, $button2, $onload);
 
1223   # setup customer selection
 
1224   $form->all_vc(\%myconfig, "customer", "AR");
 
1226   if (@{ $form->{all_customer} }) {
 
1227     map { $customer .= "<option>$_->{name}--$_->{id}\n" }
 
1228       @{ $form->{all_customer} };
 
1229     $customer = qq|<select name=customer><option>\n$customer</select>|;
 
1231     $customer = qq|<input name=customer size=35>|;
 
1235   if (@{ $form->{all_departments} }) {
 
1236     $form->{selectdepartment} = "<option>\n";
 
1239       $form->{selectdepartment} .=
 
1240         "<option>$_->{description}--$_->{id}\n"
 
1241     } (@{ $form->{all_departments} });
 
1246           <th align=right nowrap>| . $locale->text('Department') . qq|</th>
 
1247           <td colspan=3><select name=department>$form->{selectdepartment}</select></td>
 
1249 | if $form->{selectdepartment};
 
1251   $form->{title} = $locale->text('AR Transactions');
 
1253   $form->{javascript} .= qq|<script type="text/javascript" src="js/common.js"></script>|;
 
1255   # use JavaScript Calendar or not
 
1256   $form->{jsscript} = 1;
 
1258   if ($form->{jsscript}) {
 
1260     # with JavaScript Calendar
 
1262        <td><input name=transdatefrom id=transdatefrom size=11 title="$myconfig{dateformat}" onBlur=\"check_right_date_format(this)\">
 
1263        <input type=button name=transdatefrom id="trigger1" value=|
 
1264       . $locale->text('button') . qq|></td>
 
1267        <td><input name=transdateto id=transdateto size=11 title="$myconfig{dateformat}" onBlur=\"check_right_date_format(this)\">
 
1268        <input type=button name=transdateto name=transdateto id="trigger2" value=|
 
1269       . $locale->text('button') . qq|></td>
 
1274       Form->write_trigger(\%myconfig, "2", "transdatefrom", "BR", "trigger1",
 
1275                           "transdateto", "BL", "trigger2");
 
1278     # without JavaScript Calendar
 
1280                               <td><input name=transdatefrom id=transdatefrom size=11 title="$myconfig{dateformat}" onBlur=\"check_right_date_format(this)\"></td>|;
 
1282                               <td><input name=transdateto id=transdateto size=11 title="$myconfig{dateformat}" onBlur=\"check_right_date_format(this)\"></td>|;
 
1285   $form->get_lists("projects" => { "key" => "ALL_PROJECTS",
 
1290   foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
 
1291     push(@values, $item->{"id"});
 
1292     $labels{$item->{"id"}} = $item->{"projectnumber"};
 
1295     NTI($cgi->popup_menu('-name' => 'project_id', '-values' => \@values,
 
1296                          '-labels' => \%labels));
 
1298   $form->{fokus} = "search.customer";
 
1300   $onload = qq|focus()|;
 
1301   $onload .= qq|;setupDateFormat('|. $myconfig{dateformat} .qq|', '|. $locale->text("Falsches Datumsformat!") .qq|')|;
 
1302   $onload .= qq|;setupPoints('|. $myconfig{numberformat} .qq|', '|. $locale->text("wrongformat") .qq|')|;
 
1304 <body onLoad="$onload">
 
1306 <form method=post name="search" action=$form->{script}>
 
1309   <tr><th class=listtop>$form->{title}</th></tr>
 
1310   <tr height="5"></tr>
 
1315           <th align=right>| . $locale->text('Customer') . qq|</th>
 
1316           <td colspan=3>$customer</td>
 
1320           <th align=right nowrap>| . $locale->text('Invoice Number') . qq|</th>
 
1321           <td colspan=3><input name=invnumber size=20></td>
 
1324           <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
 
1325           <td colspan=3><input name=ordnumber size=20></td>
 
1328          <th align=right nowrap>| . $locale->text('Transaction description') . qq|</th>
 
1329          <td colspan=3><input name=transaction_description size=40></td>
 
1332           <th align=right nowrap>| . $locale->text('Notes') . qq|</th>
 
1333           <td colspan=3><input name=notes size=40></td>
 
1336           <th align="right">| . $locale->text("Project Number") . qq|</th>
 
1337           <td colspan="3">$projectnumber</td>
 
1340           <th align=right nowrap>| . $locale->text('From') . qq|</th>
 
1342           <th align=right>| . $locale->text('Bis') . qq|</th>
 
1345         <input type=hidden name=sort value=transdate>
 
1353           <th align=right nowrap>| . $locale->text('Include in Report') . qq|</th>
 
1357                 <td align=right><input name=open class=checkbox type=checkbox value=Y checked></td>
 
1358                 <td nowrap>| . $locale->text('Open') . qq|</td>
 
1359                 <td align=right><input name=closed class=checkbox type=checkbox value=Y></td>
 
1360                 <td nowrap>| . $locale->text('Closed') . qq|</td>
 
1363                 <td align=right><input name="l_id" class=checkbox type=checkbox value=Y></td>
 
1364                 <td nowrap>| . $locale->text('ID') . qq|</td>
 
1365                 <td align=right><input name="l_invnumber" class=checkbox type=checkbox value=Y checked></td>
 
1366                 <td nowrap>| . $locale->text('Invoice Number') . qq|</td>
 
1367                 <td align=right><input name="l_ordnumber" class=checkbox type=checkbox value=Y></td>
 
1368                 <td nowrap>| . $locale->text('Order Number') . qq|</td>
 
1369                 <td align=right><input name="l_transdate" class=checkbox type=checkbox value=Y checked></td>
 
1370                 <td nowrap>| . $locale->text('Invoice Date') . qq|</td>
 
1373                 <td align=right><input name="l_name" class=checkbox type=checkbox value=Y checked></td>
 
1374                 <td nowrap>| . $locale->text('Customer') . qq|</td>
 
1375                 <td align=right><input name="l_netamount" class=checkbox type=checkbox value=Y></td>
 
1376                 <td nowrap>| . $locale->text('Amount') . qq|</td>
 
1377                 <td align=right><input name="l_tax" class=checkbox type=checkbox value=Y></td>
 
1378                 <td nowrap>| . $locale->text('Tax') . qq|</td>
 
1379                 <td align=right><input name="l_amount" class=checkbox type=checkbox value=Y checked></td>
 
1380                 <td nowrap>| . $locale->text('Total') . qq|</td>
 
1383                 <td align=right><input name="l_datepaid" class=checkbox type=checkbox value=Y></td>
 
1384                 <td nowrap>| . $locale->text('Date Paid') . qq|</td>
 
1385                 <td align=right><input name="l_paid" class=checkbox type=checkbox value=Y checked></td>
 
1386                 <td nowrap>| . $locale->text('Paid') . qq|</td>
 
1387                 <td align=right><input name="l_duedate" class=checkbox type=checkbox value=Y></td>
 
1388                 <td nowrap>| . $locale->text('Due Date') . qq|</td>
 
1389                 <td align=right><input name="l_due" class=checkbox type=checkbox value=Y></td>
 
1390                 <td nowrap>| . $locale->text('Amount Due') . qq|</td>
 
1393                 <td align=right><input name="l_notes" class=checkbox type=checkbox value=Y></td>
 
1394                 <td nowrap>| . $locale->text('Notes') . qq|</td>
 
1395                 <td align=right><input name="l_employee" class=checkbox type=checkbox value=Y></td>
 
1396                 <td nowrap>| . $locale->text('Salesperson') . qq|</td>
 
1397                 <td align=right><input name="l_shippingpoint" class=checkbox type=checkbox value=Y></td>
 
1398                 <td nowrap>| . $locale->text('Shipping Point') . qq|</td>
 
1399                 <td align=right><input name="l_shipvia" class=checkbox type=checkbox value=Y></td>
 
1400                 <td nowrap>| . $locale->text('Ship via') . qq|</td>
 
1403                 <td align=right><input name="l_marge_total" class=checkbox type=checkbox value=Y></td><td> |
 
1404     .             $locale->text('Ertrag') . qq|</td>
 
1405                 <td align=right><input name="l_marge_percent" class=checkbox type=checkbox value=Y></td><td> |
 
1406     .             $locale->text('Ertrag prozentual') . qq|</td>
 
1409                 <td align=right><input name="l_subtotal" class=checkbox type=checkbox value=Y></td>
 
1410                 <td nowrap>| . $locale->text('Subtotal') . qq|</td>
 
1411                 <td align=right><input name="l_globalprojectnumber" class=checkbox type=checkbox value=Y></td>
 
1412                 <td nowrap>| . $locale->text('Project Number') . qq|</td>
 
1413                 <td align=right><input name="l_transaction_description" class=checkbox type=checkbox value=Y></td>
 
1414                 <td nowrap>| . $locale->text('Transaction description') . qq|</td>
 
1423     <td><hr size=3 noshade></td>
 
1427 <input type=hidden name=nextsub value=$form->{nextsub}>
 
1430 <input class=submit type=submit name=action value="|
 
1431     . $locale->text('Continue') . qq|">
 
1442   $lxdebug->leave_sub();
 
1445 sub create_subtotal_row {
 
1446   $lxdebug->enter_sub();
 
1448   my ($totals, $columns, $column_alignment, $subtotal_columns, $class) = @_;
 
1450   my $row = { map { $_ => { 'data' => '', 'class' => $class, 'align' => $column_alignment->{$_}, } } @{ $columns } };
 
1452   map { $row->{$_}->{data} = $form->format_amount(\%myconfig, $totals->{$_}, 2) } @{ $subtotal_columns };
 
1454   $row->{tax}->{data} = $form->format_amount(\%myconfig, $totals->{amount} - $totals->{netamount}, 2);
 
1456   map { $totals->{$_} = 0 } @{ $subtotal_columns };
 
1458   $lxdebug->leave_sub();
 
1463 sub ar_transactions {
 
1464   $lxdebug->enter_sub();
 
1466   $auth->assert('general_ledger | invoice_edit');
 
1468   my ($callback, $href, @columns);
 
1470   $form->{customer} = $form->unescape($form->{customer});
 
1471   ($form->{customer}, $form->{customer_id}) = split(/--/, $form->{customer});
 
1473   $form->{sort} ||= 'transdate';
 
1475   AR->ar_transactions(\%myconfig, \%$form);
 
1477   $form->{title} = $locale->text('AR Transactions');
 
1479   my $report = SL::ReportGenerator->new(\%myconfig, $form);
 
1482     qw(transdate id type invnumber ordnumber name netamount tax amount paid
 
1483        datepaid due duedate transaction_description notes employee shippingpoint shipvia
 
1484        marge_total marge_percent globalprojectnumber);
 
1486   my @hidden_variables = map { "l_${_}" } @columns;
 
1487   push @hidden_variables, "l_subtotal", qw(open closed customer invnumber ordnumber transaction_description notes project_id transdatefrom transdateto);
 
1489   $href = build_std_url('action=ar_transactions', grep { $form->{$_} } @hidden_variables);
 
1492     'transdate'               => { 'text' => $locale->text('Date'), },
 
1493     'id'                      => { 'text' => $locale->text('ID'), },
 
1494     'type'                    => { 'text' => $locale->text('Type'), },
 
1495     'invnumber'               => { 'text' => $locale->text('Invoice'), },
 
1496     'ordnumber'               => { 'text' => $locale->text('Order'), },
 
1497     'name'                    => { 'text' => $locale->text('Customer'), },
 
1498     'netamount'               => { 'text' => $locale->text('Amount'), },
 
1499     'tax'                     => { 'text' => $locale->text('Tax'), },
 
1500     'amount'                  => { 'text' => $locale->text('Total'), },
 
1501     'paid'                    => { 'text' => $locale->text('Paid'), },
 
1502     'datepaid'                => { 'text' => $locale->text('Date Paid'), },
 
1503     'due'                     => { 'text' => $locale->text('Amount Due'), },
 
1504     'duedate'                 => { 'text' => $locale->text('Due Date'), },
 
1505     'transaction_description' => { 'text' => $locale->text('Transaction description'), },
 
1506     'notes'                   => { 'text' => $locale->text('Notes'), },
 
1507     'employee'                => { 'text' => $locale->text('Salesperson'), },
 
1508     'shippingpoint'           => { 'text' => $locale->text('Shipping Point'), },
 
1509     'shipvia'                 => { 'text' => $locale->text('Ship via'), },
 
1510     'globalprojectnumber'     => { 'text' => $locale->text('Project Number'), },
 
1511     'marge_total'             => { 'text' => $locale->text('Ertrag'), },
 
1512     'marge_percent'           => { 'text' => $locale->text('Ertrag prozentual'), },
 
1515   foreach my $name (qw(id transdate duedate invnumber ordnumber name datepaid
 
1516                        employee shippingpoint shipvia)) {
 
1517     $column_defs{$name}->{link} = $href . "&sort=$name";
 
1520   my %column_alignment = map { $_ => 'right' } qw(netamount tax amount paid due);
 
1522   $form->{"l_type"} = "Y";
 
1523   map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
 
1525   $report->set_columns(%column_defs);
 
1526   $report->set_column_order(@columns);
 
1528   $report->set_export_options('ar_transactions', @hidden_variables);
 
1530   $report->set_sort_indicator($form->{sort}, 1);
 
1533   if ($form->{customer}) {
 
1534     push @options, $locale->text('Customer') . " : $form->{customer}";
 
1536   if ($form->{department}) {
 
1537     my ($department) = split /--/, $form->{department};
 
1538     push @options, $locale->text('Department') . " : $department";
 
1540   if ($form->{invnumber}) {
 
1541     push @options, $locale->text('Invoice Number') . " : $form->{invnumber}";
 
1543   if ($form->{ordnumber}) {
 
1544     push @options, $locale->text('Order Number') . " : $form->{ordnumber}";
 
1546   if ($form->{notes}) {
 
1547     push @options, $locale->text('Notes') . " : $form->{notes}";
 
1549   if ($form->{transaction_description}) {
 
1550     push @options, $locale->text('Transaction description') . " : $form->{transaction_description}";
 
1552   if ($form->{transdatefrom}) {
 
1553     push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
 
1555   if ($form->{transdateto}) {
 
1556     push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1);
 
1558   if ($form->{open}) {
 
1559     push @options, $locale->text('Open');
 
1561   if ($form->{closed}) {
 
1562     push @options, $locale->text('Closed');
 
1565   $report->set_options('top_info_text'        => join("\n", @options),
 
1566                        'raw_bottom_info_text' => $form->parse_html_template('ar/ar_transactions_bottom'),
 
1567                        'output_format'        => 'HTML',
 
1568                        'title'                => $form->{title},
 
1569                        'attachment_basename'  => $locale->text('invoice_list') . strftime('_%Y%m%d', localtime time),
 
1571   $report->set_options_from_form();
 
1573   # add sort and escape callback, this one we use for the add sub
 
1574   $form->{callback} = $href .= "&sort=$form->{sort}";
 
1576   # escape callback for href
 
1577   $callback = $form->escape($href);
 
1579   my @subtotal_columns = qw(netamount amount paid due marge_total marge_percent);
 
1581   my %totals    = map { $_ => 0 } @subtotal_columns;
 
1582   my %subtotals = map { $_ => 0 } @subtotal_columns;
 
1586   foreach my $ar (@{ $form->{AR} }) {
 
1587     $ar->{tax} = $ar->{amount} - $ar->{netamount};
 
1588     $ar->{due} = $ar->{amount} - $ar->{paid};
 
1590     map { $subtotals{$_} += $ar->{$_};
 
1591           $totals{$_}    += $ar->{$_} } @subtotal_columns;
 
1593     $subtotals{marge_percent} = $subtotals{netamount} ? ($subtotals{marge_total} * 100 / $subtotals{netamount}) : 0;
 
1594     $totals{marge_percent}    = $totals{netamount}    ? ($totals{marge_total}    * 100 / $totals{netamount}   ) : 0;
 
1596     map { $ar->{$_} = $form->format_amount(\%myconfig, $ar->{$_}, 2) } qw(netamount tax amount paid due marge_total marge_percent);
 
1598     my $is_storno  = $ar->{storno} && !$ar->{storno_id};
 
1599     my $has_storno = $ar->{storno} && $ar->{storno_id};
 
1602       $has_storno       ? $locale->text("Invoice with Storno (abbreviation)") :
 
1603       $is_storno        ? $locale->text("Storno (one letter abbreviation)") :
 
1604       $ar->{amount} < 0 ? $locale->text("Credit note (one letter abbreviation)") :
 
1605       $ar->{invoice}    ? $locale->text("Invoice (one letter abbreviation)") :
 
1606                           $locale->text("AR Transaction (abbreviation)");
 
1610     foreach my $column (@columns) {
 
1612         'data'  => $ar->{$column},
 
1613         'align' => $column_alignment{$column},
 
1617     $row->{invnumber}->{link} = build_std_url("script=" . ($ar->{invoice} ? 'is.pl' : 'ar.pl'), 'action=edit')
 
1618       . "&id=" . E($ar->{id}) . "&callback=${callback}";
 
1620     my $row_set = [ $row ];
 
1622     if (($form->{l_subtotal} eq 'Y')
 
1623         && (($idx == (scalar @{ $form->{AR} } - 1))
 
1624             || ($ar->{ $form->{sort} } ne $form->{AR}->[$idx + 1]->{ $form->{sort} }))) {
 
1625       push @{ $row_set }, create_subtotal_row(\%subtotals, \@columns, \%column_alignment, \@subtotal_columns, 'listsubtotal');
 
1628     $report->add_data($row_set);
 
1633   $report->add_separator();
 
1634   $report->add_data(create_subtotal_row(\%totals, \@columns, \%column_alignment, \@subtotal_columns, 'listtotal'));
 
1636   $report->generate_with_headers();
 
1638   $lxdebug->leave_sub();
 
1642   $lxdebug->enter_sub();
 
1644   $auth->assert('general_ledger');
 
1646   # don't cancel cancelled transactions
 
1647   if (IS->has_storno(\%myconfig, $form, 'ar')) {
 
1648     $form->{title} = $locale->text("Cancel Accounts Receivables Transaction");
 
1649     $form->error($locale->text("Transaction has already been cancelled!"));
 
1652   AR->storno($form, \%myconfig, $form->{id});
 
1654   # saving the history
 
1655   if(!exists $form->{addition} && $form->{id} ne "") {
 
1656     $form->{snumbers} = "ordnumber_$form->{ordnumber}";
 
1657     $form->{addition} = "STORNO";
 
1658     $form->save_history($form->dbconnect(\%myconfig));
 
1660   # /saving the history 
 
1662   $form->redirect(sprintf $locale->text("Transaction %d cancelled."), $form->{storno_id}); 
 
1664   $lxdebug->leave_sub();