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 #======================================================================
 
  32 #======================================================================
 
  34 use POSIX qw(strftime);
 
  35 use List::Util qw(sum);
 
  42 use SL::ReportGenerator;
 
  44 require "bin/mozilla/arap.pl";
 
  45 require "bin/mozilla/common.pl";
 
  46 require "bin/mozilla/drafts.pl";
 
  47 require "bin/mozilla/reportgenerator.pl";
 
  55 # this is for our long dates
 
  56 # $locale->text('January')
 
  57 # $locale->text('February')
 
  58 # $locale->text('March')
 
  59 # $locale->text('April')
 
  60 # $locale->text('May ')
 
  61 # $locale->text('June')
 
  62 # $locale->text('July')
 
  63 # $locale->text('August')
 
  64 # $locale->text('September')
 
  65 # $locale->text('October')
 
  66 # $locale->text('November')
 
  67 # $locale->text('December')
 
  69 # this is for our short month
 
  70 # $locale->text('Jan')
 
  71 # $locale->text('Feb')
 
  72 # $locale->text('Mar')
 
  73 # $locale->text('Apr')
 
  74 # $locale->text('May')
 
  75 # $locale->text('Jun')
 
  76 # $locale->text('Jul')
 
  77 # $locale->text('Aug')
 
  78 # $locale->text('Sep')
 
  79 # $locale->text('Oct')
 
  80 # $locale->text('Nov')
 
  81 # $locale->text('Dec')
 
  84   $main::lxdebug->enter_sub();
 
  86   my $form     = $main::form;
 
  87   my %myconfig = %main::myconfig;
 
  89   $main::auth->assert('general_ledger');
 
  91   return $main::lxdebug->leave_sub() if (load_draft_maybe());
 
  93   $form->{title} = "Add";
 
  95   $form->{callback} = "ap.pl?action=add" unless $form->{callback};
 
  97   AP->get_transdate(\%myconfig, $form);
 
  98   $form->{initial_transdate} = $form->{transdate};
 
 100   $form->{transdate} = $form->{initial_transdate};
 
 103   $main::lxdebug->leave_sub();
 
 107   $main::lxdebug->enter_sub();
 
 109   my $form     = $main::form;
 
 111   $main::auth->assert('general_ledger');
 
 113   $form->{title} = "Edit";
 
 118   $main::lxdebug->leave_sub();
 
 122   $main::lxdebug->enter_sub();
 
 124   my $form     = $main::form;
 
 126   $main::auth->assert('general_ledger');
 
 131   $main::lxdebug->leave_sub();
 
 135   $main::lxdebug->enter_sub();
 
 137   my $form     = $main::form;
 
 138   my %myconfig = %main::myconfig;
 
 140   $main::auth->assert('general_ledger');
 
 142   $form->create_links("AP", \%myconfig, "vendor");
 
 143   my $taxincluded = $form->{taxincluded};
 
 144   my $duedate     = $form->{duedate};
 
 146   IR->get_vendor(\%myconfig, \%$form);
 
 147   $form->{taxincluded} = $taxincluded;
 
 148   $form->{duedate}   = $duedate if $duedate;
 
 149   $form->{oldvendor} = "$form->{vendor}--$form->{vendor_id}";
 
 150   $form->{rowcount}  = 1;
 
 152   # build the popup menus
 
 153   $form->{taxincluded} = ($form->{id}) ? $form->{taxincluded} : "checked";
 
 156   $form->{notes} = $form->{intnotes} unless $form->{notes};
 
 159   my @curr = split(/:/, $form->{currencies});
 
 161   $form->{defaultcurrency} = $curr[0];
 
 163   map { $form->{selectcurrency} .= "<option>$_\n" } @curr;
 
 166   if (@{ $form->{all_vendor} }) {
 
 167     $form->{vendor} = qq|$form->{vendor}--$form->{vendor_id}|;
 
 168     map { $form->{selectvendor} .= "<option>$_->{name}--$_->{id}\n" }
 
 169       (@{ $form->{all_vendor} });
 
 173   if (@{ $form->{all_departments} }) {
 
 174     $form->{selectdepartment} = "<option>\n";
 
 175     $form->{department}       = "$form->{department}--$form->{department_id}";
 
 178       $form->{selectdepartment} .=
 
 179         "<option>$_->{description}--$_->{id}\n"
 
 180     } (@{ $form->{all_departments} });
 
 183   $form->{employee} = "$form->{employee}--$form->{employee_id}";
 
 185   AP->setup_form($form);
 
 188     ($form->datetonum($form->{transdate}, \%myconfig) <=
 
 189      $form->datetonum($form->{closedto}, \%myconfig));
 
 191   $main::lxdebug->leave_sub();
 
 195   $main::lxdebug->enter_sub();
 
 197   my $form     = $main::form;
 
 198   my %myconfig = %main::myconfig;
 
 199   my $locale   = $main::locale;
 
 200   my $cgi      = $main::cgi;
 
 202   $main::auth->assert('general_ledger');
 
 204   my $title = $form->{title};
 
 205   $form->{title} = $locale->text("$title Accounts Payables Transaction");
 
 207   $form->{taxincluded} = ($form->{taxincluded}) ? "checked" : "";
 
 209   # type=submit $locale->text('Add Accounts Payables Transaction')
 
 210   # type=submit $locale->text('Edit Accounts Payables Transaction')
 
 212   $form->{javascript} = qq|<script type="text/javascript">
 
 214   function setTaxkey(accno, row) {
 
 215     var taxkey = accno.options[accno.selectedIndex].value;
 
 216     var reg = /--([0-9]*)/;
 
 217     var found = reg.exec(taxkey);
 
 218     var index = found[1];
 
 219     index = parseInt(index);
 
 220     var tax = 'taxchart_' + row;
 
 221     for (var i = 0; i < document.getElementById(tax).options.length; ++i) {
 
 222       var reg2 = new RegExp("^"+ index, "");
 
 223       if (reg2.exec(document.getElementById(tax).options[i].value)) {
 
 224         document.getElementById(tax).options[i].selected = true;
 
 231   # show history button
 
 232   $form->{javascript} .= qq|<script type="text/javascript" src="js/show_history.js"></script>|;
 
 233   #/show hhistory button
 
 235   # set option selected
 
 236   foreach my $item (qw(vendor currency department)) {
 
 237     $form->{"select$item"} =~ s/ selected//;
 
 238     $form->{"select$item"} =~
 
 239       s/option>\Q$form->{$item}\E/option selected>$form->{$item}/;
 
 241   my $readonly = ($form->{id}) ? "readonly" : "";
 
 243   $form->{radier} = ($form->current_date(\%myconfig) eq $form->{gldate}) ? 1 : 0;
 
 244   $readonly       = ($form->{radier}) ? "" : $readonly;
 
 246   $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{transdate}, 'sell');
 
 247   $form->{exchangerate} = $form->{forex} if $form->{forex};
 
 251   $form->{exchangerate} =
 
 252     $form->format_amount(\%myconfig, $form->{exchangerate});
 
 253   if ($form->{exchangerate} == 0) {
 
 254     $form->{exchangerate} = "";
 
 256   $form->{creditlimit} =
 
 257     $form->format_amount(\%myconfig, $form->{creditlimit}, 0, "0");
 
 258   $form->{creditremaining} =
 
 259     $form->format_amount(\%myconfig, $form->{creditremaining}, 0, "0");
 
 261   my $exchangerate = qq|
 
 262 <input type=hidden name=forex value=$form->{forex}>
 
 264   if ($form->{currency} ne $form->{defaultcurrency}) {
 
 265     if ($form->{forex}) {
 
 268               <th align=right>| . $locale->text('Exchangerate') . qq|</th>
 
 269               <td><input type=hidden name=exchangerate value=$form->{exchangerate}>$form->{exchangerate}</td>
 
 274              <th align=right>| . $locale->text('Exchangerate') . qq|</th>
 
 275              <td><input name=exchangerate size=10 value=$form->{exchangerate}></td>
 
 280   my $taxincluded = "";
 
 284               <td align=right><input name=taxincluded class=checkbox type=checkbox value=1 $form->{taxincluded}></td>
 
 285               <th align=left nowrap>|
 
 286     . $locale->text('Tax Included') . qq|</th>
 
 291   if (($rows = $form->numtextrows($form->{notes}, 50)) < 2) {
 
 295     qq|<textarea name=notes rows=$rows cols=50 wrap=soft $readonly>$form->{notes}</textarea>|;
 
 299                 <th align="right" nowrap>| . $locale->text('Department') . qq|</th>
 
 300                 <td colspan=3><select name=department>$form->{selectdepartment}</select>
 
 301                 <input type=hidden name=selectdepartment value="$form->{selectdepartment}">
 
 304 | if $form->{selectdepartment};
 
 306   my $n = ($form->{creditremaining} =~ /-/) ? "0" : "1";
 
 309     ($form->{selectvendor})
 
 310     ? qq|<select name="vendor" onchange="document.getElementById('update_button').click();">$form->{selectvendor} </select>|
 
 311     : qq|<input name=vendor value="$form->{vendor}" size=35>|;
 
 313   my @old_project_ids = ();
 
 314   map({ push(@old_project_ids, $form->{"project_id_$_"})
 
 315           if ($form->{"project_id_$_"}); } (1..$form->{"rowcount"}));
 
 317   $form->get_lists("projects"  => { "key"       => "ALL_PROJECTS",
 
 319                                     "old_id"    => \@old_project_ids },
 
 320                    "charts"    => { "key"       => "ALL_CHARTS",
 
 321                                     "transdate" => $form->{transdate} },
 
 322                    "taxcharts" => { "key"       => "ALL_TAXCHARTS",
 
 323                                     "module"    => "AP" },);
 
 325   map({ $_->{link_split} = [ split(/:/, $_->{link}) ]; }
 
 326       @{ $form->{ALL_CHARTS} });
 
 328   my %project_labels = ();
 
 329   my @project_values = ("");
 
 330   foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
 
 331     push(@project_values, $item->{"id"});
 
 332     $project_labels{$item->{"id"}} = $item->{"projectnumber"};
 
 335   my (%AP_amount_labels, @AP_amount_values);
 
 336   my (%AP_labels, @AP_values);
 
 337   my (%AP_paid_labels, @AP_paid_values);
 
 341   foreach my $item (@{ $form->{ALL_CHARTS} }) {
 
 342     if (grep({ $_ eq "AP_amount" } @{ $item->{link_split} })) {
 
 343       $taxchart_init = $item->{tax_id} if ($taxchart_init eq "");
 
 344       my $key = "$item->{accno}--$item->{tax_id}";
 
 345       push(@AP_amount_values, $key);
 
 346       $AP_amount_labels{$key} =
 
 347         "$item->{accno}--$item->{description}";
 
 349     } elsif (grep({ $_ eq "AP" } @{ $item->{link_split} })) {
 
 350       push(@AP_values, $item->{accno});
 
 351       $AP_labels{$item->{accno}} = "$item->{accno}--$item->{description}";
 
 353     } elsif (grep({ $_ eq "AP_paid" } @{ $item->{link_split} })) {
 
 354       push(@AP_paid_values, $item->{accno});
 
 355       $AP_paid_labels{$item->{accno}} =
 
 356         "$item->{accno}--$item->{description}";
 
 359     $charts{$item->{accno}} = $item;
 
 362   my %taxchart_labels = ();
 
 363   my @taxchart_values = ();
 
 365   foreach my $item (@{ $form->{ALL_TAXCHARTS} }) {
 
 366     my $key = "$item->{id}--$item->{rate}";
 
 367     $taxchart_init = $key if ($taxchart_init eq $item->{id});
 
 368     push(@taxchart_values, $key);
 
 369     $taxchart_labels{$key} =
 
 370       "$item->{taxdescription} " . ($item->{rate} * 100) . ' %';
 
 371     $taxcharts{$item->{id}} = $item;
 
 374   # use JavaScript Calendar or not
 
 375   $form->{jsscript} = 1;
 
 377   my ($button1, $button2);
 
 378   if ($form->{jsscript}) {
 
 380     # with JavaScript Calendar
 
 382        <td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value="$form->{transdate}" onBlur=\"check_right_date_format(this)\" $readonly></td>
 
 383        <td><input type=button name=transdate id="trigger1" value=|
 
 384       . $locale->text('button') . qq|></td>
 
 387        <td><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value="$form->{duedate}" onBlur=\"check_right_date_format(this)\" $readonly></td>
 
 388        <td><input type=button name=duedate id="trigger2" value=|
 
 389       . $locale->text('button') . qq|></td></td>
 
 394       Form->write_trigger(\%myconfig, "2", "transdate", "BL", "trigger1",
 
 395                           "duedate", "BL", "trigger2");
 
 398     # without JavaScript Calendar
 
 400       qq|<td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value="$form->{transdate}" onBlur=\"check_right_date_format(this)\" $readonly></td>|;
 
 402       qq|<td><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value="$form->{duedate}" onBlur=\"check_right_date_format(this)\" $readonly></td>|;
 
 405   my $follow_up_vc         =  $form->{vendor};
 
 406   $follow_up_vc            =~ s/--.*?//;
 
 407   my $follow_up_trans_info =  "$form->{invnumber} ($follow_up_vc)";
 
 409   $form->{javascript} .= qq|<script type="text/javascript" src="js/common.js"></script>|;
 
 410   $form->{javascript} .= qq|<script type="text/javascript" src="js/show_vc_details.js"></script>|;
 
 411   $form->{javascript} .= qq|<script type="text/javascript" src="js/follow_up.js"></script>|;
 
 414   my $onload = qq|;setupDateFormat('|. $myconfig{dateformat} .qq|', '|. $locale->text("Falsches Datumsformat!") .qq|')|;
 
 415   $onload .= qq|;setupPoints('|. $myconfig{numberformat} .qq|', '|. $locale->text("wrongformat") .qq|')|;
 
 417 <body onLoad="$onload">
 
 419 <form method=post action=$form->{script}>
 
 421 <input type=hidden name=id value=$form->{id}>
 
 422 <input type=hidden name=sort value=$form->{sort}>
 
 423 <input type=hidden name=closedto value=$form->{closedto}>
 
 424 <input type=hidden name=locked value=$form->{locked}>
 
 425 <input type=hidden name=title value="$title">
 
 427 <input type="hidden" name="follow_up_trans_id_1" value="| . H($form->{id}) . qq|">
 
 428 <input type="hidden" name="follow_up_trans_type_1" value="ap_transaction">
 
 429 <input type="hidden" name="follow_up_trans_info_1" value="| . H($follow_up_trans_info) . qq|">
 
 430 <input type="hidden" name="follow_up_rowcount" value="1">
 
 432 | . ($form->{saved_message} ? qq|<p>$form->{saved_message}</p>| : "") . qq|
 
 436     <th class=listtop>$form->{title}</th>
 
 446                 <th align=right nowrap>| . $locale->text('Vendor') . qq|</th>
 
 447                 <td colspan=3>$vendor <input type="button" value="D" onclick="show_vc_details('vendor')"></td>
 
 448                 <input type=hidden name=selectvendor value="| . H($form->{selectvendor}) . qq|">
 
 449                 <input type=hidden name=oldvendor value="| . H($form->{oldvendor}) . qq|">
 
 450                 <input type=hidden name=vendor_id value="| . H($form->{vendor_id}) . qq|">
 
 451                 <input type=hidden name=terms value="| . H($form->{terms}) . qq|">
 
 458                       <th align=left nowrap>| . $locale->text('Credit Limit') . qq|</th>
 
 459                       <td>$form->{creditlimit}</td>
 
 460                       <th align=left nowrap>| . $locale->text('Remaining') . qq|</th>
 
 461                       <td class="plus$n">$form->{creditremaining}</td>
 
 462                       <input type=hidden name=creditlimit value=$form->{creditlimit}>
 
 463                       <input type=hidden name=creditremaining value=$form->{creditremaining}>
 
 468                 <th align=right nowrap>| . $locale->text('Currency') . qq|</th>
 
 469                 <td><select name=currency>$form->{selectcurrency}</select></td>
 
 470                 <input type=hidden name=selectcurrency value="$form->{selectcurrency}">
 
 471                 <input type=hidden name=defaultcurrency value=$form->{defaultcurrency}>
 
 472                 <input type=hidden name=fxgain_accno value=$form->{fxgain_accno}>
 
 473                 <input type=hidden name=fxloss_accno value=$form->{fxloss_accno}>
 
 483                 <th align=right nowrap>| . $locale->text('Invoice Number') . qq|</th>
 
 484                 <td><input name=invnumber size=11 value="$form->{invnumber}" $readonly></td>
 
 487                 <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
 
 488                 <td><input name=ordnumber size=11 value="$form->{ordnumber}" $readonly></td>
 
 491                 <th align=right nowrap>| . $locale->text('Invoice Date') . qq|</th>
 
 495                 <th align=right nowrap>| . $locale->text('Due Date') . qq|</th>
 
 508   <input type=hidden name=rowcount value=$form->{rowcount}>
 
 512            <tr class=listheading>
 
 513           <th class=listheading style="width:15%">|
 
 514     . $locale->text('Account') . qq|</th>
 
 515           <th class=listheading style="width:10%">|
 
 516     . $locale->text('Amount') . qq|</th>
 
 517           <th class=listheading style="width:10%">|
 
 518     . $locale->text('Tax') . qq|</th>
 
 519           <th class=listheading style="width:10%">|
 
 520     . $locale->text('Taxkey') . qq|</th>
 
 521           <th class=listheading style="width:10%">|
 
 522     . $locale->text('Project') . qq|</th>
 
 526   my $amount  = $locale->text('Amount');
 
 527   my $project = $locale->text('Project');
 
 529   for my $i (1 .. $form->{rowcount}) {
 
 532     $form->{"amount_$i"} =
 
 533       $form->format_amount(\%myconfig, $form->{"amount_$i"}, 2);
 
 534     $form->{"tax_$i"} = $form->format_amount(\%myconfig, $form->{"tax_$i"}, 2);
 
 536     my $selected_accno_full;
 
 537     my ($accno_row) = split(/--/, $form->{"AP_amount_$i"});
 
 538     my $item = $charts{$accno_row};
 
 539     $selected_accno_full = "$item->{accno}--$item->{tax_id}";
 
 541     my $selected_taxchart = $form->{"taxchart_$i"};
 
 542     my ($selected_accno, $selected_tax_id) = split(/--/, $selected_accno_full);
 
 543     my ($previous_accno, $previous_tax_id) = split(/--/, $form->{"previous_AP_amount_$i"});
 
 545     if ($previous_accno &&
 
 546         ($previous_accno eq $selected_accno) &&
 
 547         ($previous_tax_id ne $selected_tax_id)) {
 
 548       my $item = $taxcharts{$selected_tax_id};
 
 549       $selected_taxchart = "$item->{id}--$item->{rate}";
 
 552     $selected_taxchart = $taxchart_init unless ($form->{"taxchart_$i"});
 
 554     my $selectAP_amount =
 
 555       NTI($cgi->popup_menu('-name' => "AP_amount_$i",
 
 556                            '-id' => "AP_amount_$i",
 
 557                            '-style' => 'width:400px',
 
 558                            '-onChange' => "setTaxkey(this, $i)",
 
 559                            '-values' => \@AP_amount_values,
 
 560                            '-labels' => \%AP_amount_labels,
 
 561                            '-default' => $selected_accno_full))
 
 562       . $cgi->hidden('-name' => "previous_AP_amount_$i",
 
 563                      '-default' => $selected_accno_full);
 
 566       NTI($cgi->popup_menu('-name' => "taxchart_$i",
 
 567                            '-id' => "taxchart_$i",
 
 568                            '-style' => 'width:200px',
 
 569                            '-values' => \@taxchart_values,
 
 570                            '-labels' => \%taxchart_labels,
 
 571                            '-default' => $selected_taxchart))
 
 575       NTI($cgi->popup_menu('-name' => "project_id_$i",
 
 576                            '-values' => \@project_values,
 
 577                            '-labels' => \%project_labels,
 
 578                            '-default' => $form->{"project_id_$i"} ));
 
 582           <td>$selectAP_amount</td>
 
 583           <td><input name="amount_$i" size=10 value=$form->{"amount_$i"}></td>
 
 584           <td><input type="hidden" name="tax_$i" value="$form->{"tax_$i"}">$form->{"tax_$i"}</td>
 
 586           <td>$projectnumber</td>
 
 594     ($form->{taxincluded})
 
 595     ? $locale->text('Tax Included')
 
 596     : $locale->text('Tax');
 
 598   $form->{invtotal_unformatted} = $form->{invtotal};
 
 599   $form->{invtotal} = $form->format_amount(\%myconfig, $form->{invtotal}, 2);
 
 602     NTI($cgi->popup_menu('-name' => "APselected", '-id' => "APselected",
 
 603                          '-style' => 'width:400px',
 
 604                          '-values' => \@AP_values, '-labels' => \%AP_labels,
 
 605                          '-default' => $form->{APselected}));
 
 613           <td>${APselected}</td>
 
 614           <th align=left>$form->{invtotal}</th>
 
 616           <input type=hidden name=oldinvtotal value=$form->{oldinvtotal}>
 
 617           <input type=hidden name=oldtotalpaid value=$form->{oldtotalpaid}>
 
 619           <input type=hidden name=taxaccounts value="$form->{taxaccounts}">
 
 632           <th align=left width=1%>| . $locale->text('Notes') . qq|</th>
 
 633           <td align=left>$notes</td>
 
 641         <tr class=listheading>
 
 642           <th class=listheading colspan=7>| . $locale->text('Payments') . qq|</th>
 
 647   if ($form->{currency} eq $form->{defaultcurrency}) {
 
 648     @column_index = qw(datepaid source memo paid AP_paid paid_project_id);
 
 650     @column_index = qw(datepaid source memo paid exchangerate AP_paid paid_project_id);
 
 654   $column_data{datepaid}     = "<th>" . $locale->text('Date') . "</th>";
 
 655   $column_data{paid}         = "<th>" . $locale->text('Amount') . "</th>";
 
 656   $column_data{exchangerate} = "<th>" . $locale->text('Exch') . "</th>";
 
 657   $column_data{AP_paid}      = "<th>" . $locale->text('Account') . "</th>";
 
 658   $column_data{source}       = "<th>" . $locale->text('Source') . "</th>";
 
 659   $column_data{memo}         = "<th>" . $locale->text('Memo') . "</th>";
 
 660   $column_data{paid_project_id} = "<th>" . $locale->text('Project Number') . "</th>";
 
 665   map { print "$column_data{$_}\n" } @column_index;
 
 673   $form->{paidaccounts}++ if ($form->{"paid_$form->{paidaccounts}"});
 
 674   for my $i (1 .. $form->{paidaccounts}) {
 
 680       NTI($cgi->popup_menu('-name' => "AP_paid_$i",
 
 681                            '-id' => "AP_paid_$i",
 
 682                            '-values' => \@AP_paid_values,
 
 683                            '-labels' => \%AP_paid_labels,
 
 684                            '-default' => $form->{"AP_paid_$i"}));
 
 686     $totalpaid += $form->{"paid_$i"};
 
 689     if ($form->{"paid_$i"}) {
 
 691       $form->format_amount(\%myconfig, $form->{"paid_$i"}, 2);
 
 693     $form->{"exchangerate_$i"} =
 
 694       $form->format_amount(\%myconfig, $form->{"exchangerate_$i"});
 
 695     if ($form->{"exchangerate_$i"} == 0) {
 
 696       $form->{"exchangerate_$i"} = "";
 
 699     $exchangerate = qq| |;
 
 700     if ($form->{currency} ne $form->{defaultcurrency}) {
 
 701       if ($form->{"forex_$i"}) {
 
 703           qq|<input type=hidden name="exchangerate_$i" value=$form->{"exchangerate_$i"}>$form->{"exchangerate_$i"}|;
 
 706           qq|<input name="exchangerate_$i" size=10 value=$form->{"exchangerate_$i"}>|;
 
 711 <input type=hidden name="forex_$i" value=$form->{"forex_$i"}>
 
 714     $column_data{"paid_$i"} =
 
 715       qq|<td align=center><input name="paid_$i" size=11 value="$form->{"paid_$i"}" onBlur=\"check_right_number_format(this)\"></td>|;
 
 716     $column_data{"AP_paid_$i"} =
 
 717       qq|<td align=center>${selectAP_paid}</td>|;
 
 718     $column_data{"exchangerate_$i"} = qq|<td align=center>$exchangerate</td>|;
 
 719     $column_data{"datepaid_$i"}     =
 
 720       qq|<td align=center><input name="datepaid_$i" id="datepaid_$i" size=11 title="($myconfig{'dateformat'})" value="$form->{"datepaid_$i"}" onBlur=\"check_right_date_format(this)\">
 
 721          <input type="button" name="datepaid_$i" id="trigger_datepaid_$i" value="| . $locale->text('Details (one letter abbreviation)') . qq|"></td>|;
 
 722     $column_data{"source_$i"} =
 
 723       qq|<td align=center><input name="source_$i" size=11 value="$form->{"source_$i"}"></td>|;
 
 724     $column_data{"memo_$i"} =
 
 725       qq|<td align=center><input name="memo_$i" size=11 value="$form->{"memo_$i"}"></td>|;
 
 726     $column_data{"paid_project_id_$i"} =
 
 728       . NTI($cgi->popup_menu('-name' => "paid_project_id_$i",
 
 729                              '-values' => \@project_values,
 
 730                              '-labels' => \%project_labels,
 
 731                              '-default' => $form->{"paid_project_id_$i"} ))
 
 734     map { print qq|$column_data{"${_}_$i"}\n| } @column_index;
 
 739     push(@triggers, "datepaid_$i", "BL", "trigger_datepaid_$i");
 
 742   my $paid_missing = $form->{invtotal_unformatted} - $totalpaid;
 
 748           <td align="center">| . $locale->text('Total') . qq|</td>
 
 749           <td align="center">| . H($form->format_amount(\%myconfig, $totalpaid, 2)) . qq|</td>
 
 754           <td align="center">| . $locale->text('Missing amount') . qq|</td>
 
 755           <td align="center">| . H($form->format_amount(\%myconfig, $paid_missing, 2)) . qq|</td>
 
 757 | . $form->write_trigger(\%myconfig, scalar(@triggers) / 3, @triggers) .
 
 759     <input type=hidden name=paidaccounts value=$form->{paidaccounts}>
 
 765     <td><hr size=3 noshade></td>
 
 770   $main::lxdebug->leave_sub();
 
 774   $main::lxdebug->enter_sub();
 
 776   my $form     = $main::form;
 
 777   my %myconfig = %main::myconfig;
 
 778   my $locale   = $main::locale;
 
 779   my $cgi      = $main::cgi;
 
 781   $main::auth->assert('general_ledger');
 
 783   my $follow_ups_block;
 
 785     my $follow_ups = FU->follow_ups('trans_id' => $form->{id});
 
 787     if (@{ $follow_ups} ) {
 
 788       my $num_due       = sum map { $_->{due} * 1 } @{ $follow_ups };
 
 789       $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>|;
 
 797 <input name=callback type=hidden value="$form->{callback}">
 
 798 <input name="gldate" type="hidden" value="| . Q($form->{gldate}) . qq|">
 
 800 . $cgi->hidden('-name' => 'draft_id', '-default' => [$form->{draft_id}])
 
 801 . $cgi->hidden('-name' => 'draft_description', '-default' => [$form->{draft_description}])
 
 807   if (!$form->{id} && $form->{draft_id}) {
 
 808     print(NTI($cgi->checkbox('-name' => 'remove_draft', '-id' => 'remove_draft',
 
 809                              '-value' => 1, '-checked' => $form->{remove_draft},
 
 811           qq| <label for="remove_draft">| .
 
 812           $locale->text("Remove draft when posting") .
 
 816   my $transdate = $form->datetonum($form->{transdate}, \%myconfig);
 
 817   my $closedto  = $form->datetonum($form->{closedto},  \%myconfig);
 
 819   print qq|<input class="submit" type="submit" name="action" id="update_button" value="| . $locale->text('Update') . qq|">|;
 
 822     if ($form->{radier}) {
 
 823       print qq| <input class=submit type=submit name=action value="| . $locale->text('Post') . qq|">
 
 824                 <input class=submit type=submit name=action value="| . $locale->text('Delete') . qq|">
 
 827     # ToDO: - insert a global check for stornos, so that a storno is only possible a limited time after saving it
 
 829     print qq| <input class=submit type=submit name=action value="| . $locale->text('Storno') . qq|"> |
 
 830       if ($form->{id} && !IS->has_storno(\%myconfig, $form, 'ap') && !IS->is_storno(\%myconfig, $form, 'ap', $form->{id}) && (($total_paid == 0) || ($total_paid eq "")));
 
 832     print qq| <input class=submit type=submit name=action value="| . $locale->text('Post Payment') . qq|">
 
 833               <input class=submit type=submit name=action value="| . $locale->text('Use As Template') . qq|">
 
 834               <input type="button" class="submit" onclick="follow_up_window()" value="| . $locale->text('Follow-Up') . qq|">
 
 836   } elsif (($transdate > $closedto) && !$form->{id}) {
 
 838       <input class=submit type=submit name=action value="| . $locale->text('Post') . qq|"> | .
 
 839       NTI($cgi->submit('-name' => 'action', '-value' => $locale->text('Save draft'), '-class' => 'submit'));
 
 841   # button for saving history
 
 842   if($form->{id} ne "") {
 
 843     print qq| <input type="button" class="submit" onclick="set_history_window($form->{id});" name="history" id="history" value="| . $locale->text('history') . qq|"> |;
 
 845   # /button for saving history
 
 846   # mark_as_paid button
 
 847   if($form->{id} ne "") {
 
 848     print qq| <input type="submit" class="submit" name="action" value="| . $locale->text('mark as paid') . qq|"> |;
 
 850   # /mark_as_paid button
 
 858   $main::lxdebug->leave_sub();
 
 862   $main::lxdebug->enter_sub();
 
 864   my $form     = $main::form;
 
 865   my %myconfig = %main::myconfig;
 
 867   $main::auth->assert('general_ledger');
 
 869   &mark_as_paid_common(\%myconfig,"ap");
 
 871   $main::lxdebug->leave_sub();
 
 875   $main::lxdebug->enter_sub();
 
 877   my $form     = $main::form;
 
 878   my %myconfig = %main::myconfig;
 
 880   $main::auth->assert('general_ledger');
 
 884   $form->{invtotal} = 0;
 
 886   delete @{ $form }{ grep { m/^tax_\d+$/ } keys %{ $form } };
 
 888   map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) }
 
 889     qw(exchangerate creditlimit creditremaining);
 
 891   my @flds  = qw(amount AP_amount projectnumber oldprojectnumber project_id taxchart);
 
 893   my (@a, $j, $totaltax);
 
 894   for my $i (1 .. $form->{rowcount}) {
 
 895     $form->{"amount_$i"} =
 
 896       $form->parse_amount(\%myconfig, $form->{"amount_$i"});
 
 897     $form->{"tax_$i"} = $form->parse_amount(\%myconfig, $form->{"tax_$i"});
 
 898     if ($form->{"amount_$i"}) {
 
 901       my ($taxkey, $rate) = split(/--/, $form->{"taxchart_$i"});
 
 903         if ($form->{taxincluded}) {
 
 904           $form->{"tax_$i"} = $form->{"amount_$i"} / ($rate + 1) * $rate;
 
 906           $form->{"tax_$i"} = $form->{"amount_$i"} * $rate;
 
 909         $form->{"tax_$i"} = 0;
 
 911       $form->{"tax_$i"} = $form->round_amount($form->{"tax_$i"}, 2);
 
 913       $totaltax += $form->{"tax_$i"};
 
 914       map { $a[$j]->{$_} = $form->{"${_}_$i"} } @flds;
 
 918   $form->redo_rows(\@flds, \@a, $count, $form->{rowcount});
 
 920   map { $form->{invtotal} += $form->{"amount_$_"} } (1 .. $form->{rowcount});
 
 922   $form->{forex}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{transdate}, 'sell');
 
 923   $form->{exchangerate} = $form->{forex} if $form->{forex};
 
 925   $form->{invdate} = $form->{transdate};
 
 926   my %saved_variables = map +( $_ => $form->{$_} ), qw(AP AP_amount_1 taxchart_1);
 
 928   my $vendor_changed = &check_name("vendor");
 
 930   $form->{AP} = $saved_variables{AP};
 
 931   if ($saved_variables{AP_amount_1} =~ m/.--./) {
 
 932     map { $form->{$_} = $saved_variables{$_} } qw(AP_amount_1 taxchart_1);
 
 934     delete $form->{taxchart_1};
 
 937   $form->{rowcount} = $count + 1;
 
 940     ($form->{taxincluded}) ? $form->{invtotal} : $form->{invtotal} + $totaltax;
 
 943   for my $i (1 .. $form->{paidaccounts}) {
 
 944     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
 
 947           $form->parse_amount(\%myconfig, $form->{"${_}_$i"})
 
 948       } qw(paid exchangerate);
 
 950       $totalpaid += $form->{"paid_$i"};
 
 952       $form->{"forex_$i"}        = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'sell');
 
 953       $form->{"exchangerate_$i"} = $form->{"forex_$i"} if $form->{"forex_$i"};
 
 957   $form->{creditremaining} -=
 
 958     ($form->{invtotal} - $totalpaid + $form->{oldtotalpaid} -
 
 959      $form->{oldinvtotal});
 
 960   $form->{oldinvtotal}  = $form->{invtotal};
 
 961   $form->{oldtotalpaid} = $totalpaid;
 
 964   $form->{notes} = $form->{intnotes} if $vendor_changed;
 
 968   $main::lxdebug->leave_sub();
 
 973   $main::lxdebug->enter_sub();
 
 975   my $form     = $main::form;
 
 976   my %myconfig = %main::myconfig;
 
 977   my $locale   = $main::locale;
 
 979   $main::auth->assert('general_ledger');
 
 981   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
 
 984   for my $i (1 .. $form->{paidaccounts}) {
 
 985     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
 
 986       my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
 
 988       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
 
 990       $form->error($locale->text('Cannot post payment for a closed period!'))
 
 991         if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
 
 993       if ($form->{currency} ne $form->{defaultcurrency}) {
 
 994         $form->{"exchangerate_$i"} = $form->{exchangerate}
 
 995           if ($invdate == $datepaid);
 
 996         $form->isblank("exchangerate_$i",
 
 997                        $locale->text('Exchangerate for payment missing!'));
 
1002   ($form->{AP})      = split /--/, $form->{AP};
 
1003   ($form->{AP_paid}) = split /--/, $form->{AP_paid};
 
1004   $form->redirect($locale->text('Payment posted!'))
 
1005       if (AP->post_payment(\%myconfig, \%$form));
 
1006     $form->error($locale->text('Cannot post payment!'));
 
1009   $main::lxdebug->leave_sub();
 
1014   $main::lxdebug->enter_sub();
 
1016   my $form     = $main::form;
 
1017   my %myconfig = %main::myconfig;
 
1018   my $locale   = $main::locale;
 
1020   $main::auth->assert('general_ledger');
 
1022   # check if there is a vendor, invoice and due date
 
1023   $form->isblank("transdate", $locale->text("Invoice Date missing!"));
 
1024   $form->isblank("duedate",   $locale->text("Due Date missing!"));
 
1025   $form->isblank("vendor",    $locale->text('Vendor missing!'));
 
1027   my $closedto  = $form->datetonum($form->{closedto},  \%myconfig);
 
1028   my $transdate = $form->datetonum($form->{transdate}, \%myconfig);
 
1029   $form->error($locale->text('Cannot post transaction for a closed period!')) if ($form->date_closed($form->{"transdate"}, \%myconfig));
 
1031   my $zero_amount_posting = 1;
 
1032   for my $i (1 .. $form->{rowcount}) {
 
1033     if ($form->parse_amount(\%myconfig, $form->{"amount_$i"})) {
 
1034       $zero_amount_posting = 0;
 
1039   $form->error($locale->text('Zero amount posting!')) if $zero_amount_posting;
 
1041   $form->isblank("exchangerate", $locale->text('Exchangerate missing!'))
 
1042     if ($form->{currency} ne $form->{defaultcurrency});
 
1043   delete($form->{AP});
 
1045   for my $i (1 .. $form->{paidaccounts}) {
 
1046     if ($form->parse_amount(\%myconfig, $form->{"paid_$i"})) {
 
1047       my $datepaid = $form->datetonum($form->{"datepaid_$i"}, \%myconfig);
 
1049       $form->isblank("datepaid_$i", $locale->text('Payment date missing!'));
 
1051       $form->error($locale->text('Cannot post payment for a closed period!'))
 
1052         if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
 
1054       if ($form->{currency} ne $form->{defaultcurrency}) {
 
1055         $form->{"exchangerate_$i"} = $form->{exchangerate}
 
1056           if ($transdate == $datepaid);
 
1057         $form->isblank("exchangerate_$i",
 
1058                        $locale->text('Exchangerate for payment missing!'));
 
1064   # if old vendor ne vendor redo form
 
1065   my ($vendor) = split /--/, $form->{vendor};
 
1066   if ($form->{oldvendor} ne "$vendor--$form->{vendor_id}") {
 
1070   my ($debitaccno,    $debittaxkey)    = split /--/, $form->{AP_amountselected};
 
1071   my ($taxkey,        $NULL)           = split /--/, $form->{taxchartselected};
 
1072   my ($payablesaccno, $payablestaxkey) = split /--/, $form->{APselected};
 
1073   $form->{AP}{amount_1} = $debitaccno;
 
1074   $form->{AP}{payables} = $payablesaccno;
 
1075   $form->{taxkey}       = $taxkey;
 
1076   $form->{storno}       = 0;
 
1078   $form->{id} = 0 if $form->{postasnew};
 
1080   if (AP->post_transaction(\%myconfig, \%$form)) {
 
1081     # saving the history
 
1082     if(!exists $form->{addition} && $form->{id} ne "") {
 
1083       $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
 
1084       $form->{addition} = "POSTED";
 
1085       $form->save_history($form->dbconnect(\%myconfig));
 
1087     # /saving the history
 
1088     remove_draft() if $form->{remove_draft};
 
1089     $form->redirect($locale->text('Transaction posted!'));
 
1091   $form->error($locale->text('Cannot post transaction!'));
 
1093   $main::lxdebug->leave_sub();
 
1097   $main::lxdebug->enter_sub();
 
1099   my $form     = $main::form;
 
1100   my %myconfig = %main::myconfig;
 
1102   $main::auth->assert('general_ledger');
 
1104   $form->{postasnew} = 1;
 
1105   # saving the history
 
1106   if(!exists $form->{addition} && $form->{id} ne "") {
 
1107     $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
 
1108         $form->{addition} = "POSTED AS NEW";
 
1109         $form->save_history($form->dbconnect(\%myconfig));
 
1111   # /saving the history
 
1114   $main::lxdebug->leave_sub();
 
1117 sub use_as_template {
 
1118   $main::lxdebug->enter_sub();
 
1120   my $form     = $main::form;
 
1121   my %myconfig = %main::myconfig;
 
1123   $main::auth->assert('general_ledger');
 
1125   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);
 
1126   $form->{paidaccounts} = 1;
 
1127   $form->{rowcount}--;
 
1128   $form->{invdate} = $form->current_date(\%myconfig);
 
1131   $main::lxdebug->leave_sub();
 
1135   $main::lxdebug->enter_sub();
 
1137   my $form     = $main::form;
 
1138   my $locale   = $main::locale;
 
1140   $main::auth->assert('general_ledger');
 
1142   $form->{title} = $locale->text('Confirm!');
 
1146   delete $form->{header};
 
1151 <form method=post action=$form->{script}>
 
1154   foreach my $key (keys %$form) {
 
1155     next if (($key eq 'login') || ($key eq 'password') || ('' ne ref $form->{$key}));
 
1156     $form->{$key} =~ s/\"/"/g;
 
1157     print qq|<input type=hidden name=$key value="$form->{$key}">\n|;
 
1161 <h2 class=confirm>$form->{title}</h2>
 
1164     . $locale->text('Are you sure you want to delete Transaction')
 
1165     . qq| $form->{invnumber}</h4>
 
1167 <input name=action class=submit type=submit value="|
 
1168     . $locale->text('Yes') . qq|">
 
1175   $main::lxdebug->leave_sub();
 
1179   $main::lxdebug->enter_sub();
 
1181   my $form     = $main::form;
 
1182   my %myconfig = %main::myconfig;
 
1183   my $locale   = $main::locale;
 
1185   $main::auth->assert('general_ledger');
 
1187   if (AP->delete_transaction(\%myconfig, \%$form, $main::spool)) {
 
1188     # saving the history
 
1189     if(!exists $form->{addition}) {
 
1190       $form->{snumbers} = qq|invnumber_| . $form->{invnumber};
 
1191           $form->{addition} = "DELETED";
 
1192       $form->save_history($form->dbconnect(\%myconfig));
 
1194     # /saving the history
 
1195     $form->redirect($locale->text('Transaction deleted!'));
 
1197   $form->error($locale->text('Cannot delete transaction!'));
 
1199   $main::lxdebug->leave_sub();
 
1203   $main::lxdebug->enter_sub();
 
1205   my $form     = $main::form;
 
1206   my %myconfig = %main::myconfig;
 
1207   my $locale   = $main::locale;
 
1208   my $cgi      = $main::cgi;
 
1210   $main::auth->assert('general_ledger | vendor_invoice_edit');
 
1212   # setup vendor selection
 
1213   $form->all_vc(\%myconfig, "vendor", "AP");
 
1216   if (@{ $form->{all_vendor} || [] }) {
 
1217     map { $vendor .= "<option>$_->{name}--$_->{id}\n" }
 
1218       @{ $form->{all_vendor} };
 
1219     $vendor = qq|<select name=vendor><option>\n$vendor\n</select>|;
 
1221     $vendor = qq|<input name=vendor size=35>|;
 
1225   if (@{ $form->{all_departments} }) {
 
1226     $form->{selectdepartment} = "<option>\n";
 
1229       $form->{selectdepartment} .=
 
1230         "<option>$_->{description}--$_->{id}\n"
 
1231     } (@{ $form->{all_departments} });
 
1234   my $department = qq|
 
1236           <th align=right nowrap>| . $locale->text('Department') . qq|</th>
 
1237           <td colspan=3><select name=department>$form->{selectdepartment}</select></td>
 
1239 | if $form->{selectdepartment};
 
1241   $form->{title} = $locale->text('AP Transactions');
 
1243   # use JavaScript Calendar or not
 
1244   $form->{jsscript} = 1;
 
1246   my ($button1, $button2);
 
1247   if ($form->{jsscript}) {
 
1249     # with JavaScript Calendar
 
1251        <td><input name=transdatefrom id=transdatefrom size=11 title="$myconfig{dateformat}" onBlur=\"check_right_date_format(this)\">
 
1252        <input type=button name=transdatefrom id="trigger1" value=|
 
1253       . $locale->text('button') . qq|></td>
 
1256        <td><input name=transdateto id=transdateto size=11 title="$myconfig{dateformat}" onBlur=\"check_right_date_format(this)\">
 
1257        <input type=button name=transdateto name=transdateto id="trigger2" value=|
 
1258       . $locale->text('button') . qq|></td>
 
1263       Form->write_trigger(\%myconfig, "2", "transdatefrom", "BR", "trigger1",
 
1264                           "transdateto", "BL", "trigger2");
 
1267     # without JavaScript Calendar
 
1269                               <td><input name=transdatefrom id=transdatefrom size=11 title="$myconfig{dateformat}" onBlur=\"check_right_date_format(this)\"></td>|;
 
1271                               <td><input name=transdateto id=transdateto size=11 title="$myconfig{dateformat}" onBlur=\"check_right_date_format(this)\"></td>|;
 
1274   $form->get_lists("projects" => { "key" => "ALL_PROJECTS",
 
1279   foreach my $item (@{ $form->{"ALL_PROJECTS"} }) {
 
1280     push(@values, $item->{"id"});
 
1281     $labels{$item->{"id"}} = $item->{"projectnumber"};
 
1284     NTI($cgi->popup_menu('-name' => 'project_id', '-values' => \@values,
 
1285                          '-labels' => \%labels));
 
1286   $form->{javascript} .= qq|<script type="text/javascript" src="js/common.js"></script>|;
 
1288   my $onload = qq|;setupDateFormat('|. $myconfig{dateformat} .qq|', '|. $locale->text("Falsches Datumsformat!") .qq|')|;
 
1289   $onload .= qq|;setupPoints('|. $myconfig{numberformat} .qq|', '|. $locale->text("wrongformat") .qq|')|;
 
1291 <body onLoad="$onload">
 
1293 <form method=post action=$form->{script}>
 
1297     <th class=listtop>$form->{title}</th>
 
1299   <tr height="5"></tr>
 
1304           <th align=right>| . $locale->text('Vendor') . qq|</th>
 
1305           <td colspan=3>$vendor</td>
 
1309           <th align=right nowrap>| . $locale->text('Invoice Number') . qq|</th>
 
1310           <td colspan=3><input name=invnumber size=20></td>
 
1313           <th align=right nowrap>| . $locale->text('Order Number') . qq|</th>
 
1314           <td colspan=3><input name=ordnumber size=20></td>
 
1317           <th align=right nowrap>| . $locale->text('Notes') . qq|</th>
 
1318           <td colspan=3><input name=notes size=40></td>
 
1321           <th align="right">| . $locale->text("Project Number") . qq|</th>
 
1322           <td colspan="3">$projectnumber</td>
 
1325           <th align=right nowrap>| . $locale->text('From') . qq|</th>
 
1327           <th align=right>| . $locale->text('Bis') . qq|</th>
 
1330         <input type=hidden name=sort value=transdate>
 
1338           <th align=right nowrap>| . $locale->text('Include in Report') . qq|</th>
 
1342                 <td align=right><input name=open class=checkbox type=checkbox value=Y checked></td>
 
1343                 <td nowrap>| . $locale->text('Open') . qq|</td>
 
1344                 <td align=right><input name=closed class=checkbox type=checkbox value=Y></td>
 
1345                 <td nowrap>| . $locale->text('Closed') . qq|</td>
 
1348                 <td align=right><input name="l_id" class=checkbox type=checkbox value=Y></td>
 
1349                 <td nowrap>| . $locale->text('ID') . qq|</td>
 
1350                 <td align=right><input name="l_invnumber" class=checkbox type=checkbox value=Y checked></td>
 
1351                 <td nowrap>| . $locale->text('Invoice Number') . qq|</td>
 
1352                 <td align=right><input name="l_ordnumber" class=checkbox type=checkbox value=Y></td>
 
1353                 <td nowrap>| . $locale->text('Order Number') . qq|</td>
 
1356                 <td align=right><input name="l_name" class=checkbox type=checkbox value=Y checked></td>
 
1357                 <td nowrap>| . $locale->text('Vendor') . qq|</td>
 
1358                 <td align=right><input name="l_transdate" class=checkbox type=checkbox value=Y checked></td>
 
1359                 <td nowrap>| . $locale->text('Invoice Date') . qq|</td>
 
1360                 <td align=right><input name="l_netamount" class=checkbox type=checkbox value=Y></td>
 
1361                 <td nowrap>| . $locale->text('Amount') . qq|</td>
 
1364                 <td align=right><input name="l_tax" class=checkbox type=checkbox value=Y></td>
 
1365                 <td nowrap>| . $locale->text('Tax') . qq|</td>
 
1366                 <td align=right><input name="l_amount" class=checkbox type=checkbox value=Y checked></td>
 
1367                 <td nowrap>| . $locale->text('Total') . qq|</td>
 
1368                 <td align=right><input name="l_datepaid" class=checkbox type=checkbox value=Y></td>
 
1369                 <td nowrap>| . $locale->text('Date Paid') . qq|</td>
 
1372                 <td align=right><input name="l_paid" class=checkbox type=checkbox value=Y checked></td>
 
1373                 <td nowrap>| . $locale->text('Paid') . qq|</td>
 
1374                 <td align=right><input name="l_duedate" class=checkbox type=checkbox value=Y></td>
 
1375                 <td nowrap>| . $locale->text('Due Date') . qq|</td>
 
1376                 <td align=right><input name="l_due" class=checkbox type=checkbox value=Y></td>
 
1377                 <td nowrap>| . $locale->text('Amount Due') . qq|</td>
 
1380                 <td align=right><input name="l_notes" class=checkbox type=checkbox value=Y></td>
 
1381                 <td nowrap>| . $locale->text('Notes') . qq|</td>
 
1382                 <td align=right><input name="l_employee" class=checkbox type=checkbox value=Y></td>
 
1383                 <td nowrap>| . $locale->text('Employee') . qq|</td>
 
1386                 <td align=right><input name="l_subtotal" class=checkbox type=checkbox value=Y></td>
 
1387                 <td nowrap>| . $locale->text('Subtotal') . qq|</td>
 
1388                 <td align=right><input name="l_globalprojectnumber" class=checkbox type=checkbox value=Y></td>
 
1389                 <td nowrap>| . $locale->text('Project Number') . qq|</td>
 
1392         <td colspan=4 align=left><b>| . $locale->text('Vendor') . qq| </td>
 
1395                 <td align=right><input name="l_vendornumber" class=checkbox type=checkbox value=Y></td>
 
1396                 <td nowrap>| . $locale->text('Vendor Number') . qq|</td>
 
1397                 <td align=right><input name="l_country" class=checkbox type=checkbox value=Y></td>
 
1398                 <td nowrap>| . $locale->text('Country') . qq|</td>
 
1399                 <td align=right><input name="l_ustid" class=checkbox type=checkbox value=Y></td>
 
1400                 <td nowrap>| . $locale->text('USt-IdNr.') . qq|</td>
 
1401                 <td align=right><input name="l_taxzone" class=checkbox type=checkbox value=Y></td>
 
1402                 <td nowrap>| . $locale->text('Steuersatz') . qq|</td>
 
1405                 <td align=right><input name="l_payment_terms" class=checkbox type=checkbox value=Y></td>
 
1406                 <td nowrap>| . $locale->text('Payment Terms') . qq|</td>
 
1407                 <td align=right><input name="l_charts" class=checkbox type=checkbox value=Y></td>
 
1408                 <td nowrap>| . $locale->text('Buchungskonto') . qq|</td>
 
1417     <td><hr size=3 noshade></td>
 
1424 <input type=hidden name=nextsub value=$form->{nextsub}>
 
1426 <input class=submit type=submit name=action value="|
 
1427     . $locale->text('Continue') . qq|">
 
1434   $main::lxdebug->leave_sub();
 
1437 sub create_subtotal_row {
 
1438   $main::lxdebug->enter_sub();
 
1440   my ($totals, $columns, $column_alignment, $subtotal_columns, $class) = @_;
 
1442   my $form     = $main::form;
 
1443   my %myconfig = %main::myconfig;
 
1445   my $row = { map { $_ => { 'data' => '', 'class' => $class, 'align' => $column_alignment->{$_}, } } @{ $columns } };
 
1447   map { $row->{$_}->{data} = $form->format_amount(\%myconfig, $totals->{$_}, 2) } @{ $subtotal_columns };
 
1449   $row->{tax}->{data} = $form->format_amount(\%myconfig, $totals->{amount} - $totals->{netamount}, 2);
 
1451   map { $totals->{$_} = 0 } @{ $subtotal_columns };
 
1453   $main::lxdebug->leave_sub();
 
1458 sub ap_transactions {
 
1459   $main::lxdebug->enter_sub();
 
1461   my $form     = $main::form;
 
1462   my %myconfig = %main::myconfig;
 
1463   my $locale   = $main::locale;
 
1465   $main::auth->assert('general_ledger | vendor_invoice_edit');
 
1467   ($form->{vendor}, $form->{vendor_id}) = split(/--/, $form->{vendor});
 
1469   report_generator_set_default_sort('transdate', 1);
 
1471   AP->ap_transactions(\%myconfig, \%$form);
 
1473   $form->{title} = $locale->text('AP Transactions');
 
1475   my $report = SL::ReportGenerator->new(\%myconfig, $form);
 
1478     qw(transdate id type invnumber ordnumber name netamount tax amount paid datepaid
 
1479        due duedate transaction_description notes employee globalprojectnumber
 
1480        vendornumber country ustid taxzone payment_terms charts);
 
1482   my @hidden_variables = map { "l_${_}" } @columns;
 
1483   push @hidden_variables, "l_subtotal", qw(open closed vendor invnumber ordnumber transaction_description notes project_id transdatefrom transdateto);
 
1485   my $href = build_std_url('action=ap_transactions', grep { $form->{$_} } @hidden_variables);
 
1488     'transdate'               => { 'text' => $locale->text('Date'), },
 
1489     'id'                      => { 'text' => $locale->text('ID'), },
 
1490     'type'                    => { 'text' => $locale->text('Type'), },
 
1491     'invnumber'               => { 'text' => $locale->text('Invoice'), },
 
1492     'ordnumber'               => { 'text' => $locale->text('Order'), },
 
1493     'name'                    => { 'text' => $locale->text('Vendor'), },
 
1494     'netamount'               => { 'text' => $locale->text('Amount'), },
 
1495     'tax'                     => { 'text' => $locale->text('Tax'), },
 
1496     'amount'                  => { 'text' => $locale->text('Total'), },
 
1497     'paid'                    => { 'text' => $locale->text('Paid'), },
 
1498     'datepaid'                => { 'text' => $locale->text('Date Paid'), },
 
1499     'due'                     => { 'text' => $locale->text('Amount Due'), },
 
1500     'duedate'                 => { 'text' => $locale->text('Due Date'), },
 
1501     'transaction_description' => { 'text' => $locale->text('Transaction description'), },
 
1502     'notes'                   => { 'text' => $locale->text('Notes'), },
 
1503     'employee'                => { 'text' => $locale->text('Salesperson'), },
 
1504     'globalprojectnumber'     => { 'text' => $locale->text('Project Number'), },
 
1505     'vendornumber'            => { 'text' => $locale->text('Vendor Number'), },
 
1506     'country'                 => { 'text' => $locale->text('Country'), },
 
1507     'ustid'                   => { 'text' => $locale->text('USt-IdNr.'), },
 
1508     'taxzone'                 => { 'text' => $locale->text('Steuersatz'), },
 
1509     'payment_terms'           => { 'text' => $locale->text('Payment Terms'), },
 
1510     'charts'                  => { 'text' => $locale->text('Buchungskonto'), },
 
1513   foreach my $name (qw(id transdate duedate invnumber ordnumber name datepaid employee shippingpoint shipvia transaction_description)) {
 
1514     my $sortdir                 = $form->{sort} eq $name ? 1 - $form->{sortdir} : $form->{sortdir};
 
1515     $column_defs{$name}->{link} = $href . "&sort=$name&sortdir=$sortdir";
 
1518   my %column_alignment = map { $_ => 'right' } qw(netamount tax amount paid due);
 
1520   $form->{"l_type"} = "Y";
 
1521   map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
 
1523   $report->set_columns(%column_defs);
 
1524   $report->set_column_order(@columns);
 
1526   $report->set_export_options('ap_transactions', @hidden_variables, qw(sort sortdir));
 
1528   $report->set_sort_indicator($form->{sort}, $form->{sortdir});
 
1531   push @options, $locale->text('Vendor')                  . " : $form->{vendor}"                         if ($form->{vendor});
 
1532   push @options, $locale->text('Department')              . " : " . (split /--/, $form->{department})[0] if ($form->{department});
 
1533   push @options, $locale->text('Invoice Number')          . " : $form->{invnumber}"                      if ($form->{invnumber});
 
1534   push @options, $locale->text('Order Number')            . " : $form->{ordnumber}"                      if ($form->{ordnumber});
 
1535   push @options, $locale->text('Notes')                   . " : $form->{notes}"                          if ($form->{notes});
 
1536   push @options, $locale->text('Transaction description') . " : $form->{transaction_description}"        if ($form->{transaction_description});
 
1537   push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1)      if ($form->{transdatefrom});
 
1538   push @options, $locale->text('Bis')  . " " . $locale->date(\%myconfig, $form->{transdateto},   1)      if ($form->{transdateto});
 
1539   push @options, $locale->text('Open')                                                                   if ($form->{open});
 
1540   push @options, $locale->text('Closed')                                                                 if ($form->{closed});
 
1542   $report->set_options('top_info_text'        => join("\n", @options),
 
1543                        'raw_bottom_info_text' => $form->parse_html_template('ap/ap_transactions_bottom'),
 
1544                        'output_format'        => 'HTML',
 
1545                        'title'                => $form->{title},
 
1546                        'attachment_basename'  => $locale->text('vendor_invoice_list') . strftime('_%Y%m%d', localtime time),
 
1548   $report->set_options_from_form();
 
1550   # add sort and escape callback, this one we use for the add sub
 
1551   $form->{callback} = $href .= "&sort=$form->{sort}";
 
1553   # escape callback for href
 
1554   my $callback = $form->escape($href);
 
1556   my @subtotal_columns = qw(netamount amount paid due);
 
1558   my %totals    = map { $_ => 0 } @subtotal_columns;
 
1559   my %subtotals = map { $_ => 0 } @subtotal_columns;
 
1563   foreach my $ap (@{ $form->{AP} }) {
 
1564     $ap->{tax} = $ap->{amount} - $ap->{netamount};
 
1565     $ap->{due} = $ap->{amount} - $ap->{paid};
 
1567     map { $subtotals{$_} += $ap->{$_};
 
1568           $totals{$_}    += $ap->{$_} } @subtotal_columns;
 
1570     map { $ap->{$_} = $form->format_amount(\%myconfig, $ap->{$_}, 2) } qw(netamount tax amount paid due);
 
1572     my $is_storno  = $ap->{storno} &&  $ap->{storno_id};
 
1573     my $has_storno = $ap->{storno} && !$ap->{storno_id};
 
1575     if ($ap->{invoice}) {
 
1577           $has_storno       ? $locale->text("Invoice with Storno (abbreviation)")
 
1578         : $is_storno        ? $locale->text("Storno (one letter abbreviation)")
 
1579         :                     $locale->text("Invoice (one letter abbreviation)");
 
1582           $has_storno       ? $locale->text("AP Transaction with Storno (abbreviation)")
 
1583         : $is_storno        ? $locale->text("AP Transaction Storno (one letter abbreviation)")
 
1584         :                     $locale->text("AP Transaction (abbreviation)");
 
1589     foreach my $column (@columns) {
 
1591         'data'  => $ap->{$column},
 
1592         'align' => $column_alignment{$column},
 
1596     $row->{invnumber}->{link} = build_std_url("script=" . ($ap->{invoice} ? 'ir.pl' : 'ap.pl'), 'action=edit')
 
1597       . "&id=" . E($ap->{id}) . "&callback=${callback}";
 
1599     my $row_set = [ $row ];
 
1601     if (($form->{l_subtotal} eq 'Y')
 
1602         && (($idx == (scalar @{ $form->{AP} } - 1))
 
1603             || ($ap->{ $form->{sort} } ne $form->{AP}->[$idx + 1]->{ $form->{sort} }))) {
 
1604       push @{ $row_set }, create_subtotal_row(\%subtotals, \@columns, \%column_alignment, \@subtotal_columns, 'listsubtotal');
 
1607     $report->add_data($row_set);
 
1612   $report->add_separator();
 
1613   $report->add_data(create_subtotal_row(\%totals, \@columns, \%column_alignment, \@subtotal_columns, 'listtotal'));
 
1615   $report->generate_with_headers();
 
1617   $main::lxdebug->leave_sub();
 
1621   $main::lxdebug->enter_sub();
 
1623   my $form     = $main::form;
 
1624   my %myconfig = %main::myconfig;
 
1625   my $locale   = $main::locale;
 
1627   $main::auth->assert('general_ledger');
 
1629   if (IS->has_storno(\%myconfig, $form, 'ap')) {
 
1630     $form->{title} = $locale->text("Cancel Accounts Payables Transaction");
 
1631     $form->error($locale->text("Transaction has already been cancelled!"));
 
1634   AP->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   $main::lxdebug->leave_sub();