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, $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->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{transdate}, 'buy');
 
 265   $form->{exchangerate} = $form->{forex} if $form->{forex};
 
 268   $form->{exchangerate} =
 
 269     $form->format_amount(\%myconfig, $form->{exchangerate});
 
 271   if ($form->{exchangerate} == 0) {
 
 272     $form->{exchangerate} = "";
 
 275   $form->{creditlimit} =
 
 276     $form->format_amount(\%myconfig, $form->{creditlimit}, 0, "0");
 
 277   $form->{creditremaining} =
 
 278     $form->format_amount(\%myconfig, $form->{creditremaining}, 0, "0");
 
 281 <input type=hidden name=forex value=$form->{forex}>
 
 283   if ($form->{currency} ne $form->{defaultcurrency}) {
 
 284     if ($form->{forex}) {
 
 286         <th align=right>| . $locale->text('Exchangerate') . qq|</th>
 
 287         <td><input type=hidden name=exchangerate value=$form->{exchangerate}>$form->{exchangerate}</td>
 
 291         <th align=right>| . $locale->text('Exchangerate') . qq|</th>
 
 292         <td><input name=exchangerate size=10 value=$form->{exchangerate}></td>
 
 299                 <td align=right><input name=taxincluded class=checkbox type=checkbox value=1 $form->{taxincluded}></td>
 
 300                 <th align=left nowrap>| . $locale->text('Tax Included') . qq|</th>
 
 304   if (($rows = $form->numtextrows($form->{notes}, 50)) < 2) {
 
 308     qq|<textarea name=notes rows=$rows cols=50 wrap=soft>$form->{notes}</textarea>|;
 
 312                 <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
 
 313                 <td colspan=3><select name=department>$form->{selectdepartment}</select>
 
 314                 <input type=hidden name=selectdepartment value="$form->{selectdepartment}">
 
 317 | if $form->{selectdepartment};
 
 319   my $n = ($form->{creditremaining} =~ /-/) ? "0" : "1";
 
 321   $customer = ($form->{selectcustomer}) 
 
 322     ? qq|<select name="customer" onchange="document.getElementById('update_button').click();">$form->{selectcustomer}</select>| 
 
 323     : qq|<input name=customer value="$form->{customer}" size=35>|;
 
 326                 <input type=hidden name=employee value="$form->{employee}">
 
 329   if ($form->{selectemployee}) {
 
 332                 <th align=right nowrap>| . $locale->text('Salesperson') . qq|</th>
 
 333                 <td  colspan=2><select name=employee>$form->{selectemployee}</select></td>
 
 334                 <input type=hidden name=selectemployee value="$form->{selectemployee}">
 
 339   my @old_project_ids = ();
 
 340   map({ push(@old_project_ids, $form->{"project_id_$_"})
 
 341           if ($form->{"project_id_$_"}); } (1..$form->{"rowcount"}));
 
 343   $form->get_lists("projects"  => { "key"       => "ALL_PROJECTS",
 
 345                                     "old_id"    => \@old_project_ids },
 
 346                    "charts"    => { "key"       => "ALL_CHARTS",
 
 347                                     "transdate" => $form->{transdate} },
 
 348                    "taxcharts" => { "key"       => "ALL_TAXCHARTS",
 
 349                                     "module"    => "AR" },);
 
 351   map({ $_->{link_split} = [ split(/:/, $_->{link}) ]; }
 
 352       @{ $form->{ALL_CHARTS} });
 
 354   my %project_labels = ();
 
 355   my @project_values = ("");
 
 356   foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
 
 357     push(@project_values, $item->{"id"});
 
 358     $project_labels{$item->{"id"}} = $item->{"projectnumber"};
 
 361   my (%AR_amount_labels, @AR_amount_values);
 
 362   my (%AR_labels, @AR_values);
 
 363   my (%AR_paid_labels, @AR_paid_values);
 
 367   foreach my $item (@{ $form->{ALL_CHARTS} }) {
 
 368     if (grep({ $_ eq "AR_amount" } @{ $item->{link_split} })) {
 
 369       $taxchart_init = $item->{tax_id} if ($taxchart_init eq "");
 
 370       my $key = "$item->{accno}--$item->{tax_id}";
 
 371       push(@AR_amount_values, $key);
 
 372       $AR_amount_labels{$key} =
 
 373         "$item->{accno}--$item->{description}";
 
 375     } elsif (grep({ $_ eq "AR" } @{ $item->{link_split} })) {
 
 376       push(@AR_values, $item->{accno});
 
 377       $AR_labels{$item->{accno}} = "$item->{accno}--$item->{description}";
 
 379     } elsif (grep({ $_ eq "AR_paid" } @{ $item->{link_split} })) {
 
 380       push(@AR_paid_values, $item->{accno});
 
 381       $AR_paid_labels{$item->{accno}} =
 
 382         "$item->{accno}--$item->{description}";
 
 385     $charts{$item->{accno}} = $item;
 
 388   my %taxchart_labels = ();
 
 389   my @taxchart_values = ();
 
 391   foreach my $item (@{ $form->{ALL_TAXCHARTS} }) {
 
 392     my $key = "$item->{id}--$item->{rate}";
 
 393     $taxchart_init = $key if ($taxchart_init eq $item->{id});
 
 394     push(@taxchart_values, $key);
 
 395     $taxchart_labels{$key} =
 
 396       "$item->{taxdescription} " . ($item->{rate} * 100) . ' %';
 
 397     $taxcharts{$item->{id}} = $item;
 
 400   $form->{fokus} = "arledger.customer";
 
 402   # use JavaScript Calendar or not
 
 403   $form->{jsscript} = 1;
 
 405   if ($form->{jsscript}) {
 
 407     # with JavaScript Calendar
 
 409        <td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value="$form->{transdate}" onBlur=\"check_right_date_format(this)\"></td>
 
 410        <td><input type=button name=transdate id="trigger1" value=|
 
 411       . $locale->text('button') . qq|></td>
 
 414        <td><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value="$form->{duedate}" onBlur=\"check_right_date_format(this)\"></td>
 
 415        <td><input type=button name=duedate id="trigger2" value=|
 
 416       . $locale->text('button') . qq|></td></td>
 
 421       Form->write_trigger(\%myconfig, "2", "transdate", "BL", "trigger1",
 
 422                           "duedate", "BL", "trigger2");
 
 425     # without JavaScript Calendar
 
 427       qq|<td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value="$form->{transdate}" onBlur=\"check_right_date_format(this)\"></td>|;
 
 429       qq|<td><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value="$form->{duedate}" onBlur=\"check_right_date_format(this)\"></td>|;
 
 432   my $follow_up_vc         =  $form->{customer};
 
 433   $follow_up_vc            =~ s/--.*?//;
 
 434   my $follow_up_trans_info =  "$form->{invnumber} ($follow_up_vc)";
 
 436   $form->{javascript} .=
 
 437     qq|<script type="text/javascript" src="js/common.js"></script>| .
 
 438     qq|<script type="text/javascript" src="js/show_vc_details.js"></script>| .
 
 439     qq|<script type="text/javascript" src="js/follow_up.js"></script>|;
 
 442   $onload = qq|focus()|;
 
 443   $onload .= qq|;setupDateFormat('|. $myconfig{dateformat} .qq|', '|. $locale->text("Falsches Datumsformat!") .qq|')|;
 
 444   $onload .= qq|;setupPoints('|. $myconfig{numberformat} .qq|', '|. $locale->text("wrongformat") .qq|')|;
 
 446 <body onLoad="$onload">
 
 448 <form method=post name="arledger" action=$form->{script}>
 
 450 <input type=hidden name=id value=$form->{id}>
 
 451 <input type=hidden name=sort value=$form->{sort}>
 
 452 <input type=hidden name=closedto value=$form->{closedto}>
 
 453 <input type=hidden name=locked value=$form->{locked}>
 
 454 <input type=hidden name=title value="$title">
 
 455 <input type="hidden" name="follow_up_trans_id_1" value="| . H($form->{id}) . qq|">
 
 456 <input type="hidden" name="follow_up_trans_type_1" value="ar_transaction">
 
 457 <input type="hidden" name="follow_up_trans_info_1" value="| . H($follow_up_trans_info) . qq|">
 
 458 <input type="hidden" name="follow_up_rowcount" value="1">
 
 460 | . ($form->{saved_message} ? qq|<p>$form->{saved_message}</p>| : "") . qq|
 
 464     <th class=listtop>$form->{title}</th>
 
 474                 <th align="right" nowrap>| . $locale->text('Customer') . qq|</th>
 
 475                 <td colspan=3>$customer <input type="button" value="?" onclick="show_vc_details('customer')"></td>
 
 476                 <input type=hidden name=selectcustomer value="$form->{selectcustomer}">
 
 477                 <input type=hidden name=oldcustomer value="$form->{oldcustomer}">
 
 478                 <input type=hidden name=customer_id value="$form->{customer_id}">
 
 479                 <input type=hidden name=terms value=$form->{terms}>
 
 486                       <th align=left nowrap>| . $locale->text('Credit Limit') . qq|</th>
 
 487                       <td>$form->{creditlimit}</td>
 
 488                       <th align=left nowrap>| . $locale->text('Remaining') . qq|</th>
 
 489                       <td class="plus$n">$form->{creditremaining}</td>
 
 490                       <input type=hidden name=creditlimit value=$form->{creditlimit}>
 
 491                       <input type=hidden name=creditremaining value=$form->{creditremaining}>
 
 497                 <th align=right>| . $locale->text('Currency') . qq|</th>
 
 498                 <td><select name=currency>$form->{selectcurrency}</select></td>
 
 499                 <input type=hidden name=selectcurrency value="$form->{selectcurrency}">
 
 500                 <input type=hidden name=defaultcurrency value=$form->{defaultcurrency}>
 
 501                 <input type=hidden name=fxgain_accno value=$form->{fxgain_accno}>
 
 502                 <input type=hidden name=fxloss_accno value=$form->{fxloss_accno}>
 
 513                 <th align=right nowrap>| . $locale->text('Invoice Number') . qq|</th>
 
 514                 <td><input name=invnumber size=11 value="$form->{invnumber}"></td>
 
 517                 <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
 
 518                 <td><input name=ordnumber size=11 value="$form->{ordnumber}"></td>
 
 521                 <th align=right nowrap>| . $locale->text('Invoice Date') . qq|</th>
 
 525                 <th align=right nowrap>| . $locale->text('Due Date') . qq|</th>
 
 536   <input type=hidden name=rowcount value=$form->{rowcount}>
 
 540            <tr class=listheading>
 
 541           <th class=listheading style="width:15%">|
 
 542     . $locale->text('Account') . qq|</th>
 
 543           <th class=listheading style="width:10%">|
 
 544     . $locale->text('Amount') . qq|</th>
 
 545           <th class=listheading style="width:10%">|
 
 546     . $locale->text('Tax') . qq|</th>
 
 547           <th class=listheading style="width:5%">|
 
 548     . $locale->text('Taxkey') . qq|</th>
 
 549           <th class=listheading style="width:10%">|
 
 550     . $locale->text('Project') . qq|</th>
 
 554   $amount  = $locale->text('Amount');
 
 555   $project = $locale->text('Project');
 
 557   for my $i (1 .. $form->{rowcount}) {
 
 560     $form->{"amount_$i"} =
 
 561       $form->format_amount(\%myconfig, $form->{"amount_$i"}, 2);
 
 562     $form->{"tax_$i"} = $form->format_amount(\%myconfig, $form->{"tax_$i"}, 2);
 
 564     my $selected_accno_full;
 
 565     my ($accno_row) = split(/--/, $form->{"AR_amount_$i"});
 
 566     my $item = $charts{$accno_row};
 
 567     $selected_accno_full = "$item->{accno}--$item->{tax_id}";
 
 569     my $selected_taxchart = $form->{"taxchart_$i"};
 
 570     my ($selected_accno, $selected_tax_id) = split(/--/, $selected_accno_full);
 
 571     my ($previous_accno, $previous_tax_id) = split(/--/, $form->{"previous_AR_amount_$i"});
 
 573     if ($previous_accno &&
 
 574         ($previous_accno eq $selected_accno) &&
 
 575         ($previous_tax_id ne $selected_tax_id)) {
 
 576       my $item = $taxcharts{$selected_tax_id};
 
 577       $selected_taxchart = "$item->{id}--$item->{rate}";
 
 580     $selected_taxchart = $taxchart_init unless ($form->{"taxchart_$i"});
 
 583       NTI($cgi->popup_menu('-name' => "AR_amount_$i",
 
 584                            '-id' => "AR_amount_$i",
 
 585                            '-style' => 'width:400px',
 
 586                            '-onChange' => "setTaxkey(this, $i)",
 
 587                            '-values' => \@AR_amount_values,
 
 588                            '-labels' => \%AR_amount_labels,
 
 589                            '-default' => $selected_accno_full))
 
 590       . $cgi->hidden('-name' => "previous_AR_amount_$i",
 
 591                      '-default' => $selected_accno_full);
 
 594       NTI($cgi->popup_menu('-name' => "taxchart_$i",
 
 595                            '-id' => "taxchart_$i",
 
 596                            '-style' => 'width:200px',
 
 597                            '-values' => \@taxchart_values,
 
 598                            '-labels' => \%taxchart_labels,
 
 599                            '-default' => $selected_taxchart))
 
 603       NTI($cgi->popup_menu('-name' => "project_id_$i",
 
 604                            '-values' => \@project_values,
 
 605                            '-labels' => \%project_labels,
 
 606                            '-default' => $form->{"project_id_$i"} ));
 
 610           <td>$selectAR_amount</td>
 
 611           <td><input name="amount_$i" size=10 value=$form->{"amount_$i"}></td>
 
 612           <td><input type="hidden" name="tax_$i" value="$form->{"tax_$i"}">$form->{"tax_$i"}</td>
 
 614           <td>$projectnumber</td>
 
 621   $form->{invtotal_unformatted} = $form->{invtotal};
 
 622   $form->{invtotal} = $form->format_amount(\%myconfig, $form->{invtotal}, 2);
 
 625     NTI($cgi->popup_menu('-name' => "ARselected", '-id' => "ARselected",
 
 626                          '-style' => 'width:400px',
 
 627                          '-values' => \@AR_values, '-labels' => \%AR_labels,
 
 628                          '-default' => $form->{ARselected}));
 
 637           <td>${ARselected}</td>
 
 638           <th align=left>$form->{invtotal}</th>
 
 640           <input type=hidden name=oldinvtotal value=$form->{oldinvtotal}>
 
 641           <input type=hidden name=oldtotalpaid value=$form->{oldtotalpaid}>
 
 643           <input type=hidden name=taxaccounts value="$form->{taxaccounts}">
 
 656           <th align=left width=1%>| . $locale->text('Notes') . qq|</th>
 
 657           <td align=left>$notes</td>
 
 665         <tr class=listheading>
 
 666           <th colspan=7 class=listheading>|
 
 667     . $locale->text('Incoming Payments') . qq|</th>
 
 671   if ($form->{currency} eq $form->{defaultcurrency}) {
 
 672     @column_index = qw(datepaid source memo paid AR_paid paid_project_id);
 
 674     @column_index = qw(datepaid source memo paid exchangerate AR_paid paid_project_id);
 
 677   $column_data{datepaid}     = "<th>" . $locale->text('Date') . "</th>";
 
 678   $column_data{paid}         = "<th>" . $locale->text('Amount') . "</th>";
 
 679   $column_data{exchangerate} = "<th>" . $locale->text('Exch') . "</th>";
 
 680   $column_data{AR_paid}      = "<th>" . $locale->text('Account') . "</th>";
 
 681   $column_data{source}       = "<th>" . $locale->text('Source') . "</th>";
 
 682   $column_data{memo}         = "<th>" . $locale->text('Memo') . "</th>"; 
 
 683   $column_data{paid_project_id} = "<th>" . $locale->text('Project Number') . "</th>"; 
 
 688   map { print "$column_data{$_}\n" } @column_index;
 
 696   $form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
 
 697   for my $i (1 .. $form->{paidaccounts}) {
 
 703       NTI($cgi->popup_menu('-name' => "AR_paid_$i",
 
 704                            '-id' => "AR_paid_$i",
 
 705                            '-values' => \@AR_paid_values,
 
 706                            '-labels' => \%AR_paid_labels,
 
 707                            '-default' => $form->{"AR_paid_$i"}));
 
 709     $totalpaid += $form->{"paid_$i"};
 
 712     if ($form->{"paid_$i"}) {
 
 714         $form->format_amount(\%myconfig, $form->{"paid_$i"}, 2);
 
 716     $form->{"exchangerate_$i"} =
 
 717       $form->format_amount(\%myconfig, $form->{"exchangerate_$i"});
 
 719     if ($form->{"exchangerate_$i"} == 0) {
 
 720       $form->{"exchangerate_$i"} = "";
 
 723     $exchangerate = qq| |;
 
 724     if ($form->{currency} ne $form->{defaultcurrency}) {
 
 725       if ($form->{"forex_$i"}) {
 
 727           qq|<input type=hidden name="exchangerate_$i" value=$form->{"exchangerate_$i"}>$form->{"exchangerate_$i"}|;
 
 730           qq|<input name="exchangerate_$i" size=10 value=$form->{"exchangerate_$i"}>|;
 
 735 <input type=hidden name="forex_$i" value=$form->{"forex_$i"}>
 
 739       qq|<td align=center><input name="paid_$i" size=11 value="$form->{"paid_$i"}" onBlur=\"check_right_number_format(this)\"></td>|;
 
 740     $column_data{AR_paid} =
 
 741       qq|<td align=center>${selectAR_paid}</td>|;
 
 742     $column_data{exchangerate} = qq|<td align=center>$exchangerate</td>|;
 
 743     $column_data{datepaid}     =
 
 744       qq|<td align=center><input name="datepaid_$i" id="datepaid_$i" size=11 value="$form->{"datepaid_$i"}" onBlur=\"check_right_date_format(this)\">
 
 745          <input type="button" name="datepaid_$i" id="trigger_datepaid_$i" value="?"></td>|;
 
 746     $column_data{source} =
 
 747       qq|<td align=center><input name="source_$i" size=11 value="$form->{"source_$i"}"></td>|;
 
 749       qq|<td align=center><input name="memo_$i" size=11 value="$form->{"memo_$i"}"></td>|;
 
 751     $column_data{paid_project_id} =
 
 753       . NTI($cgi->popup_menu('-name' => "paid_project_id_$i",
 
 754                              '-values' => \@project_values,
 
 755                              '-labels' => \%project_labels,
 
 756                              '-default' => $form->{"paid_project_id_$i"} ))
 
 759     map { print qq|$column_data{$_}\n| } @column_index;
 
 764     push(@triggers, "datepaid_$i", "BL", "trigger_datepaid_$i");
 
 767   my $paid_missing = $form->{invtotal_unformatted} - $totalpaid;
 
 773           <td align="center">| . $locale->text('Total') . qq|</td>
 
 774           <td align="center">| . H($form->format_amount(\%myconfig, $totalpaid, 2)) . qq|</td>
 
 779           <td align="center">| . $locale->text('Missing amount') . qq|</td>
 
 780           <td align="center">| . H($form->format_amount(\%myconfig, $paid_missing, 2)) . qq|</td>
 
 782 | . $form->write_trigger(\%myconfig, scalar(@triggers) / 3, @triggers) .
 
 784 <input type=hidden name=paidaccounts value=$form->{paidaccounts}>
 
 790     <td><hr size=3 noshade></td>
 
 795   $lxdebug->leave_sub();
 
 799   $lxdebug->enter_sub();
 
 801   $auth->assert('general_ledger');
 
 803   my ($transdate, $closedto);
 
 805   my $follow_ups_block;
 
 807     my $follow_ups = FU->follow_ups('trans_id' => $form->{id});
 
 809     if (@{ $follow_ups} ) {
 
 810       my $num_due       = sum map { $_->{due} * 1 } @{ $follow_ups };
 
 811       $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>|;
 
 819 <input name=gldate type=hidden value="| . Q($form->{gldate}) . qq|">
 
 821 <input name=callback type=hidden value="$form->{callback}">
 
 823 . $cgi->hidden('-name' => 'draft_id', '-default' => [$form->{draft_id}])
 
 824 . $cgi->hidden('-name' => 'draft_description', '-default' => [$form->{draft_description}])
 
 830   if (!$form->{id} && $form->{draft_id}) {
 
 831     print(NTI($cgi->checkbox('-name' => 'remove_draft', '-id' => 'remove_draft',
 
 832                              '-value' => 1, '-checked' => $form->{remove_draft},
 
 834           qq| <label for="remove_draft">| .
 
 835           $locale->text("Remove draft when posting") .
 
 839   $transdate = $form->datetonum($form->{transdate}, \%myconfig);
 
 840   $closedto  = $form->datetonum($form->{closedto},  \%myconfig);
 
 842   print qq|<input class="submit" type="submit" name="action" id="update_button" value="| . $locale->text('Update') . qq|">\n|;
 
 844   # ToDO: - insert a global check for stornos, so that a storno is only possible a limited time after saving it
 
 845   print qq| <input class=submit type=submit name=action value="| . $locale->text('Storno') . qq|"> |
 
 846     if ($form->{id} && !IS->has_storno(\%myconfig, $form, 'ar') && !IS->is_storno(\%myconfig, $form, 'ar'));
 
 849     if ($form->{radier}) {
 
 851         <input class=submit type=submit name=action value="| . $locale->text('Post') .            qq|">
 
 852         <input class=submit type=submit name=action value="| . $locale->text('Delete') .          qq|"> |;
 
 854     if ($transdate > $closedto) {
 
 856         <input class=submit type=submit name=action value="| . $locale->text('Use As Template') . qq|"> |;
 
 859         <input class=submit type=submit name=action value="| . $locale->text('Post Payment') .    qq|">
 
 860         <input type="button" class="submit" onclick="follow_up_window()" value="|
 
 861       . $locale->text('Follow-Up')
 
 865     if ($transdate > $closedto) {
 
 866       print qq| <input class=submit type=submit name=action value="| . $locale->text('Post') .     qq|"> | .
 
 867         NTI($cgi->submit('-name' => 'action', '-value' => $locale->text('Save draft'), '-class' => 'submit'));
 
 871   if ($form->{menubar}) {
 
 872     require "bin/mozilla/menu.pl";
 
 875   # button for saving history
 
 876   if($form->{id} ne "") {
 
 877     print qq| <input type=button class=submit onclick=set_history_window($form->{id}); name=history id=history value=| . $locale->text('history') . qq|> |;
 
 879   # /button for saving history
 
 880   # mark_as_paid button 
 
 881   if($form->{id} ne "") {  
 
 882     print qq|<input type="submit" class="submit" name="action" value="| 
 
 883           . $locale->text('mark as paid') . qq|">|;
 
 885   # /mark_as_paid button
 
 894   $lxdebug->leave_sub();
 
 898   $lxdebug->enter_sub();
 
 900   $auth->assert('general_ledger');
 
 902   &mark_as_paid_common(\%myconfig,"ar");  
 
 904   $lxdebug->leave_sub();
 
 908   $lxdebug->enter_sub();
 
 910   $auth->assert('general_ledger');
 
 914   my ($totaltax, $exchangerate, $totalpaid);
 
 916   $form->{invtotal} = 0;
 
 918   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 919     qw(exchangerate creditlimit creditremaining);
 
 921   my @flds  = qw(amount AR_amount projectnumber oldprojectnumber project_id);
 
 925   for my $i (1 .. $form->{rowcount}) {
 
 926     $form->{"amount_$i"} = $form->parse_amount(\%myconfig, $form->{"amount_$i"});
 
 927     $form->{"tax_$i"} = $form->parse_amount(\%myconfig, $form->{"tax_$i"});
 
 928     if ($form->{"amount_$i"}) {
 
 931       my ($taxkey, $rate) = split(/--/, $form->{"taxchart_$i"});
 
 933         if ($form->{taxincluded}) {
 
 934           $form->{"tax_$i"} = $form->{"amount_$i"} / ($rate + 1) * $rate;
 
 936           $form->{"tax_$i"} = $form->{"amount_$i"} * $rate;
 
 939         $form->{"tax_$i"} = 0;
 
 941       $form->{"tax_$i"} = $form->round_amount($form->{"tax_$i"}, 2);
 
 943       $totaltax += $form->{"tax_$i"};
 
 944       map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
 949   $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
 
 950   $form->{rowcount} = $count + 1;
 
 951   map { $form->{invtotal} += $form->{"amount_$_"} } (1 .. $form->{rowcount});
 
 953   $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{transdate}, 'buy');
 
 954   $form->{exchangerate} = $form->{forex} if $form->{forex};
 
 956   $form->{invdate} = $form->{transdate};
 
 957   my $save_AR = $form->{AR};
 
 958   check_name("customer");
 
 959   $form->{AR} = $save_AR;
 
 962     ($form->{taxincluded}) ? $form->{invtotal} : $form->{invtotal} + $totaltax;
 
 964   for my $i (1 .. $form->{paidaccounts}) {
 
 965     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
 
 968           $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
 
 969       } qw(paid exchangerate);
 
 971       $totalpaid += $form->{"paid_$i"};
 
 973       $form->{"forex_$i"}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy');
 
 974       $form->{"exchangerate_$i"} = $form->{"forex_$i"} if $form->{"forex_$i"};
 
 978   $form->{creditremaining} -=
 
 979     ($form->{invtotal} - $totalpaid + $form->{oldtotalpaid} -
 
 980      $form->{oldinvtotal});
 
 981   $form->{oldinvtotal}  = $form->{invtotal};
 
 982   $form->{oldtotalpaid} = $totalpaid;
 
 986   $lxdebug->leave_sub();
 
 990 # ToDO: fix $closedto and $invdate
 
 993   $lxdebug->enter_sub();
 
 995   $auth->assert('general_ledger');
 
 997   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
 
 999   for my $i (1 .. $form->{paidaccounts}) {
 
1001     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
 
1002       my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
 
1004       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
 
1006       $form->error($locale->text('Cannot post payment for a closed period!')) if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
 
1008       if ($form->{currency} ne $form->{defaultcurrency}) {
 
1009 #        $form->{"exchangerate_$i"} = $form->{exchangerate} if ($invdate == $datepaid);
 
1010         $form->isblank("exchangerate_$i", $locale->text('Exchangerate for payment missing!'));
 
1015   ($form->{AR})      = split /--/, $form->{AR};
 
1016   ($form->{AR_paid}) = split /--/, $form->{AR_paid};
 
1017   $form->redirect($locale->text('Payment posted!')) if (AR->post_payment(\%myconfig, \%$form));
 
1018   $form->error($locale->text('Cannot post payment!'));
 
1020   $lxdebug->leave_sub();
 
1025   $auth->assert('general_ledger');
 
1032   $lxdebug->enter_sub();
 
1034   $auth->assert('general_ledger');
 
1040   # check if there is an invoice number, invoice and due date
 
1041   $form->isblank("transdate", $locale->text('Invoice Date missing!'));
 
1042   $form->isblank("duedate",   $locale->text('Due Date missing!'));
 
1043   $form->isblank("customer",  $locale->text('Customer missing!'));
 
1045   my $closedto  = $form->datetonum($form->{closedto},  \%myconfig);
 
1046   my $transdate = $form->datetonum($form->{transdate}, \%myconfig);
 
1047   $form->error($locale->text('Cannot post transaction for a closed period!')) if ($form->date_closed($form->{"transdate"}, \%myconfig));
 
1049   $form->error($locale->text('Zero amount posting!')) 
 
1050     unless grep $_*1, map $form->parse_amount(\%myconfig, $form->{"amount_$_"}), 1..$form->{rowcount};
 
1052   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
 
1053     if ($form->{currency} ne $form->{defaultcurrency});
 
1055   delete($form->{AR});
 
1057   for my $i (1 .. $form->{paidaccounts}) {
 
1058     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
 
1059       $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
 
1061       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
 
1063       $form->error($locale->text('Cannot post payment for a closed period!'))
 
1064         if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
 
1066       if ($form->{currency} ne $form->{defaultcurrency}) {
 
1067         $form->{"exchangerate_$i"} = $form->{exchangerate} if ($transdate == $datepaid);
 
1068         $form->isblank("exchangerate_$i", $locale->text('Exchangerate for payment missing!'));
 
1073   # if oldcustomer ne customer redo form
 
1074   my ($customer) = split /--/, $form->{customer};
 
1075   if ($form->{oldcustomer} ne "$customer--$form->{customer_id}") {
 
1080   $form->{AR}{receivables} = $form->{ARselected};
 
1081   $form->{storno}          = 0;
 
1083   $lxdebug->message(0, $form->{amount});
 
1084   $form->{id} = 0 if $form->{postasnew};
 
1085   $form->error($locale->text('Cannot post transaction!')) unless AR->post_transaction(\%myconfig, \%$form);
 
1087   # saving the history
 
1088   if(!exists $form->{addition} && $form->{id} ne "") {
 
1089     $form->{snumbers} = "invnumber_$form->{invnumber}";
 
1090     $form->{addition} = "POSTED";
 
1091     $form->save_history($form->dbconnect(\%myconfig));
 
1093   # /saving the history 
 
1094   remove_draft() if $form->{remove_draft};
 
1096   $form->redirect($locale->text('Transaction posted!')) unless $inline;
 
1098   $lxdebug->leave_sub();
 
1102   $lxdebug->enter_sub();
 
1104   $auth->assert('general_ledger');
 
1106   $form->{postasnew} = 1;
 
1107   # saving the history
 
1108   if(!exists $form->{addition} && $form->{id} ne "") {
 
1109     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
 
1110         $form->{addition} = "POSTED AS NEW";
 
1111         $form->save_history($form->dbconnect(\%myconfig));
 
1113   # /saving the history 
 
1116   $lxdebug->leave_sub();
 
1119 sub use_as_template {
 
1120   $lxdebug->enter_sub();
 
1122   $auth->assert('general_ledger');
 
1124   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);
 
1125   $form->{paidaccounts} = 1;
 
1126   $form->{rowcount}--;
 
1127   $form->{invdate} = $form->current_date(\%myconfig);
 
1130   $lxdebug->leave_sub();
 
1134   $lxdebug->enter_sub();
 
1136   $auth->assert('general_ledger');
 
1138   $form->{title} = $locale->text('Confirm!');
 
1142   delete $form->{header};
 
1147 <form method=post action=$form->{script}>
 
1150   foreach my $key (keys %$form) {
 
1151     next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
 
1152     $form->{$key} =~ s/\"/"/g;
 
1153     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
 
1157 <h2 class=confirm>$form->{title}</h2>
 
1160     . $locale->text('Are you sure you want to delete Transaction')
 
1161     . qq| $form->{invnumber}</h4>
 
1163 <input name=action class=submit type=submit value="|
 
1164     . $locale->text('Yes') . qq|">
 
1171   $lxdebug->leave_sub();
 
1175   $lxdebug->enter_sub();
 
1177   $auth->assert('general_ledger');
 
1179   if (AR->delete_transaction(\%myconfig, \%$form)) {
 
1180     # saving the history
 
1181     if(!exists $form->{addition}) {
 
1182       $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
 
1183           $form->{addition} = "DELETED";
 
1184           $form->save_history($form->dbconnect(\%myconfig));
 
1186     # /saving the history 
 
1187     $form->redirect($locale->text('Transaction deleted!'));
 
1189   $form->error($locale->text('Cannot delete transaction!'));
 
1191   $lxdebug->leave_sub();
 
1195   $lxdebug->enter_sub();
 
1197   $auth->assert('general_ledger | invoice_edit');
 
1199   my ($customer, $department);
 
1200   my ($jsscript, $button1, $button2, $onload);
 
1202   # setup customer selection
 
1203   $form->all_vc(\%myconfig, "customer", "AR");
 
1205   if (@{ $form->{all_customer} }) {
 
1206     map { $customer .= "<option>$_->{name}--$_->{id}\n" }
 
1207       @{ $form->{all_customer} };
 
1208     $customer = qq|<select name=customer><option>\n$customer</select>|;
 
1210     $customer = qq|<input name=customer size=35>|;
 
1214   if (@{ $form->{all_departments} }) {
 
1215     $form->{selectdepartment} = "<option>\n";
 
1218       $form->{selectdepartment} .=
 
1219         "<option>$_->{description}--$_->{id}\n"
 
1220     } (@{ $form->{all_departments} });
 
1225           <th align=right nowrap>| . $locale->text('Department') . qq|</th>
 
1226           <td colspan=3><select name=department>$form->{selectdepartment}</select></td>
 
1228 | if $form->{selectdepartment};
 
1230   $form->{title} = $locale->text('AR Transactions');
 
1232   $form->{javascript} .= qq|<script type="text/javascript" src="js/common.js"></script>|;
 
1234   # use JavaScript Calendar or not
 
1235   $form->{jsscript} = 1;
 
1237   if ($form->{jsscript}) {
 
1239     # with JavaScript Calendar
 
1241        <td><input name=transdatefrom id=transdatefrom size=11 title="$myconfig{dateformat}" onBlur=\"check_right_date_format(this)\">
 
1242        <input type=button name=transdatefrom id="trigger1" value=|
 
1243       . $locale->text('button') . qq|></td>
 
1246        <td><input name=transdateto id=transdateto size=11 title="$myconfig{dateformat}" onBlur=\"check_right_date_format(this)\">
 
1247        <input type=button name=transdateto name=transdateto id="trigger2" value=|
 
1248       . $locale->text('button') . qq|></td>
 
1253       Form->write_trigger(\%myconfig, "2", "transdatefrom", "BR", "trigger1",
 
1254                           "transdateto", "BL", "trigger2");
 
1257     # without JavaScript Calendar
 
1259                               <td><input name=transdatefrom id=transdatefrom size=11 title="$myconfig{dateformat}" onBlur=\"check_right_date_format(this)\"></td>|;
 
1261                               <td><input name=transdateto id=transdateto size=11 title="$myconfig{dateformat}" onBlur=\"check_right_date_format(this)\"></td>|;
 
1264   $form->get_lists("projects" => { "key" => "ALL_PROJECTS",
 
1269   foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
 
1270     push(@values, $item->{"id"});
 
1271     $labels{$item->{"id"}} = $item->{"projectnumber"};
 
1274     NTI($cgi->popup_menu('-name' => 'project_id', '-values' => \@values,
 
1275                          '-labels' => \%labels));
 
1277   $form->{fokus} = "search.customer";
 
1279   $onload = qq|focus()|;
 
1280   $onload .= qq|;setupDateFormat('|. $myconfig{dateformat} .qq|', '|. $locale->text("Falsches Datumsformat!") .qq|')|;
 
1281   $onload .= qq|;setupPoints('|. $myconfig{numberformat} .qq|', '|. $locale->text("wrongformat") .qq|')|;
 
1283 <body onLoad="$onload">
 
1285 <form method=post name="search" action=$form->{script}>
 
1288   <tr><th class=listtop>$form->{title}</th></tr>
 
1289   <tr height="5"></tr>
 
1294           <th align=right>| . $locale->text('Customer') . qq|</th>
 
1295           <td colspan=3>$customer</td>
 
1299           <th align=right nowrap>| . $locale->text('Invoice Number') . qq|</th>
 
1300           <td colspan=3><input name=invnumber size=20></td>
 
1303           <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
 
1304           <td colspan=3><input name=ordnumber size=20></td>
 
1307          <th align=right nowrap>| . $locale->text('Transaction description') . qq|</th>
 
1308          <td colspan=3><input name=transaction_description size=40></td>
 
1311           <th align=right nowrap>| . $locale->text('Notes') . qq|</th>
 
1312           <td colspan=3><input name=notes size=40></td>
 
1315           <th align="right">| . $locale->text("Project Number") . qq|</th>
 
1316           <td colspan="3">$projectnumber</td>
 
1319           <th align=right nowrap>| . $locale->text('From') . qq|</th>
 
1321           <th align=right>| . $locale->text('Bis') . qq|</th>
 
1324         <input type=hidden name=sort value=transdate>
 
1332           <th align=right nowrap>| . $locale->text('Include in Report') . qq|</th>
 
1336                 <td align=right><input name=open class=checkbox type=checkbox value=Y checked></td>
 
1337                 <td nowrap>| . $locale->text('Open') . qq|</td>
 
1338                 <td align=right><input name=closed class=checkbox type=checkbox value=Y></td>
 
1339                 <td nowrap>| . $locale->text('Closed') . qq|</td>
 
1342                 <td align=right><input name="l_id" class=checkbox type=checkbox value=Y></td>
 
1343                 <td nowrap>| . $locale->text('ID') . qq|</td>
 
1344                 <td align=right><input name="l_invnumber" class=checkbox type=checkbox value=Y checked></td>
 
1345                 <td nowrap>| . $locale->text('Invoice Number') . qq|</td>
 
1346                 <td align=right><input name="l_ordnumber" class=checkbox type=checkbox value=Y></td>
 
1347                 <td nowrap>| . $locale->text('Order Number') . qq|</td>
 
1348                 <td align=right><input name="l_transdate" class=checkbox type=checkbox value=Y checked></td>
 
1349                 <td nowrap>| . $locale->text('Invoice Date') . qq|</td>
 
1352                 <td align=right><input name="l_name" class=checkbox type=checkbox value=Y checked></td>
 
1353                 <td nowrap>| . $locale->text('Customer') . qq|</td>
 
1354                 <td align=right><input name="l_netamount" class=checkbox type=checkbox value=Y></td>
 
1355                 <td nowrap>| . $locale->text('Amount') . qq|</td>
 
1356                 <td align=right><input name="l_tax" class=checkbox type=checkbox value=Y></td>
 
1357                 <td nowrap>| . $locale->text('Tax') . qq|</td>
 
1358                 <td align=right><input name="l_amount" class=checkbox type=checkbox value=Y checked></td>
 
1359                 <td nowrap>| . $locale->text('Total') . qq|</td>
 
1362                 <td align=right><input name="l_datepaid" class=checkbox type=checkbox value=Y></td>
 
1363                 <td nowrap>| . $locale->text('Date Paid') . qq|</td>
 
1364                 <td align=right><input name="l_paid" class=checkbox type=checkbox value=Y checked></td>
 
1365                 <td nowrap>| . $locale->text('Paid') . qq|</td>
 
1366                 <td align=right><input name="l_duedate" class=checkbox type=checkbox value=Y></td>
 
1367                 <td nowrap>| . $locale->text('Due Date') . qq|</td>
 
1368                 <td align=right><input name="l_due" class=checkbox type=checkbox value=Y></td>
 
1369                 <td nowrap>| . $locale->text('Amount Due') . qq|</td>
 
1372                 <td align=right><input name="l_notes" class=checkbox type=checkbox value=Y></td>
 
1373                 <td nowrap>| . $locale->text('Notes') . qq|</td>
 
1374                 <td align=right><input name="l_salesman" class=checkbox type=checkbox value=Y></td>
 
1375                 <td nowrap>| . $locale->text('Salesperson') . qq|</td>
 
1376                 <td align=right><input name="l_shippingpoint" class=checkbox type=checkbox value=Y></td>
 
1377                 <td nowrap>| . $locale->text('Shipping Point') . qq|</td>
 
1378                 <td align=right><input name="l_shipvia" class=checkbox type=checkbox value=Y></td>
 
1379                 <td nowrap>| . $locale->text('Ship via') . qq|</td>
 
1382                 <td align=right><input name="l_marge_total" class=checkbox type=checkbox value=Y></td>
 
1383                 <td nowrap> | . $locale->text('Ertrag') . qq|</td>
 
1384                 <td align=right><input name="l_marge_percent" class=checkbox type=checkbox value=Y></td>
 
1385                 <td nowrap> | . $locale->text('Ertrag prozentual') . qq|</td>
 
1386                 <td align=right><input name="l_employee" class=checkbox type=checkbox value=Y></td>
 
1387                 <td nowrap>| . $locale->text('Employee') . qq|</td>
 
1390                 <td align=right><input name="l_subtotal" class=checkbox type=checkbox value=Y></td>
 
1391                 <td nowrap>| . $locale->text('Subtotal') . qq|</td>
 
1392                 <td align=right><input name="l_globalprojectnumber" class=checkbox type=checkbox value=Y></td>
 
1393                 <td nowrap>| . $locale->text('Project Number') . qq|</td>
 
1394                 <td align=right><input name="l_transaction_description" class=checkbox type=checkbox value=Y></td>
 
1395                 <td nowrap>| . $locale->text('Transaction description') . qq|</td>
 
1404     <td><hr size=3 noshade></td>
 
1408 <input type=hidden name=nextsub value=$form->{nextsub}>
 
1411 <input class=submit type=submit name=action value="|
 
1412     . $locale->text('Continue') . qq|">
 
1423   $lxdebug->leave_sub();
 
1426 sub create_subtotal_row {
 
1427   $lxdebug->enter_sub();
 
1429   my ($totals, $columns, $column_alignment, $subtotal_columns, $class) = @_;
 
1431   my $row = { map { $_ => { 'data' => '', 'class' => $class, 'align' => $column_alignment->{$_}, } } @{ $columns } };
 
1433   map { $row->{$_}->{data} = $form->format_amount(\%myconfig, $totals->{$_}, 2) } @{ $subtotal_columns };
 
1435   $row->{tax}->{data} = $form->format_amount(\%myconfig, $totals->{amount} - $totals->{netamount}, 2);
 
1437   map { $totals->{$_} = 0 } @{ $subtotal_columns };
 
1439   $lxdebug->leave_sub();
 
1444 sub ar_transactions {
 
1445   $lxdebug->enter_sub();
 
1447   $auth->assert('general_ledger | invoice_edit');
 
1449   my ($callback, $href, @columns);
 
1451   $form->{customer} = $form->unescape($form->{customer});
 
1452   ($form->{customer}, $form->{customer_id}) = split(/--/, $form->{customer});
 
1454   report_generator_set_default_sort('transdate', 1);
 
1456   AR->ar_transactions(\%myconfig, \%$form);
 
1458   $form->{title} = $locale->text('AR Transactions');
 
1460   my $report = SL::ReportGenerator->new(\%myconfig, $form);
 
1463     qw(transdate id type invnumber ordnumber name netamount tax amount paid
 
1464        datepaid due duedate transaction_description notes salesman employee shippingpoint shipvia
 
1465        marge_total marge_percent globalprojectnumber);
 
1467   my @hidden_variables = map { "l_${_}" } @columns;
 
1468   push @hidden_variables, "l_subtotal", qw(open closed customer invnumber ordnumber transaction_description notes project_id transdatefrom transdateto);
 
1470   $href = build_std_url('action=ar_transactions', grep { $form->{$_} } @hidden_variables);
 
1473     'transdate'               => { 'text' => $locale->text('Date'), },
 
1474     'id'                      => { 'text' => $locale->text('ID'), },
 
1475     'type'                    => { 'text' => $locale->text('Type'), },
 
1476     'invnumber'               => { 'text' => $locale->text('Invoice'), },
 
1477     'ordnumber'               => { 'text' => $locale->text('Order'), },
 
1478     'name'                    => { 'text' => $locale->text('Customer'), },
 
1479     'netamount'               => { 'text' => $locale->text('Amount'), },
 
1480     'tax'                     => { 'text' => $locale->text('Tax'), },
 
1481     'amount'                  => { 'text' => $locale->text('Total'), },
 
1482     'paid'                    => { 'text' => $locale->text('Paid'), },
 
1483     'datepaid'                => { 'text' => $locale->text('Date Paid'), },
 
1484     'due'                     => { 'text' => $locale->text('Amount Due'), },
 
1485     'duedate'                 => { 'text' => $locale->text('Due Date'), },
 
1486     'transaction_description' => { 'text' => $locale->text('Transaction description'), },
 
1487     'notes'                   => { 'text' => $locale->text('Notes'), },
 
1488     'salesman'                => { 'text' => $locale->text('Salesperson'), },
 
1489     'employee'                => { 'text' => $locale->text('Employee'), },
 
1490     'shippingpoint'           => { 'text' => $locale->text('Shipping Point'), },
 
1491     'shipvia'                 => { 'text' => $locale->text('Ship via'), },
 
1492     'globalprojectnumber'     => { 'text' => $locale->text('Project Number'), },
 
1493     'marge_total'             => { 'text' => $locale->text('Ertrag'), },
 
1494     'marge_percent'           => { 'text' => $locale->text('Ertrag prozentual'), },
 
1497   foreach my $name (qw(id transdate duedate invnumber ordnumber name datepaid employee shippingpoint shipvia transaction_description)) {
 
1498     my $sortdir                 = $form->{sort} eq $name ? 1 - $form->{sortdir} : $form->{sortdir};
 
1499     $column_defs{$name}->{link} = $href . "&sort=$name&sortdir=$sortdir";
 
1502   my %column_alignment = map { $_ => 'right' } qw(netamount tax amount paid due);
 
1504   $form->{"l_type"} = "Y";
 
1505   map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
 
1507   $report->set_columns(%column_defs);
 
1508   $report->set_column_order(@columns);
 
1510   $report->set_export_options('ar_transactions', @hidden_variables);
 
1512   $report->set_sort_indicator($form->{sort}, $form->{sortdir});
 
1515   if ($form->{customer}) {
 
1516     push @options, $locale->text('Customer') . " : $form->{customer}";
 
1518   if ($form->{department}) {
 
1519     my ($department) = split /--/, $form->{department};
 
1520     push @options, $locale->text('Department') . " : $department";
 
1522   if ($form->{invnumber}) {
 
1523     push @options, $locale->text('Invoice Number') . " : $form->{invnumber}";
 
1525   if ($form->{ordnumber}) {
 
1526     push @options, $locale->text('Order Number') . " : $form->{ordnumber}";
 
1528   if ($form->{notes}) {
 
1529     push @options, $locale->text('Notes') . " : $form->{notes}";
 
1531   if ($form->{transaction_description}) {
 
1532     push @options, $locale->text('Transaction description') . " : $form->{transaction_description}";
 
1534   if ($form->{transdatefrom}) {
 
1535     push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
 
1537   if ($form->{transdateto}) {
 
1538     push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1);
 
1540   if ($form->{open}) {
 
1541     push @options, $locale->text('Open');
 
1543   if ($form->{closed}) {
 
1544     push @options, $locale->text('Closed');
 
1547   $report->set_options('top_info_text'        => join("\n", @options),
 
1548                        'raw_bottom_info_text' => $form->parse_html_template('ar/ar_transactions_bottom'),
 
1549                        'output_format'        => 'HTML',
 
1550                        'title'                => $form->{title},
 
1551                        'attachment_basename'  => $locale->text('invoice_list') . strftime('_%Y%m%d', localtime time),
 
1553   $report->set_options_from_form();
 
1555   # add sort and escape callback, this one we use for the add sub
 
1556   $form->{callback} = $href .= "&sort=$form->{sort}";
 
1558   # escape callback for href
 
1559   $callback = $form->escape($href);
 
1561   my @subtotal_columns = qw(netamount amount paid due marge_total marge_percent);
 
1563   my %totals    = map { $_ => 0 } @subtotal_columns;
 
1564   my %subtotals = map { $_ => 0 } @subtotal_columns;
 
1568   foreach my $ar (@{ $form->{AR} }) {
 
1569     $ar->{tax} = $ar->{amount} - $ar->{netamount};
 
1570     $ar->{due} = $ar->{amount} - $ar->{paid};
 
1572     map { $subtotals{$_} += $ar->{$_};
 
1573           $totals{$_}    += $ar->{$_} } @subtotal_columns;
 
1575     $subtotals{marge_percent} = $subtotals{netamount} ? ($subtotals{marge_total} * 100 / $subtotals{netamount}) : 0;
 
1576     $totals{marge_percent}    = $totals{netamount}    ? ($totals{marge_total}    * 100 / $totals{netamount}   ) : 0;
 
1578     map { $ar->{$_} = $form->format_amount(\%myconfig, $ar->{$_}, 2) } qw(netamount tax amount paid due marge_total marge_percent);
 
1580     my $is_storno  = $ar->{storno} &&  $ar->{storno_id};
 
1581     my $has_storno = $ar->{storno} && !$ar->{storno_id};
 
1584       $has_storno       ? $locale->text("Invoice with Storno (abbreviation)") :
 
1585       $is_storno        ? $locale->text("Storno (one letter abbreviation)") :
 
1586       $ar->{amount} < 0 ? $locale->text("Credit note (one letter abbreviation)") :
 
1587       $ar->{invoice}    ? $locale->text("Invoice (one letter abbreviation)") :
 
1588                           $locale->text("AR Transaction (abbreviation)");
 
1592     foreach my $column (@columns) {
 
1594         'data'  => $ar->{$column},
 
1595         'align' => $column_alignment{$column},
 
1599     $row->{invnumber}->{link} = build_std_url("script=" . ($ar->{invoice} ? 'is.pl' : 'ar.pl'), 'action=edit')
 
1600       . "&id=" . E($ar->{id}) . "&callback=${callback}";
 
1602     my $row_set = [ $row ];
 
1604     if (($form->{l_subtotal} eq 'Y')
 
1605         && (($idx == (scalar @{ $form->{AR} } - 1))
 
1606             || ($ar->{ $form->{sort} } ne $form->{AR}->[$idx + 1]->{ $form->{sort} }))) {
 
1607       push @{ $row_set }, create_subtotal_row(\%subtotals, \@columns, \%column_alignment, \@subtotal_columns, 'listsubtotal');
 
1610     $report->add_data($row_set);
 
1615   $report->add_separator();
 
1616   $report->add_data(create_subtotal_row(\%totals, \@columns, \%column_alignment, \@subtotal_columns, 'listtotal'));
 
1618   $report->generate_with_headers();
 
1620   $lxdebug->leave_sub();
 
1624   $lxdebug->enter_sub();
 
1626   $auth->assert('general_ledger');
 
1628   # don't cancel cancelled transactions
 
1629   if (IS->has_storno(\%myconfig, $form, 'ar')) {
 
1630     $form->{title} = $locale->text("Cancel Accounts Receivables Transaction");
 
1631     $form->error($locale->text("Transaction has already been cancelled!"));
 
1634   AR->storno($form, \%myconfig, $form->{id});
 
1636   # saving the history
 
1637   if(!exists $form->{addition} && $form->{id} ne "") {
 
1638     $form->{snumbers} = "ordnumber_$form->{ordnumber}";
 
1639     $form->{addition} = "STORNO";
 
1640     $form->save_history($form->dbconnect(\%myconfig));
 
1642   # /saving the history 
 
1644   $form->redirect(sprintf $locale->text("Transaction %d cancelled."), $form->{storno_id}); 
 
1646   $lxdebug->leave_sub();