Debitorenbuchungen: Währungs-/Verkäufer-Drop-Downs nicht als Hidden mitschleifen
[kivitendo-erp.git] / SL / AR.pm
1 #=====================================================================
2 # LX-Office ERP
3 # Copyright (C) 2004
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
6 #
7 #=====================================================================
8 # SQL-Ledger Accounting
9 # Copyright (C) 2001
10 #
11 #  Author: Dieter Simader
12 #   Email: dsimader@sql-ledger.org
13 #     Web: http://www.sql-ledger.org
14 #
15 #  Contributors:
16 #
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.
21 #
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,
29 # MA 02110-1335, USA.
30 #======================================================================
31 #
32 # Accounts Receivable module backend routines
33 #
34 #======================================================================
35
36 package AR;
37
38 use Data::Dumper;
39 use SL::DATEV qw(:CONSTANTS);
40 use SL::DBUtils;
41 use SL::IO;
42 use SL::MoreCommon;
43 use SL::DB::Default;
44 use SL::TransNumber;
45 use SL::Util qw(trim);
46 use SL::DB;
47
48 use strict;
49
50 sub post_transaction {
51   my ($self, $myconfig, $form, $provided_dbh, $payments_only) = @_;
52   $main::lxdebug->enter_sub();
53
54   my $rc = SL::DB->client->with_transaction(\&_post_transaction, $self, $myconfig, $form, $provided_dbh, $payments_only);
55
56   $::lxdebug->leave_sub;
57   return $rc;
58 }
59
60 sub _post_transaction {
61   my ($self, $myconfig, $form, $provided_dbh, $payments_only) = @_;
62
63   my ($query, $sth, $null, $taxrate, $amount, $tax);
64   my $exchangerate = 0;
65   my $i;
66
67   my @values;
68
69   my $dbh = $provided_dbh || SL::DB->client->dbh;
70   $form->{defaultcurrency} = $form->get_default_currency($myconfig);
71
72   # set exchangerate
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}) );
76
77   # get the charts selected
78   $form->{AR_amounts}{"amount_$_"} = $form->{"AR_amount_chart_id_$_"} for (1 .. $form->{rowcount});
79
80   $form->{tax}       = 0; # is this still needed?
81
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});
85
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}"};
90     $form->{paid} = 0;
91
92     # add payments
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"};
97     }
98
99   }
100   $form->{paid}   = $form->round_amount($form->{paid} * ($form->{exchangerate} || 1), 2);
101
102   $form->get_employee($dbh) unless $form->{employee_id};
103
104   # if we have an id delete old records else make one
105   if (!$payments_only) {
106     if ($form->{id}) {
107       # delete detail records
108       $query = qq|DELETE FROM acc_trans WHERE trans_id = ?|;
109       do_query($form, $dbh, $query, $form->{id});
110
111     } else {
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;
119       }
120     }
121   }
122
123   # amount for AR account
124   $form->{receivables} = $form->round_amount($form->{amount}, 2) * -1;
125
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');
129
130   if (!$payments_only) {
131     $query =
132       qq|UPDATE ar set
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 = ?,
138            direct_debit = ?
139          WHERE 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},
142                   $form->{currency},
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);
147
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"});
152
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);
159
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);
167         }
168       }
169     }
170
171     # add recievables
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 = ?),
174                  (SELECT tax_id
175                   FROM taxkeys
176                   WHERE chart_id = ?
177                   AND startdate <= ?
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);
183
184   } else {
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}));
188   }
189
190   $form->new_lastmtime('ar');
191
192   # add paid transactions
193   for my $i (1 .. $form->{paidaccounts}) {
194
195     if ($form->{"acc_trans_id_$i"} && $payments_only && (SL::DB::Default->get->payments_changeable == 0)) {
196       next;
197     }
198
199     if ($form->{"paid_$i"} != 0) {
200       my $project_id = conv_i($form->{"paid_project_id_$i"});
201
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"});
206
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"}) );
210
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);
214
215       # receivables amount
216       $amount = $form->round_amount($form->{"paid_$i"} * $form->{exchangerate}, 2);
217
218       if ($amount != 0) {
219         # add receivable
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 = ?),
222                      (SELECT tax_id
223                       FROM taxkeys
224                       WHERE chart_id = ?
225                       AND startdate <= ?
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});
229
230         do_query($form, $dbh, $query, @values);
231       }
232
233       if ($form->{"paid_$i"} != 0) {
234         # add payment
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 = ?),
240                      (SELECT tax_id
241                       FROM taxkeys
242                       WHERE chart_id= (SELECT id
243                                        FROM chart
244                                        WHERE accno = ?)
245                       AND startdate <= ?
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);
251
252         # exchangerate difference for payment
253         $amount = $form->round_amount( $form->{"paid_$i"} * ($form->{"exchangerate_$i"} - 1) * -1, 2);
254
255         if ($amount != 0) {
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 = ?),
258                        (SELECT tax_id
259                         FROM taxkeys
260                         WHERE chart_id= (SELECT id
261                                          FROM chart
262                                          WHERE accno = ?)
263                         AND startdate <= ?
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);
269         }
270
271         # exchangerate gain/loss
272         $amount = $form->round_amount( $form->{"paid_$i"} * ($form->{exchangerate} - $form->{"exchangerate_$i"}) * -1, 2);
273
274         if ($amount != 0) {
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;
278           };
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;
281           };
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 = ?),
287                        (SELECT tax_id
288                         FROM taxkeys
289                         WHERE chart_id= (SELECT id
290                                          FROM chart
291                                          WHERE accno = ?)
292                         AND startdate <= ?
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);
297         }
298       }
299
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');
303     }
304   }
305
306   IO->set_datepaid(table => 'ar', id => $form->{id}, dbh => $dbh);
307
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;
312
313     my $datev = SL::DATEV->new(
314       exporttype => DATEV_ET_BUCHUNGEN,
315       format     => DATEV_FORMAT_KNE,
316       dbh        => $dbh,
317       trans_id   => $form->{id},
318     );
319
320     $datev->export;
321
322     if ($datev->errors) {
323       die join "\n", $::locale->text('DATEV check returned errors:'), $datev->errors;
324     }
325   }
326
327   return 1;
328 }
329
330 sub _delete_payments {
331   $main::lxdebug->enter_sub();
332
333   my ($self, $form, $dbh) = @_;
334
335   my @delete_acc_trans_ids;
336
337   # Delete old payment entries from acc_trans.
338   my $query =
339     qq|SELECT acc_trans_id
340        FROM acc_trans
341        WHERE (trans_id = ?) AND fx_transaction
342
343        UNION
344
345        SELECT at.acc_trans_id
346        FROM acc_trans at
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}));
350
351   $query =
352     qq|SELECT at.acc_trans_id
353        FROM acc_trans at
354        LEFT JOIN chart c ON (at.chart_id = c.id)
355        WHERE (trans_id = ?)
356          AND ((c.link = 'AR') OR (c.link LIKE '%:AR') OR (c.link LIKE 'AR:%'))
357        ORDER BY at.acc_trans_id
358        OFFSET 1|;
359   push @delete_acc_trans_ids, selectall_array_query($form, $dbh, $query, conv_i($form->{id}));
360
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);
364   }
365
366   $main::lxdebug->leave_sub();
367 }
368
369 sub post_payment {
370   my ($self, $myconfig, $form, $locale) = @_;
371   $main::lxdebug->enter_sub();
372
373   my $rc = SL::DB->client->with_transaction(\&_post_payment, $self, $myconfig, $form, $locale);
374
375   $::lxdebug->leave_sub;
376   return $rc;
377 }
378
379 sub _post_payment {
380   my ($self, $myconfig, $form, $locale) = @_;
381
382   my $dbh = SL::DB->client->dbh;
383
384   my (%payments, $old_form, $row, $item, $query, %keep_vars);
385
386   $old_form = save_form();
387
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);
391   }
392
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 };
396
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 };
400
401   # Retrieve the invoice from the database.
402   $form->create_links('AR', $myconfig, 'customer', $dbh);
403
404   # Restore the payment options from the user input.
405   map { $form->{$_} = $payments{$_} } keys %payments;
406
407   # Set up the content of $form in the way that AR::post_transaction() expects.
408
409   $self->setup_form($form, 1);
410
411   $form->{exchangerate}    = $form->format_amount($myconfig, $form->{exchangerate});
412   $form->{defaultcurrency} = $form->get_default_currency($myconfig);
413
414   # Get the AR chart ID (which is normally done by Form::create_links()).
415   $query =
416     qq|SELECT c.id
417        FROM acc_trans at
418        LEFT JOIN chart c ON (at.chart_id = c.id)
419        WHERE (trans_id = ?)
420          AND ((c.link = 'AR') OR (c.link LIKE '%:AR') OR (c.link LIKE 'AR:%'))
421        ORDER BY at.acc_trans_id
422        LIMIT 1|;
423
424   ($form->{AR_chart_id}) = selectfirst_array_query($form, $dbh, $query, conv_i($form->{id}));
425
426   # Post the new payments.
427   $self->post_transaction($myconfig, $form, $dbh, 1);
428
429   restore_form($old_form);
430
431   return 1;
432 }
433
434 sub delete_transaction {
435   $main::lxdebug->enter_sub();
436
437   my ($self, $myconfig, $form) = @_;
438
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});
443     1;
444   }) or do { die SL::DB->client->error };
445
446   $main::lxdebug->leave_sub();
447
448   return 1;
449 }
450
451 sub ar_transactions {
452   $main::lxdebug->enter_sub();
453
454   my ($self, $myconfig, $form) = @_;
455
456   # connect to database
457   my $dbh = $form->get_standard_dbh($myconfig);
458
459   my @values;
460
461   my $query =
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
478            FROM acc_trans at
479            LEFT JOIN chart ch ON ch.id = at.chart_id
480            WHERE ch.link ~ 'AR[[:>:]]'
481             AND at.trans_id = a.id
482             LIMIT 1
483           ) AS charts } .
484     qq|FROM ar a | .
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)|;
495
496   my $where = "1 = 1";
497
498   unless ( $::auth->assert('show_ar_transactions', 1) ) {
499     $where .= " AND NOT invoice = 'f' ";  # remove ar transactions from Sales -> Reports -> Invoices
500   };
501
502   if ($form->{customernumber}) {
503     $where .= " AND c.customernumber = ?";
504     push(@values, trim($form->{customernumber}));
505   }
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}));
512   }
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);
516   }
517   if ($form->{business_id}) {
518     my $business_id = $form->{business_id};
519     $where .= " AND c.business_id = ?";
520     push(@values, $business_id);
521   }
522   if ($form->{department_id}) {
523     $where .= " AND a.department_id = ?";
524     push(@values, $form->{department_id});
525   }
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}));
530     }
531   }
532   if ($form->{"project_id"}) {
533     $where .=
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) | .
537       qq| OR EXISTS | .
538       qq|  (SELECT * FROM acc_trans at | .
539       qq|   WHERE at.project_id = ? AND at.trans_id = a.id)| .
540       qq|  )|;
541     push(@values, $form->{project_id}, $form->{project_id}, $form->{project_id});
542   }
543
544   if ($form->{transdatefrom}) {
545     $where .= " AND a.transdate >= ?";
546     push(@values, trim($form->{transdatefrom}));
547   }
548   if ($form->{transdateto}) {
549     $where .= " AND a.transdate <= ?";
550     push(@values, trim($form->{transdateto}));
551   }
552   if ($form->{duedatefrom}) {
553     $where .= " AND a.duedate >= ?";
554     push(@values, trim($form->{duedatefrom}));
555   }
556   if ($form->{duedateto}) {
557     $where .= " AND a.duedate <= ?";
558     push(@values, trim($form->{duedateto}));
559   }
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});
564     }
565   }
566
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});
571   } else {
572     if ($form->{employee_id}) {
573       $where .= " AND a.employee_id = ?";
574       push @values, conv_i($form->{employee_id});
575     }
576     if ($form->{salesman_id}) {
577       $where .= " AND a.salesman_id = ?";
578       push @values, conv_i($form->{salesman_id});
579     }
580   };
581
582   if ($form->{parts_partnumber}) {
583     $where .= <<SQL;
584       AND EXISTS (
585         SELECT invoice.trans_id
586         FROM invoice
587         LEFT JOIN parts ON (invoice.parts_id = parts.id)
588         WHERE (invoice.trans_id = a.id)
589           AND (parts.partnumber ILIKE ?)
590         LIMIT 1
591       )
592 SQL
593     push @values, like($form->{parts_partnumber});
594   }
595
596   if ($form->{parts_description}) {
597     $where .= <<SQL;
598       AND EXISTS (
599         SELECT invoice.trans_id
600         FROM invoice
601         WHERE (invoice.trans_id = a.id)
602           AND (invoice.description ILIKE ?)
603         LIMIT 1
604       )
605 SQL
606     push @values, like($form->{parts_description});
607   }
608
609   my ($cvar_where, @cvar_values) = CVar->build_filter_query('module'         => 'CT',
610                                                             'trans_id_field' => 'c.id',
611                                                             'filter'         => $form,
612                                                            );
613   if ($cvar_where) {
614     $where .= qq| AND ($cvar_where)|;
615     push @values, @cvar_values;
616   }
617
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);
622
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";
625   }
626
627   $query .= " WHERE $where ORDER BY $sortorder";
628
629   my @result = selectall_hashref_query($form, $dbh, $query, @values);
630
631   $form->{AR} = [ @result ];
632
633   $main::lxdebug->leave_sub();
634 }
635
636 sub get_transdate {
637   $main::lxdebug->enter_sub();
638
639   my ($self, $myconfig, $form) = @_;
640
641   # connect to database
642   my $dbh = SL::DB->client->dbh;
643
644   my $query =
645     "SELECT COALESCE(" .
646     "  (SELECT transdate FROM ar WHERE id = " .
647     "    (SELECT MAX(id) FROM ar) LIMIT 1), " .
648     "  current_date)";
649   ($form->{transdate}) = $dbh->selectrow_array($query);
650
651   $main::lxdebug->leave_sub();
652 }
653
654 sub setup_form {
655   $main::lxdebug->enter_sub();
656
657   my ($self, $form, $for_post_payments) = @_;
658
659   my ($exchangerate, $akey, $j, $k, $index, $taxamount, $totaltax, $taxrate, $diff, $totalwithholding, $withholdingrate,
660       $totalamount, $tax);
661
662   # forex
663   $form->{forex} = $form->{exchangerate};
664   $exchangerate  = $form->{exchangerate} ? $form->{exchangerate} : 1;
665
666   # expected keys: AR, AR_paid, AR_tax, AR_amount
667   foreach my $key (keys %{ $form->{AR_links} }) {
668     $j = 0;
669     $k = 0;
670
671     # if there is a value we have an old entry
672     next unless $form->{acc_trans}{$key};
673
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";
677
678     for my $i (1 .. scalar @{ $form->{acc_trans}{$key} }) {
679       if ($key eq "AR_paid") {
680         $j++;
681         $form->{"AR_paid_$j"} = $form->{acc_trans}{$key}->[$i-1]->{accno};
682
683         $form->{"acc_trans_id_$j"}    = $form->{acc_trans}{$key}->[$i - 1]->{acc_trans_id};
684         # reverse paid
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}++;
694
695       } else { # e.g. AR_amount, AR, AR_tax
696
697         $akey = $key;
698         $akey =~ s/AR_//; # e.g. tax, amount, AR, used to store form key tax_$i, amount_$i, ...
699
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);
704
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"};
709
710           } else {
711             $totalwithholding += $form->{"${akey}_$form->{acc_trans}{$key}->[$i-1]->{accno}"};
712             $withholdingrate  += $form->{"$form->{acc_trans}{$key}->[$i-1]->{accno}_rate"};
713           }
714
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"};
719
720         } else { # e.g. AR_amount, AR
721           $k++;
722           $form->{"${akey}_$k"} = $form->round_amount($form->{acc_trans}{$key}->[$i - 1]->{amount} / $exchangerate, 2);
723
724           if ($akey eq 'amount') {
725             $form->{rowcount}++;
726             $totalamount += $form->{"${akey}_$i"};
727
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};
732
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};
735           }
736         }
737       }
738     }
739   }
740
741   $form->{paidaccounts} = 1            if not defined $form->{paidaccounts};
742
743   if ($form->{taxincluded} && $form->{taxrate} && $totalamount) {
744
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"};
751     }
752     $form->{amount_1} += $form->round_amount($diff, 2);
753   }
754
755   $taxamount   = $form->round_amount($taxamount, 2);
756   $form->{tax} = $taxamount;
757
758   $form->{invtotal} = $totalamount + $totaltax;
759
760   $main::lxdebug->leave_sub();
761 }
762
763 sub storno {
764   my ($self, $form, $myconfig, $id) = @_;
765   $main::lxdebug->enter_sub();
766
767   my $rc = SL::DB->client->with_transaction(\&_storno, $self, $form, $myconfig, $id);
768
769   $::lxdebug->leave_sub;
770   return $rc;
771 }
772
773
774 sub _storno {
775   my ($self, $form, $myconfig, $id) = @_;
776
777   my ($query, $new_id, $storno_row, $acc_trans_rows);
778   my $dbh = SL::DB->client->dbh;
779
780   $query = qq|SELECT nextval('glid')|;
781   ($new_id) = selectrow_query($form, $dbh, $query);
782
783   $query = qq|SELECT * FROM ar WHERE id = ?|;
784   $storno_row = selectfirst_hashref_query($form, $dbh, $query, $id);
785
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};
793
794   delete @$storno_row{qw(itime mtime)};
795
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));
798
799   $query = qq|UPDATE ar SET paid = amount + paid, storno = 't' WHERE id = ?|;
800   do_query($form, $dbh, $query, $id);
801
802   $form->new_lastmtime('ar') if $id == $form->{id};
803
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);
807
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);
811   }
812
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));
819   }
820
821   map { IO->set_datepaid(table => 'ar', id => $_, dbh => $dbh) } ($id, $new_id);
822
823   return 1;
824 }
825
826
827 1;