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->{customernumber}) {
 
 503     $where .= " AND c.customernumber = ?";
 
 504     push(@values, trim($form->{customernumber}));
 
 506   if ($form->{customer_id}) {
 
 507     $where .= " AND a.customer_id = ?";
 
 508     push(@values, $form->{customer_id});
 
 509   } elsif ($form->{customer}) {
 
 510     $where .= " AND c.name ILIKE ?";
 
 511     push(@values, like($form->{customer}));
 
 513   if ($form->{"cp_name"}) {
 
 514     $where .= " AND (cp.cp_name ILIKE ? OR cp.cp_givenname ILIKE ?)";
 
 515     push(@values, (like($form->{"cp_name"}))x2);
 
 517   if ($form->{business_id}) {
 
 518     my $business_id = $form->{business_id};
 
 519     $where .= " AND c.business_id = ?";
 
 520     push(@values, $business_id);
 
 522   if ($form->{department_id}) {
 
 523     $where .= " AND a.department_id = ?";
 
 524     push(@values, $form->{department_id});
 
 526   foreach my $column (qw(invnumber ordnumber cusordnumber notes transaction_description)) {
 
 527     if ($form->{$column}) {
 
 528       $where .= " AND a.$column ILIKE ?";
 
 529       push(@values, like($form->{$column}));
 
 532   if ($form->{"project_id"}) {
 
 534       qq|AND ((a.globalproject_id = ?) OR EXISTS | .
 
 535       qq|  (SELECT * FROM invoice i | .
 
 536       qq|   WHERE i.project_id = ? AND i.trans_id = a.id) | .
 
 538       qq|  (SELECT * FROM acc_trans at | .
 
 539       qq|   WHERE at.project_id = ? AND at.trans_id = a.id)| .
 
 541     push(@values, $form->{project_id}, $form->{project_id}, $form->{project_id});
 
 544   if ($form->{transdatefrom}) {
 
 545     $where .= " AND a.transdate >= ?";
 
 546     push(@values, trim($form->{transdatefrom}));
 
 548   if ($form->{transdateto}) {
 
 549     $where .= " AND a.transdate <= ?";
 
 550     push(@values, trim($form->{transdateto}));
 
 552   if ($form->{duedatefrom}) {
 
 553     $where .= " AND a.duedate >= ?";
 
 554     push(@values, trim($form->{duedatefrom}));
 
 556   if ($form->{duedateto}) {
 
 557     $where .= " AND a.duedate <= ?";
 
 558     push(@values, trim($form->{duedateto}));
 
 560   if ($form->{open} || $form->{closed}) {
 
 561     unless ($form->{open} && $form->{closed}) {
 
 562       $where .= " AND a.amount <> a.paid" if ($form->{open});
 
 563       $where .= " AND a.amount = a.paid"  if ($form->{closed});
 
 567   if (!$main::auth->assert('sales_all_edit', 1)) {
 
 568     # only show own invoices
 
 569     $where .= " AND a.employee_id = (select id from employee where login= ?)";
 
 570     push (@values, $::myconfig{login});
 
 572     if ($form->{employee_id}) {
 
 573       $where .= " AND a.employee_id = ?";
 
 574       push @values, conv_i($form->{employee_id});
 
 576     if ($form->{salesman_id}) {
 
 577       $where .= " AND a.salesman_id = ?";
 
 578       push @values, conv_i($form->{salesman_id});
 
 582   if ($form->{parts_partnumber}) {
 
 585         SELECT invoice.trans_id
 
 587         LEFT JOIN parts ON (invoice.parts_id = parts.id)
 
 588         WHERE (invoice.trans_id = a.id)
 
 589           AND (parts.partnumber ILIKE ?)
 
 593     push @values, like($form->{parts_partnumber});
 
 596   if ($form->{parts_description}) {
 
 599         SELECT invoice.trans_id
 
 601         WHERE (invoice.trans_id = a.id)
 
 602           AND (invoice.description ILIKE ?)
 
 606     push @values, like($form->{parts_description});
 
 609   my ($cvar_where, @cvar_values) = CVar->build_filter_query('module'         => 'CT',
 
 610                                                             'trans_id_field' => 'c.id',
 
 614     $where .= qq| AND ($cvar_where)|;
 
 615     push @values, @cvar_values;
 
 618   my @a = qw(transdate invnumber name);
 
 619   push @a, "employee" if $form->{l_employee};
 
 620   my $sortdir   = !defined $form->{sortdir} ? 'ASC' : $form->{sortdir} ? 'ASC' : 'DESC';
 
 621   my $sortorder = join(', ', map { "$_ $sortdir" } @a);
 
 623   if (grep({ $_ eq $form->{sort} } qw(id transdate duedate invnumber ordnumber cusordnumber name datepaid employee shippingpoint shipvia transaction_description))) {
 
 624     $sortorder = $form->{sort} . " $sortdir";
 
 627   $query .= " WHERE $where ORDER BY $sortorder";
 
 629   my @result = selectall_hashref_query($form, $dbh, $query, @values);
 
 631   $form->{AR} = [ @result ];
 
 633   $main::lxdebug->leave_sub();
 
 637   $main::lxdebug->enter_sub();
 
 639   my ($self, $myconfig, $form) = @_;
 
 641   # connect to database
 
 642   my $dbh = SL::DB->client->dbh;
 
 646     "  (SELECT transdate FROM ar WHERE id = " .
 
 647     "    (SELECT MAX(id) FROM ar) LIMIT 1), " .
 
 649   ($form->{transdate}) = $dbh->selectrow_array($query);
 
 651   $main::lxdebug->leave_sub();
 
 655   $main::lxdebug->enter_sub();
 
 657   my ($self, $form, $for_post_payments) = @_;
 
 659   my ($exchangerate, $akey, $j, $k, $index, $taxamount, $totaltax, $taxrate, $diff, $totalwithholding, $withholdingrate,
 
 663   $form->{forex} = $form->{exchangerate};
 
 664   $exchangerate  = $form->{exchangerate} ? $form->{exchangerate} : 1;
 
 666   # expected keys: AR, AR_paid, AR_tax, AR_amount
 
 667   foreach my $key (keys %{ $form->{AR_links} }) {
 
 671     # if there is a value we have an old entry
 
 672     next unless $form->{acc_trans}{$key};
 
 674     # do not use old entries for payments. They come from the form
 
 675     # even if they are not changeable (then they are in hiddens)
 
 676     next if $for_post_payments && $key eq "AR_paid";
 
 678     for my $i (1 .. scalar @{ $form->{acc_trans}{$key} }) {
 
 679       if ($key eq "AR_paid") {
 
 681         $form->{"AR_paid_$j"} = $form->{acc_trans}{$key}->[$i-1]->{accno};
 
 683         $form->{"acc_trans_id_$j"}    = $form->{acc_trans}{$key}->[$i - 1]->{acc_trans_id};
 
 685         $form->{"paid_$j"}            = $form->{acc_trans}{$key}->[$i - 1]->{amount} * -1;
 
 686         $form->{"datepaid_$j"}        = $form->{acc_trans}{$key}->[$i - 1]->{transdate};
 
 687         $form->{"gldate_$j"}          = $form->{acc_trans}{$key}->[$i - 1]->{gldate};
 
 688         $form->{"source_$j"}          = $form->{acc_trans}{$key}->[$i - 1]->{source};
 
 689         $form->{"memo_$j"}            = $form->{acc_trans}{$key}->[$i - 1]->{memo};
 
 690         $form->{"forex_$j"}           = $form->{acc_trans}{$key}->[$i - 1]->{exchangerate};
 
 691         $form->{"exchangerate_$i"}    = $form->{"forex_$j"};
 
 692         $form->{"paid_project_id_$j"} = $form->{acc_trans}{$key}->[$i - 1]->{project_id};
 
 693         $form->{paidaccounts}++;
 
 695       } else { # e.g. AR_amount, AR, AR_tax
 
 698         $akey =~ s/AR_//; # e.g. tax, amount, AR, used to store form key tax_$i, amount_$i, ...
 
 700         if ($key eq "AR_tax" || $key eq "AP_tax") { # AR_tax
 
 701           $form->{"${key}_$form->{acc_trans}{$key}->[$i-1]->{accno}"}  = "$form->{acc_trans}{$key}->[$i-1]->{accno}--$form->{acc_trans}{$key}->[$i-1]->{description}";
 
 702           # determine the rounded tax amounts for each account, e.g. tax_1776
 
 703           $form->{"${akey}_$form->{acc_trans}{$key}->[$i-1]->{accno}"} = $form->round_amount($form->{acc_trans}{$key}->[$i - 1]->{amount} / $exchangerate, 2);
 
 705           # 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
 
 706           if ($form->{"$form->{acc_trans}{$key}->[$i-1]->{accno}_rate"} > 0) {
 
 707             $totaltax += $form->{"${akey}_$form->{acc_trans}{$key}->[$i-1]->{accno}"};
 
 708             $taxrate  += $form->{"$form->{acc_trans}{$key}->[$i-1]->{accno}_rate"};
 
 711             $totalwithholding += $form->{"${akey}_$form->{acc_trans}{$key}->[$i-1]->{accno}"};
 
 712             $withholdingrate  += $form->{"$form->{acc_trans}{$key}->[$i-1]->{accno}_rate"};
 
 715           $index                 = $form->{acc_trans}{$key}->[$i - 1]->{index};
 
 716           $form->{"tax_$index"}  = $form->round_amount($form->{acc_trans}{$key}->[$i - 1]->{amount} / $exchangerate, 2); # convert the tax_$i amounts
 
 717           # currently totaltax is the sum of rounded tax amounts, is this correct?
 
 718           $totaltax             += $form->{"tax_$index"};
 
 720         } else { # e.g. AR_amount, AR
 
 722           $form->{"${akey}_$k"} = $form->round_amount($form->{acc_trans}{$key}->[$i - 1]->{amount} / $exchangerate, 2);
 
 724           if ($akey eq 'amount') {
 
 726             $totalamount += $form->{"${akey}_$i"};
 
 728             $form->{"oldprojectnumber_$k"} = $form->{acc_trans}{$key}->[$i-1]->{projectnumber};
 
 729             $form->{"projectnumber_$k"}    = $form->{acc_trans}{$key}->[$i-1]->{projectnumber};
 
 730             $form->{taxrate}               = $form->{acc_trans}{$key}->[$i - 1]->{rate};
 
 731             $form->{"project_id_$k"}       = $form->{acc_trans}{$key}->[$i-1]->{project_id};
 
 733             $form->{"${key}_chart_id_$k"} = $form->{acc_trans}{$key}->[$i-1]->{chart_id};
 
 734             $form->{"taxchart_$k"} = $form->{acc_trans}{$key}->[$i-1]->{id}    . "--" . $form->{acc_trans}{$key}->[$i-1]->{rate};
 
 741   $form->{paidaccounts} = 1            if not defined $form->{paidaccounts};
 
 743   if ($form->{taxincluded} && $form->{taxrate} && $totalamount) {
 
 745     # add tax to amounts and invtotal
 
 746     for my $i (1 .. $form->{rowcount}) {
 
 747       $taxamount            = ($totaltax + $totalwithholding) * $form->{"amount_$i"} / $totalamount;
 
 748       $tax                  = $form->round_amount($taxamount, 2);
 
 749       $diff                += ($taxamount - $tax);
 
 750       $form->{"amount_$i"} += $form->{"tax_$i"};
 
 752     $form->{amount_1} += $form->round_amount($diff, 2);
 
 755   $taxamount   = $form->round_amount($taxamount, 2);
 
 756   $form->{tax} = $taxamount;
 
 758   $form->{invtotal} = $totalamount + $totaltax;
 
 760   $main::lxdebug->leave_sub();
 
 764   my ($self, $form, $myconfig, $id) = @_;
 
 765   $main::lxdebug->enter_sub();
 
 767   my $rc = SL::DB->client->with_transaction(\&_storno, $self, $form, $myconfig, $id);
 
 769   $::lxdebug->leave_sub;
 
 775   my ($self, $form, $myconfig, $id) = @_;
 
 777   my ($query, $new_id, $storno_row, $acc_trans_rows);
 
 778   my $dbh = SL::DB->client->dbh;
 
 780   $query = qq|SELECT nextval('glid')|;
 
 781   ($new_id) = selectrow_query($form, $dbh, $query);
 
 783   $query = qq|SELECT * FROM ar WHERE id = ?|;
 
 784   $storno_row = selectfirst_hashref_query($form, $dbh, $query, $id);
 
 786   $storno_row->{id}         = $new_id;
 
 787   $storno_row->{storno_id}  = $id;
 
 788   $storno_row->{storno}     = 't';
 
 789   $storno_row->{invnumber}  = 'Storno-' . $storno_row->{invnumber};
 
 790   $storno_row->{amount}    *= -1;
 
 791   $storno_row->{netamount} *= -1;
 
 792   $storno_row->{paid}       = $storno_row->{amount};
 
 794   delete @$storno_row{qw(itime mtime)};
 
 796   $query = sprintf 'INSERT INTO ar (%s) VALUES (%s)', join(', ', keys %$storno_row), join(', ', map '?', values %$storno_row);
 
 797   do_query($form, $dbh, $query, (values %$storno_row));
 
 799   $query = qq|UPDATE ar SET paid = amount + paid, storno = 't' WHERE id = ?|;
 
 800   do_query($form, $dbh, $query, $id);
 
 802   $form->new_lastmtime('ar') if $id == $form->{id};
 
 804   # now copy acc_trans entries
 
 805   $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|;
 
 806   my $rowref = selectall_hashref_query($form, $dbh, $query, $id);
 
 808   # kill all entries containing payments, which are the last 2n rows, of which the last has link =~ /paid/
 
 809   while ($rowref->[-1]{link} =~ /paid/) {
 
 810     splice(@$rowref, -2);
 
 813   for my $row (@$rowref) {
 
 814     delete @$row{qw(itime mtime link acc_trans_id)};
 
 815     $query = sprintf 'INSERT INTO acc_trans (%s) VALUES (%s)', join(', ', keys %$row), join(', ', map '?', values %$row);
 
 816     $row->{trans_id}   = $new_id;
 
 817     $row->{amount}    *= -1;
 
 818     do_query($form, $dbh, $query, (values %$row));
 
 821   map { IO->set_datepaid(table => 'ar', id => $_, dbh => $dbh) } ($id, $new_id);