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
 
  17 # This program is free software; you can redistribute it and/or modify
 
  18 # it under the terms of the GNU General Public License as published by
 
  19 # the Free Software Foundation; either version 2 of the License, or
 
  20 # (at your option) any later version.
 
  22 # This program is distributed in the hope that it will be useful,
 
  23 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 
  24 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
  25 # GNU General Public License for more details.
 
  26 # You should have received a copy of the GNU General Public License
 
  27 # along with this program; if not, write to the Free Software
 
  28 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 
  30 #======================================================================
 
  32 # Accounts Receivable module backend routines
 
  34 #======================================================================
 
  39 use SL::DATEV qw(:CONSTANTS);
 
  45 use SL::Util qw(trim);
 
  50 sub post_transaction {
 
  51   my ($self, $myconfig, $form, $provided_dbh, $payments_only) = @_;
 
  52   $main::lxdebug->enter_sub();
 
  54   my $rc = SL::DB->client->with_transaction(\&_post_transaction, $self, $myconfig, $form, $provided_dbh, $payments_only);
 
  56   $::lxdebug->leave_sub;
 
  60 sub _post_transaction {
 
  61   my ($self, $myconfig, $form, $provided_dbh, $payments_only) = @_;
 
  63   my ($query, $sth, $null, $taxrate, $amount, $tax);
 
  69   my $dbh = $provided_dbh || SL::DB->client->dbh;
 
  70   $form->{defaultcurrency} = $form->get_default_currency($myconfig);
 
  73   $form->{exchangerate} = ($form->{currency} eq $form->{defaultcurrency}) ? 1 :
 
  74       ( $form->check_exchangerate($myconfig, $form->{currency}, $form->{transdate}, 'buy') ||
 
  75         $form->parse_amount($myconfig, $form->{exchangerate}) );
 
  77   # get the charts selected
 
  78   $form->{AR_amounts}{"amount_$_"} = $form->{"AR_amount_chart_id_$_"} for (1 .. $form->{rowcount});
 
  80   $form->{tax}       = 0; # is this still needed?
 
  82   # main calculation of rowcount loop inside Form method, amount_$i and tax_$i get formatted
 
  83   $form->{taxincluded} = 0 unless $form->{taxincluded};
 
  84   ($form->{netamount},$form->{total_tax},$form->{amount}) = $form->calculate_arap('sell', $form->{taxincluded}, $form->{exchangerate});
 
  86   # adjust paidaccounts if there is no date in the last row
 
  87   # this does not apply to stornos, where the paid field is set manually
 
  88   unless ($form->{storno}) {
 
  89     $form->{paidaccounts}-- unless $form->{"datepaid_$form->{paidaccounts}"};
 
  93     for $i (1 .. $form->{paidaccounts}) {
 
  94       $form->{"paid_$i"} = $form->round_amount($form->parse_amount($myconfig, $form->{"paid_$i"}), 2);
 
  95       $form->{paid}     += $form->{"paid_$i"};
 
  96       $form->{datepaid}  = $form->{"datepaid_$i"};
 
 100   $form->{paid}   = $form->round_amount($form->{paid} * ($form->{exchangerate} || 1), 2);
 
 102   $form->get_employee($dbh) unless $form->{employee_id};
 
 104   # if we have an id delete old records else make one
 
 105   if (!$payments_only) {
 
 107       # delete detail records
 
 108       $query = qq|DELETE FROM acc_trans WHERE trans_id = ?|;
 
 109       do_query($form, $dbh, $query, $form->{id});
 
 112       $query = qq|SELECT nextval('glid')|;
 
 113       ($form->{id}) = selectrow_query($form, $dbh, $query);
 
 114       $query = qq|INSERT INTO ar (id, invnumber, employee_id, currency_id, taxzone_id) VALUES (?, 'dummy', ?, (SELECT id FROM currencies WHERE name=?), (SELECT taxzone_id FROM customer WHERE id = ?))|;
 
 115       do_query($form, $dbh, $query, $form->{id}, $form->{employee_id}, $form->{currency}, $form->{customer_id});
 
 116       if (!$form->{invnumber}) {
 
 117         my $trans_number   = SL::TransNumber->new(type => 'invoice', dbh => $dbh, number => $form->{partnumber}, id => $form->{id});
 
 118         $form->{invnumber} = $trans_number->create_unique;
 
 123   # amount for AR account
 
 124   $form->{receivables} = $form->round_amount($form->{amount}, 2) * -1;
 
 126   # update exchangerate
 
 127   $form->update_exchangerate($dbh, $form->{currency}, $form->{transdate}, $form->{exchangerate}, 0)
 
 128     if ($form->{currency} ne $form->{defaultcurrency}) && !$form->check_exchangerate($myconfig, $form->{currency}, $form->{transdate}, 'buy');
 
 130   if (!$payments_only) {
 
 133            invnumber = ?, ordnumber = ?, transdate = ?, customer_id = ?,
 
 134            taxincluded = ?, amount = ?, duedate = ?, paid = ?,
 
 135            currency_id = (SELECT id FROM currencies WHERE name = ?),
 
 136            netamount = ?, notes = ?, department_id = ?,
 
 137            employee_id = ?, storno = ?, storno_id = ?, globalproject_id = ?,
 
 140     my @values = ($form->{invnumber}, $form->{ordnumber}, conv_date($form->{transdate}), conv_i($form->{customer_id}), $form->{taxincluded} ? 't' : 'f', $form->{amount},
 
 141                   conv_date($form->{duedate}), $form->{paid},
 
 143                   $form->{netamount}, $form->{notes}, conv_i($form->{department_id}),
 
 144                   conv_i($form->{employee_id}), $form->{storno} ? 't' : 'f', $form->{storno_id},
 
 145                   conv_i($form->{globalproject_id}), $form->{direct_debit} ? 't' : 'f', conv_i($form->{id}));
 
 146     do_query($form, $dbh, $query, @values);
 
 148     # add individual transactions for AR, amount and taxes
 
 149     for $i (1 .. $form->{rowcount}) {
 
 150       if ($form->{"amount_$i"} != 0) {
 
 151         my $project_id = conv_i($form->{"project_id_$i"});
 
 153         # insert detail records in acc_trans
 
 154         $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, project_id, taxkey, tax_id, chart_link)
 
 155                      VALUES (?, ?, ?, ?, ?, ?, ?, (SELECT c.link FROM chart c WHERE c.id = ?))|;
 
 156         @values = (conv_i($form->{id}), $form->{AR_amounts}{"amount_$i"}, conv_i($form->{"amount_$i"}), conv_date($form->{transdate}), $project_id,
 
 157                    conv_i($form->{"taxkey_$i"}), conv_i($form->{"tax_id_$i"}), $form->{AR_amounts}{"amount_$i"});
 
 158         do_query($form, $dbh, $query, @values);
 
 160         if ($form->{"tax_$i"} != 0) {
 
 161           # insert detail records in acc_trans
 
 162           $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, project_id, taxkey, tax_id, chart_link)
 
 163                        VALUES (?, (SELECT c.id FROM chart c WHERE c.accno = ?), ?, ?, ?, ?, ?, (SELECT c.link FROM chart c WHERE c.accno = ?))|;
 
 164           @values = (conv_i($form->{id}), $form->{AR_amounts}{"tax_$i"}, conv_i($form->{"tax_$i"}), conv_date($form->{transdate}), $project_id,
 
 165                      conv_i($form->{"taxkey_$i"}), conv_i($form->{"tax_id_$i"}), $form->{AR_amounts}{"tax_$i"});
 
 166           do_query($form, $dbh, $query, @values);
 
 172     $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, taxkey, tax_id, chart_link)
 
 173                  VALUES (?, ?, ?, ?, (SELECT taxkey_id FROM chart WHERE id = ?),
 
 178                   ORDER BY startdate DESC LIMIT 1),
 
 179                  (SELECT c.link FROM chart c WHERE c.id = ?))|;
 
 180     @values = (conv_i($form->{id}), $form->{AR_chart_id}, conv_i($form->{receivables}), conv_date($form->{transdate}),
 
 181                 $form->{AR_chart_id}, $form->{AR_chart_id}, conv_date($form->{transdate}), $form->{AR_chart_id});
 
 182     do_query($form, $dbh, $query, @values);
 
 185     # Record paid amount.
 
 186     $query = qq|UPDATE ar SET paid = ?, datepaid = ? WHERE id = ?|;
 
 187     do_query($form, $dbh, $query,  $form->{paid}, $form->{paid} ? conv_date($form->{datepaid}) : undef, conv_i($form->{id}));
 
 190   $form->new_lastmtime('ar');
 
 192   # add paid transactions
 
 193   for my $i (1 .. $form->{paidaccounts}) {
 
 195     if ($form->{"acc_trans_id_$i"} && $payments_only && (SL::DB::Default->get->payments_changeable == 0)) {
 
 199     if ($form->{"paid_$i"} != 0) {
 
 200       my $project_id = conv_i($form->{"paid_project_id_$i"});
 
 202       $form->{"AR_paid_$i"} =~ s/\"//g;
 
 203       ($form->{AR}{"paid_$i"}) = split(/--/, $form->{"AR_paid_$i"});
 
 204       $form->{"datepaid_$i"} = $form->{transdate}
 
 205         unless ($form->{"datepaid_$i"});
 
 207       $form->{"exchangerate_$i"} = ($form->{currency} eq $form->{defaultcurrency}) ? 1 :
 
 208         ( $form->check_exchangerate($myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy') ||
 
 209           $form->parse_amount($myconfig, $form->{"exchangerate_$i"}) );
 
 211       # if there is no amount and invtotal is zero there is no exchangerate
 
 212       $form->{exchangerate} = $form->{"exchangerate_$i"}
 
 213         if ($form->{amount} == 0 && $form->{netamount} == 0);
 
 216       $amount = $form->round_amount($form->{"paid_$i"} * $form->{exchangerate}, 2);
 
 220         $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, project_id, taxkey, tax_id, chart_link)
 
 221                      VALUES (?, ?, ?, ?, ?, (SELECT taxkey_id FROM chart WHERE id = ?),
 
 226                       ORDER BY startdate DESC LIMIT 1),
 
 227                      (SELECT c.link FROM chart c WHERE c.id = ?))|;
 
 228         @values = (conv_i($form->{id}), $form->{AR_chart_id}, $amount, conv_date($form->{"datepaid_$i"}), $project_id, $form->{AR_chart_id}, $form->{AR_chart_id}, conv_date($form->{"datepaid_$i"}), $form->{AR_chart_id});
 
 230         do_query($form, $dbh, $query, @values);
 
 233       if ($form->{"paid_$i"} != 0) {
 
 235         my $project_id = conv_i($form->{"paid_project_id_$i"});
 
 236         my $gldate = (conv_date($form->{"gldate_$i"}))? conv_date($form->{"gldate_$i"}) : conv_date($form->current_date($myconfig));
 
 237         $amount = $form->{"paid_$i"} * -1;
 
 238         $query  = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, gldate, source, memo, project_id, taxkey, tax_id, chart_link)
 
 239                      VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, ?, ?, ?, ?, (SELECT taxkey_id FROM chart WHERE accno = ?),
 
 242                       WHERE chart_id= (SELECT id
 
 246                       ORDER BY startdate DESC LIMIT 1),
 
 247                      (SELECT c.link FROM chart c WHERE c.accno = ?))|;
 
 248         @values = (conv_i($form->{id}), $form->{AR}{"paid_$i"}, $amount, conv_date($form->{"datepaid_$i"}), $gldate, $form->{"source_$i"}, $form->{"memo_$i"}, $project_id, $form->{AR}{"paid_$i"},
 
 249                     $form->{AR}{"paid_$i"}, conv_date($form->{"datepaid_$i"}), $form->{AR}{"paid_$i"});
 
 250         do_query($form, $dbh, $query, @values);
 
 252         # exchangerate difference for payment
 
 253         $amount = $form->round_amount( $form->{"paid_$i"} * ($form->{"exchangerate_$i"} - 1) * -1, 2);
 
 256           $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, fx_transaction, cleared, project_id, taxkey, tax_id, chart_link)
 
 257                        VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, 't', 'f', ?, (SELECT taxkey_id FROM chart WHERE accno = ?),
 
 260                         WHERE chart_id= (SELECT id
 
 264                         ORDER BY startdate DESC LIMIT 1),
 
 265                        (SELECT c.link FROM chart c WHERE c.accno = ?))|;
 
 266           @values = (conv_i($form->{id}), $form->{AR}{"paid_$i"}, $amount, conv_date($form->{"datepaid_$i"}), $project_id, $form->{AR}{"paid_$i"},
 
 267                     $form->{AR}{"paid_$i"}, conv_date($form->{"datepaid_$i"}), $form->{AR}{"paid_$i"});
 
 268           do_query($form, $dbh, $query, @values);
 
 271         # exchangerate gain/loss
 
 272         $amount = $form->round_amount( $form->{"paid_$i"} * ($form->{exchangerate} - $form->{"exchangerate_$i"}) * -1, 2);
 
 275           # fetch fxgain and fxloss chart info from defaults if charts aren't already filled in form
 
 276           if ( !$form->{fxgain_accno} && $::instance_conf->get_fxgain_accno_id ) {
 
 277             $form->{fxgain_accno} = SL::DB::Manager::Chart->find_by(id => $::instance_conf->get_fxgain_accno_id)->accno;
 
 279           if ( !$form->{fxloss_accno} && $::instance_conf->get_fxloss_accno_id ) {
 
 280             $form->{fxloss_accno} = SL::DB::Manager::Chart->find_by(id => $::instance_conf->get_fxloss_accno_id)->accno;
 
 282           die "fxloss_accno missing" if $amount < 0 and not $form->{fxloss_accno};
 
 283           die "fxgain_accno missing" if $amount > 0 and not $form->{fxgain_accno};
 
 284           my $accno = ($amount > 0) ? $form->{fxgain_accno} : $form->{fxloss_accno};
 
 285           $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, fx_transaction, cleared, project_id, taxkey, tax_id, chart_link)
 
 286                        VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, 't', 'f', ?, (SELECT taxkey_id FROM chart WHERE accno = ?),
 
 289                         WHERE chart_id= (SELECT id
 
 293                         ORDER BY startdate DESC LIMIT 1),
 
 294                        (SELECT c.link FROM chart c WHERE c.accno = ?))|;
 
 295           @values = (conv_i($form->{id}), $accno, $amount, conv_date($form->{"datepaid_$i"}), $project_id, $accno, $accno, conv_date($form->{"datepaid_$i"}), $accno);
 
 296           do_query($form, $dbh, $query, @values);
 
 300       # update exchangerate record
 
 301       $form->update_exchangerate($dbh, $form->{currency}, $form->{"datepaid_$i"}, $form->{"exchangerate_$i"}, 0)
 
 302         if ($form->{currency} ne $form->{defaultcurrency}) && !$form->check_exchangerate($myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy');
 
 306   IO->set_datepaid(table => 'ar', id => $form->{id}, dbh => $dbh);
 
 308   # safety check datev export
 
 309   if ($::instance_conf->get_datev_check_on_ar_transaction) {
 
 310     my $transdate = $::form->{transdate} ? DateTime->from_lxoffice($::form->{transdate}) : undef;
 
 311     $transdate  ||= DateTime->today;
 
 313     my $datev = SL::DATEV->new(
 
 314       exporttype => DATEV_ET_BUCHUNGEN,
 
 315       format     => DATEV_FORMAT_KNE,
 
 317       trans_id   => $form->{id},
 
 322     if ($datev->errors) {
 
 323       die join "\n", $::locale->text('DATEV check returned errors:'), $datev->errors;
 
 330 sub _delete_payments {
 
 331   $main::lxdebug->enter_sub();
 
 333   my ($self, $form, $dbh) = @_;
 
 335   my @delete_acc_trans_ids;
 
 337   # Delete old payment entries from acc_trans.
 
 339     qq|SELECT acc_trans_id
 
 341        WHERE (trans_id = ?) AND fx_transaction
 
 345        SELECT at.acc_trans_id
 
 347        LEFT JOIN chart c ON (at.chart_id = c.id)
 
 348        WHERE (trans_id = ?) AND (c.link LIKE '%AR_paid%')|;
 
 349   push @delete_acc_trans_ids, selectall_array_query($form, $dbh, $query, conv_i($form->{id}), conv_i($form->{id}));
 
 352     qq|SELECT at.acc_trans_id
 
 354        LEFT JOIN chart c ON (at.chart_id = c.id)
 
 356          AND ((c.link = 'AR') OR (c.link LIKE '%:AR') OR (c.link LIKE 'AR:%'))
 
 357        ORDER BY at.acc_trans_id
 
 359   push @delete_acc_trans_ids, selectall_array_query($form, $dbh, $query, conv_i($form->{id}));
 
 361   if (@delete_acc_trans_ids) {
 
 362     $query = qq|DELETE FROM acc_trans WHERE acc_trans_id IN (| . join(", ", @delete_acc_trans_ids) . qq|)|;
 
 363     do_query($form, $dbh, $query);
 
 366   $main::lxdebug->leave_sub();
 
 370   my ($self, $myconfig, $form, $locale) = @_;
 
 371   $main::lxdebug->enter_sub();
 
 373   my $rc = SL::DB->client->with_transaction(\&_post_payment, $self, $myconfig, $form, $locale);
 
 375   $::lxdebug->leave_sub;
 
 380   my ($self, $myconfig, $form, $locale) = @_;
 
 382   my $dbh = SL::DB->client->dbh;
 
 384   my (%payments, $old_form, $row, $item, $query, %keep_vars);
 
 386   $old_form = save_form();
 
 388   # Delete all entries in acc_trans from prior payments.
 
 389   if (SL::DB::Default->get->payments_changeable != 0) {
 
 390     $self->_delete_payments($form, $dbh);
 
 393   # Save the new payments the user made before cleaning up $form.
 
 394   my $payments_re = '^datepaid_\d+$|^gldate_\d+$|^acc_trans_id_\d+$|^memo_\d+$|^source_\d+$|^exchangerate_\d+$|^paid_\d+$|^paid_project_id_\d+$|^AR_paid_\d+$|^paidaccounts$';
 
 395   map { $payments{$_} = $form->{$_} } grep m/$payments_re/, keys %{ $form };
 
 397   # Clean up $form so that old content won't tamper the results.
 
 398   %keep_vars = map { $_, 1 } qw(login password id);
 
 399   map { delete $form->{$_} unless $keep_vars{$_} } keys %{ $form };
 
 401   # Retrieve the invoice from the database.
 
 402   $form->create_links('AR', $myconfig, 'customer', $dbh);
 
 404   # Restore the payment options from the user input.
 
 405   map { $form->{$_} = $payments{$_} } keys %payments;
 
 407   # Set up the content of $form in the way that AR::post_transaction() expects.
 
 409   $self->setup_form($form, 1);
 
 411   $form->{exchangerate}    = $form->format_amount($myconfig, $form->{exchangerate});
 
 412   $form->{defaultcurrency} = $form->get_default_currency($myconfig);
 
 414   # Get the AR chart ID (which is normally done by Form::create_links()).
 
 418        LEFT JOIN chart c ON (at.chart_id = c.id)
 
 420          AND ((c.link = 'AR') OR (c.link LIKE '%:AR') OR (c.link LIKE 'AR:%'))
 
 421        ORDER BY at.acc_trans_id
 
 424   ($form->{AR_chart_id}) = selectfirst_array_query($form, $dbh, $query, conv_i($form->{id}));
 
 426   # Post the new payments.
 
 427   $self->post_transaction($myconfig, $form, $dbh, 1);
 
 429   restore_form($old_form);
 
 434 sub delete_transaction {
 
 435   $main::lxdebug->enter_sub();
 
 437   my ($self, $myconfig, $form) = @_;
 
 439   SL::DB->client->with_transaction(sub {
 
 440     # acc_trans entries are deleted by database triggers.
 
 441     my $query = qq|DELETE FROM ar WHERE id = ?|;
 
 442     do_query($form, SL::DB->client->dbh, $query, $form->{id});
 
 444   }) or do { die SL::DB->client->error };
 
 446   $main::lxdebug->leave_sub();
 
 451 sub ar_transactions {
 
 452   $main::lxdebug->enter_sub();
 
 454   my ($self, $myconfig, $form) = @_;
 
 456   # connect to database
 
 457   my $dbh = $form->get_standard_dbh($myconfig);
 
 462     qq|SELECT DISTINCT a.id, a.invnumber, a.ordnumber, a.cusordnumber, a.transdate, | .
 
 463     qq|  a.duedate, a.netamount, a.amount, a.paid, | .
 
 464     qq|  a.invoice, a.datepaid, a.notes, a.shipvia, | .
 
 465     qq|  a.shippingpoint, a.storno, a.storno_id, a.globalproject_id, | .
 
 466     qq|  a.marge_total, a.marge_percent, | .
 
 467     qq|  a.transaction_description, a.direct_debit, | .
 
 468     qq|  pr.projectnumber AS globalprojectnumber, | .
 
 469     qq|  c.name, c.customernumber, c.country, c.ustid, b.description as customertype, | .
 
 470     qq|  c.id as customer_id, | .
 
 471     qq|  e.name AS employee, | .
 
 472     qq|  e2.name AS salesman, | .
 
 473     qq|  dc.dunning_description, | .
 
 474     qq|  tz.description AS taxzone, | .
 
 475     qq|  pt.description AS payment_terms, | .
 
 476     qq|  d.description AS department, | .
 
 477     qq{  ( SELECT ch.accno || ' -- ' || ch.description
 
 479            LEFT JOIN chart ch ON ch.id = at.chart_id
 
 480            WHERE ch.link ~ 'AR[[:>:]]'
 
 481             AND at.trans_id = a.id
 
 485     qq|JOIN customer c ON (a.customer_id = c.id) | .
 
 486     qq|LEFT JOIN contacts cp ON (a.cp_id = cp.cp_id) | .
 
 487     qq|LEFT JOIN employee e ON (a.employee_id = e.id) | .
 
 488     qq|LEFT JOIN employee e2 ON (a.salesman_id = e2.id) | .
 
 489     qq|LEFT JOIN dunning_config dc ON (a.dunning_config_id = dc.id) | .
 
 490     qq|LEFT JOIN project pr ON (a.globalproject_id = pr.id)| .
 
 491     qq|LEFT JOIN tax_zones tz ON (tz.id = a.taxzone_id)| .
 
 492     qq|LEFT JOIN payment_terms pt ON (pt.id = a.payment_id)| .
 
 493     qq|LEFT JOIN business b ON (b.id = c.business_id)| .
 
 494     qq|LEFT JOIN department d ON (d.id = a.department_id)|;
 
 498   unless ( $::auth->assert('show_ar_transactions', 1) ) {
 
 499     $where .= " AND NOT invoice = 'f' ";  # remove ar transactions from Sales -> Reports -> Invoices
 
 502   if ($form->{customer}) {
 
 503     $where .= " AND c.name ILIKE ?";
 
 504     push(@values, like($form->{customer}));
 
 506   if ($form->{"cp_name"}) {
 
 507     $where .= " AND (cp.cp_name ILIKE ? OR cp.cp_givenname ILIKE ?)";
 
 508     push(@values, (like($form->{"cp_name"}))x2);
 
 510   if ($form->{business_id}) {
 
 511     my $business_id = $form->{business_id};
 
 512     $where .= " AND c.business_id = ?";
 
 513     push(@values, $business_id);
 
 515   if ($form->{department_id}) {
 
 516     $where .= " AND a.department_id = ?";
 
 517     push(@values, $form->{department_id});
 
 519   foreach my $column (qw(invnumber ordnumber cusordnumber notes transaction_description)) {
 
 520     if ($form->{$column}) {
 
 521       $where .= " AND a.$column ILIKE ?";
 
 522       push(@values, like($form->{$column}));
 
 525   if ($form->{"project_id"}) {
 
 527       qq|AND ((a.globalproject_id = ?) OR EXISTS | .
 
 528       qq|  (SELECT * FROM invoice i | .
 
 529       qq|   WHERE i.project_id = ? AND i.trans_id = a.id) | .
 
 531       qq|  (SELECT * FROM acc_trans at | .
 
 532       qq|   WHERE at.project_id = ? AND at.trans_id = a.id)| .
 
 534     push(@values, $form->{project_id}, $form->{project_id}, $form->{project_id});
 
 537   if ($form->{transdatefrom}) {
 
 538     $where .= " AND a.transdate >= ?";
 
 539     push(@values, trim($form->{transdatefrom}));
 
 541   if ($form->{transdateto}) {
 
 542     $where .= " AND a.transdate <= ?";
 
 543     push(@values, trim($form->{transdateto}));
 
 545   if ($form->{duedatefrom}) {
 
 546     $where .= " AND a.duedate >= ?";
 
 547     push(@values, trim($form->{duedatefrom}));
 
 549   if ($form->{duedateto}) {
 
 550     $where .= " AND a.duedate <= ?";
 
 551     push(@values, trim($form->{duedateto}));
 
 553   if ($form->{open} || $form->{closed}) {
 
 554     unless ($form->{open} && $form->{closed}) {
 
 555       $where .= " AND a.amount <> a.paid" if ($form->{open});
 
 556       $where .= " AND a.amount = a.paid"  if ($form->{closed});
 
 560   if (!$main::auth->assert('sales_all_edit', 1)) {
 
 561     # only show own invoices
 
 562     $where .= " AND a.employee_id = (select id from employee where login= ?)";
 
 563     push (@values, $::myconfig{login});
 
 565     if ($form->{employee_id}) {
 
 566       $where .= " AND a.employee_id = ?";
 
 567       push @values, conv_i($form->{employee_id});
 
 569     if ($form->{salesman_id}) {
 
 570       $where .= " AND a.salesman_id = ?";
 
 571       push @values, conv_i($form->{salesman_id});
 
 575   if ($form->{parts_partnumber}) {
 
 578         SELECT invoice.trans_id
 
 580         LEFT JOIN parts ON (invoice.parts_id = parts.id)
 
 581         WHERE (invoice.trans_id = a.id)
 
 582           AND (parts.partnumber ILIKE ?)
 
 586     push @values, like($form->{parts_partnumber});
 
 589   if ($form->{parts_description}) {
 
 592         SELECT invoice.trans_id
 
 594         WHERE (invoice.trans_id = a.id)
 
 595           AND (invoice.description ILIKE ?)
 
 599     push @values, like($form->{parts_description});
 
 602   my ($cvar_where, @cvar_values) = CVar->build_filter_query('module'         => 'CT',
 
 603                                                             'trans_id_field' => 'c.id',
 
 607     $where .= qq| AND ($cvar_where)|;
 
 608     push @values, @cvar_values;
 
 611   my @a = qw(transdate invnumber name);
 
 612   push @a, "employee" if $form->{l_employee};
 
 613   my $sortdir   = !defined $form->{sortdir} ? 'ASC' : $form->{sortdir} ? 'ASC' : 'DESC';
 
 614   my $sortorder = join(', ', map { "$_ $sortdir" } @a);
 
 616   if (grep({ $_ eq $form->{sort} } qw(id transdate duedate invnumber ordnumber cusordnumber name datepaid employee shippingpoint shipvia transaction_description))) {
 
 617     $sortorder = $form->{sort} . " $sortdir";
 
 620   $query .= " WHERE $where ORDER BY $sortorder";
 
 622   my @result = selectall_hashref_query($form, $dbh, $query, @values);
 
 624   $form->{AR} = [ @result ];
 
 626   $main::lxdebug->leave_sub();
 
 630   $main::lxdebug->enter_sub();
 
 632   my ($self, $myconfig, $form) = @_;
 
 634   # connect to database
 
 635   my $dbh = SL::DB->client->dbh;
 
 639     "  (SELECT transdate FROM ar WHERE id = " .
 
 640     "    (SELECT MAX(id) FROM ar) LIMIT 1), " .
 
 642   ($form->{transdate}) = $dbh->selectrow_array($query);
 
 644   $main::lxdebug->leave_sub();
 
 648   $main::lxdebug->enter_sub();
 
 650   my ($self, $form, $for_post_payments) = @_;
 
 652   my ($exchangerate, $akey, $j, $k, $index, $taxamount, $totaltax, $taxrate, $diff, $totalwithholding, $withholdingrate,
 
 656   $form->{forex} = $form->{exchangerate};
 
 657   $exchangerate  = $form->{exchangerate} ? $form->{exchangerate} : 1;
 
 659   # expected keys: AR, AR_paid, AR_tax, AR_amount
 
 660   foreach my $key (keys %{ $form->{AR_links} }) {
 
 664     # if there is a value we have an old entry
 
 665     next unless $form->{acc_trans}{$key};
 
 667     # do not use old entries for payments. They come from the form
 
 668     # even if they are not changeable (then they are in hiddens)
 
 669     next if $for_post_payments && $key eq "AR_paid";
 
 671     for my $i (1 .. scalar @{ $form->{acc_trans}{$key} }) {
 
 672       if ($key eq "AR_paid") {
 
 674         $form->{"AR_paid_$j"} = $form->{acc_trans}{$key}->[$i-1]->{accno};
 
 676         $form->{"acc_trans_id_$j"}    = $form->{acc_trans}{$key}->[$i - 1]->{acc_trans_id};
 
 678         $form->{"paid_$j"}            = $form->{acc_trans}{$key}->[$i - 1]->{amount} * -1;
 
 679         $form->{"datepaid_$j"}        = $form->{acc_trans}{$key}->[$i - 1]->{transdate};
 
 680         $form->{"gldate_$j"}          = $form->{acc_trans}{$key}->[$i - 1]->{gldate};
 
 681         $form->{"source_$j"}          = $form->{acc_trans}{$key}->[$i - 1]->{source};
 
 682         $form->{"memo_$j"}            = $form->{acc_trans}{$key}->[$i - 1]->{memo};
 
 683         $form->{"forex_$j"}           = $form->{acc_trans}{$key}->[$i - 1]->{exchangerate};
 
 684         $form->{"exchangerate_$i"}    = $form->{"forex_$j"};
 
 685         $form->{"paid_project_id_$j"} = $form->{acc_trans}{$key}->[$i - 1]->{project_id};
 
 686         $form->{paidaccounts}++;
 
 688       } else { # e.g. AR_amount, AR, AR_tax
 
 691         $akey =~ s/AR_//; # e.g. tax, amount, AR, used to store form key tax_$i, amount_$i, ...
 
 693         if ($key eq "AR_tax" || $key eq "AP_tax") { # AR_tax
 
 694           $form->{"${key}_$form->{acc_trans}{$key}->[$i-1]->{accno}"}  = "$form->{acc_trans}{$key}->[$i-1]->{accno}--$form->{acc_trans}{$key}->[$i-1]->{description}";
 
 695           # determine the rounded tax amounts for each account, e.g. tax_1776
 
 696           $form->{"${akey}_$form->{acc_trans}{$key}->[$i-1]->{accno}"} = $form->round_amount($form->{acc_trans}{$key}->[$i - 1]->{amount} / $exchangerate, 2);
 
 698           # check e.g. $form->{1776_rate}, does this make sense for AR_tax charts? Is this ever valid? If it was, totaltax would be calculated twice
 
 699           if ($form->{"$form->{acc_trans}{$key}->[$i-1]->{accno}_rate"} > 0) {
 
 700             $totaltax += $form->{"${akey}_$form->{acc_trans}{$key}->[$i-1]->{accno}"};
 
 701             $taxrate  += $form->{"$form->{acc_trans}{$key}->[$i-1]->{accno}_rate"};
 
 704             $totalwithholding += $form->{"${akey}_$form->{acc_trans}{$key}->[$i-1]->{accno}"};
 
 705             $withholdingrate  += $form->{"$form->{acc_trans}{$key}->[$i-1]->{accno}_rate"};
 
 708           $index                 = $form->{acc_trans}{$key}->[$i - 1]->{index};
 
 709           $form->{"tax_$index"}  = $form->round_amount($form->{acc_trans}{$key}->[$i - 1]->{amount} / $exchangerate, 2); # convert the tax_$i amounts
 
 710           # currently totaltax is the sum of rounded tax amounts, is this correct?
 
 711           $totaltax             += $form->{"tax_$index"};
 
 713         } else { # e.g. AR_amount, AR
 
 715           $form->{"${akey}_$k"} = $form->round_amount($form->{acc_trans}{$key}->[$i - 1]->{amount} / $exchangerate, 2);
 
 717           if ($akey eq 'amount') {
 
 719             $totalamount += $form->{"${akey}_$i"};
 
 721             $form->{"oldprojectnumber_$k"} = $form->{acc_trans}{$key}->[$i-1]->{projectnumber};
 
 722             $form->{"projectnumber_$k"}    = $form->{acc_trans}{$key}->[$i-1]->{projectnumber};
 
 723             $form->{taxrate}               = $form->{acc_trans}{$key}->[$i - 1]->{rate};
 
 724             $form->{"project_id_$k"}       = $form->{acc_trans}{$key}->[$i-1]->{project_id};
 
 726             $form->{"${key}_chart_id_$k"} = $form->{acc_trans}{$key}->[$i-1]->{chart_id};
 
 727             $form->{"taxchart_$k"} = $form->{acc_trans}{$key}->[$i-1]->{id}    . "--" . $form->{acc_trans}{$key}->[$i-1]->{rate};
 
 734   $form->{paidaccounts} = 1            if not defined $form->{paidaccounts};
 
 736   if ($form->{taxincluded} && $form->{taxrate} && $totalamount) {
 
 738     # add tax to amounts and invtotal
 
 739     for my $i (1 .. $form->{rowcount}) {
 
 740       $taxamount            = ($totaltax + $totalwithholding) * $form->{"amount_$i"} / $totalamount;
 
 741       $tax                  = $form->round_amount($taxamount, 2);
 
 742       $diff                += ($taxamount - $tax);
 
 743       $form->{"amount_$i"} += $form->{"tax_$i"};
 
 745     $form->{amount_1} += $form->round_amount($diff, 2);
 
 748   $taxamount   = $form->round_amount($taxamount, 2);
 
 749   $form->{tax} = $taxamount;
 
 751   $form->{invtotal} = $totalamount + $totaltax;
 
 753   $main::lxdebug->leave_sub();
 
 757   my ($self, $form, $myconfig, $id) = @_;
 
 758   $main::lxdebug->enter_sub();
 
 760   my $rc = SL::DB->client->with_transaction(\&_storno, $self, $form, $myconfig, $id);
 
 762   $::lxdebug->leave_sub;
 
 768   my ($self, $form, $myconfig, $id) = @_;
 
 770   my ($query, $new_id, $storno_row, $acc_trans_rows);
 
 771   my $dbh = SL::DB->client->dbh;
 
 773   $query = qq|SELECT nextval('glid')|;
 
 774   ($new_id) = selectrow_query($form, $dbh, $query);
 
 776   $query = qq|SELECT * FROM ar WHERE id = ?|;
 
 777   $storno_row = selectfirst_hashref_query($form, $dbh, $query, $id);
 
 779   $storno_row->{id}         = $new_id;
 
 780   $storno_row->{storno_id}  = $id;
 
 781   $storno_row->{storno}     = 't';
 
 782   $storno_row->{invnumber}  = 'Storno-' . $storno_row->{invnumber};
 
 783   $storno_row->{amount}    *= -1;
 
 784   $storno_row->{netamount} *= -1;
 
 785   $storno_row->{paid}       = $storno_row->{amount};
 
 787   delete @$storno_row{qw(itime mtime)};
 
 789   $query = sprintf 'INSERT INTO ar (%s) VALUES (%s)', join(', ', keys %$storno_row), join(', ', map '?', values %$storno_row);
 
 790   do_query($form, $dbh, $query, (values %$storno_row));
 
 792   $query = qq|UPDATE ar SET paid = amount + paid, storno = 't' WHERE id = ?|;
 
 793   do_query($form, $dbh, $query, $id);
 
 795   $form->new_lastmtime('ar') if $id == $form->{id};
 
 797   # now copy acc_trans entries
 
 798   $query = qq|SELECT a.*, c.link FROM acc_trans a LEFT JOIN chart c ON a.chart_id = c.id WHERE a.trans_id = ? ORDER BY a.acc_trans_id|;
 
 799   my $rowref = selectall_hashref_query($form, $dbh, $query, $id);
 
 801   # kill all entries containing payments, which are the last 2n rows, of which the last has link =~ /paid/
 
 802   while ($rowref->[-1]{link} =~ /paid/) {
 
 803     splice(@$rowref, -2);
 
 806   for my $row (@$rowref) {
 
 807     delete @$row{qw(itime mtime link acc_trans_id)};
 
 808     $query = sprintf 'INSERT INTO acc_trans (%s) VALUES (%s)', join(', ', keys %$row), join(', ', map '?', values %$row);
 
 809     $row->{trans_id}   = $new_id;
 
 810     $row->{amount}    *= -1;
 
 811     do_query($form, $dbh, $query, (values %$row));
 
 814   map { IO->set_datepaid(table => 'ar', id => $_, dbh => $dbh) } ($id, $new_id);