AR/AP.pm - Währungskonten prüfen
[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., 675 Mass Ave, Cambridge, MA 02139, USA.
29 #======================================================================
30 #
31 # Accounts Receivable module backend routines
32 #
33 #======================================================================
34
35 package AR;
36
37 use Data::Dumper;
38 use SL::DATEV qw(:CONSTANTS);
39 use SL::DBUtils;
40 use SL::IO;
41 use SL::MoreCommon;
42 use SL::DB::Default;
43 use SL::TransNumber;
44 use SL::Util qw(trim);
45
46 use strict;
47
48 sub post_transaction {
49   $main::lxdebug->enter_sub();
50
51   my ($self, $myconfig, $form, $provided_dbh, $payments_only) = @_;
52
53   my ($query, $sth, $null, $taxrate, $amount, $tax);
54   my $exchangerate = 0;
55   my $i;
56
57   my @values;
58
59   my $dbh = $provided_dbh ? $provided_dbh : $form->dbconnect_noauto($myconfig);
60   $form->{defaultcurrency} = $form->get_default_currency($myconfig);
61
62   # set exchangerate
63   $form->{exchangerate} = ($form->{currency} eq $form->{defaultcurrency}) ? 1 :
64       ( $form->check_exchangerate($myconfig, $form->{currency}, $form->{transdate}, 'buy') ||
65         $form->parse_amount($myconfig, $form->{exchangerate}) );
66
67   # get the charts selected
68   map { ($form->{AR_amounts}{"amount_$_"}) = split /--/, $form->{"AR_amount_$_"} } 1 .. $form->{rowcount};
69
70   $form->{AR_amounts}{receivables} = $form->{ARselected};
71   $form->{AR}{receivables}         = $form->{ARselected};
72
73   $form->{tax}       = 0; # is this still needed?
74
75   # main calculation of rowcount loop inside Form method, amount_$i and tax_$i get formatted
76   $form->{taxincluded} = 0 unless $form->{taxincluded};
77   ($form->{netamount},$form->{total_tax},$form->{amount}) = $form->calculate_arap('sell', $form->{taxincluded}, $form->{exchangerate});
78
79   # adjust paidaccounts if there is no date in the last row
80   # this does not apply to stornos, where the paid field is set manually
81   unless ($form->{storno}) {
82     $form->{paidaccounts}-- unless $form->{"datepaid_$form->{paidaccounts}"};
83     $form->{paid} = 0;
84
85     # add payments
86     for $i (1 .. $form->{paidaccounts}) {
87       $form->{"paid_$i"} = $form->round_amount($form->parse_amount($myconfig, $form->{"paid_$i"}), 2);
88       $form->{paid}     += $form->{"paid_$i"};
89       $form->{datepaid}  = $form->{"datepaid_$i"};
90     }
91
92   }
93   $form->{paid}   = $form->round_amount($form->{paid} * ($form->{exchangerate} || 1), 2);
94
95   ($null, $form->{employee_id}) = split /--/, $form->{employee};
96
97   $form->get_employee($dbh) unless $form->{employee_id};
98
99   # if we have an id delete old records else make one
100   if (!$payments_only) {
101     if ($form->{id}) {
102       # delete detail records
103       $query = qq|DELETE FROM acc_trans WHERE trans_id = ?|;
104       do_query($form, $dbh, $query, $form->{id});
105
106     } else {
107       $query = qq|SELECT nextval('glid')|;
108       ($form->{id}) = selectrow_query($form, $dbh, $query);
109       $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 = ?))|;
110       do_query($form, $dbh, $query, $form->{id}, $form->{employee_id}, $form->{currency}, $form->{customer_id});
111       if (!$form->{invnumber}) {
112         my $trans_number   = SL::TransNumber->new(type => 'invoice', dbh => $dbh, number => $form->{partnumber}, id => $form->{id});
113         $form->{invnumber} = $trans_number->create_unique;
114       }
115     }
116   }
117
118   # update department
119   ($null, $form->{department_id}) = split(/--/, $form->{department});
120
121   # amount for AR account
122   $form->{receivables} = $form->round_amount($form->{amount}, 2) * -1;
123
124   # update exchangerate
125   $form->update_exchangerate($dbh, $form->{currency}, $form->{transdate}, $form->{exchangerate}, 0)
126     if ($form->{currency} ne $form->{defaultcurrency}) && !$form->check_exchangerate($myconfig, $form->{currency}, $form->{transdate}, 'buy');
127
128   if (!$payments_only) {
129     $query =
130       qq|UPDATE ar set
131            invnumber = ?, ordnumber = ?, transdate = ?, customer_id = ?,
132            taxincluded = ?, amount = ?, duedate = ?, paid = ?,
133            currency_id = (SELECT id FROM currencies WHERE name = ?),
134            netamount = ?, notes = ?, department_id = ?,
135            employee_id = ?, storno = ?, storno_id = ?, globalproject_id = ?,
136            direct_debit = ?
137          WHERE id = ?|;
138     my @values = ($form->{invnumber}, $form->{ordnumber}, conv_date($form->{transdate}), conv_i($form->{customer_id}), $form->{taxincluded} ? 't' : 'f', $form->{amount},
139                   conv_date($form->{duedate}), $form->{paid},
140                   $form->{currency},
141                   $form->{netamount}, $form->{notes}, conv_i($form->{department_id}),
142                   conv_i($form->{employee_id}), $form->{storno} ? 't' : 'f', $form->{storno_id},
143                   conv_i($form->{globalproject_id}), $form->{direct_debit} ? 't' : 'f', conv_i($form->{id}));
144     do_query($form, $dbh, $query, @values);
145
146     # add individual transactions for AR, amount and taxes
147     for $i (1 .. $form->{rowcount}) {
148       if ($form->{"amount_$i"} != 0) {
149         my $project_id = conv_i($form->{"project_id_$i"});
150
151         # insert detail records in acc_trans
152         $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, project_id, taxkey, tax_id, chart_link)
153                      VALUES (?, (SELECT c.id FROM chart c WHERE c.accno = ?), ?, ?, ?, ?, ?, (SELECT c.link FROM chart c WHERE c.accno = ?))|;
154         @values = (conv_i($form->{id}), $form->{AR_amounts}{"amount_$i"}, conv_i($form->{"amount_$i"}), conv_date($form->{transdate}), $project_id,
155                    conv_i($form->{"taxkey_$i"}), conv_i($form->{"tax_id_$i"}), $form->{AR_amounts}{"amount_$i"});
156         do_query($form, $dbh, $query, @values);
157
158         if ($form->{"tax_$i"} != 0) {
159           # insert detail records in acc_trans
160           $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, project_id, taxkey, tax_id, chart_link)
161                        VALUES (?, (SELECT c.id FROM chart c WHERE c.accno = ?), ?, ?, ?, ?, ?, (SELECT c.link FROM chart c WHERE c.accno = ?))|;
162           @values = (conv_i($form->{id}), $form->{AR_amounts}{"tax_$i"}, conv_i($form->{"tax_$i"}), conv_date($form->{transdate}), $project_id,
163                      conv_i($form->{"taxkey_$i"}), conv_i($form->{"tax_id_$i"}), $form->{AR_amounts}{"tax_$i"});
164           do_query($form, $dbh, $query, @values);
165         }
166       }
167     }
168
169     # add recievables
170     $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, taxkey, tax_id, chart_link)
171                  VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, (SELECT taxkey_id FROM chart WHERE accno = ?),
172                  (SELECT tax_id
173                   FROM taxkeys
174                   WHERE chart_id= (SELECT id
175                                    FROM chart
176                                    WHERE accno = ?)
177                   AND startdate <= ?
178                   ORDER BY startdate DESC LIMIT 1),
179                  (SELECT c.link FROM chart c WHERE c.accno = ?))|;
180     @values = (conv_i($form->{id}), $form->{AR_amounts}{receivables}, conv_i($form->{receivables}), conv_date($form->{transdate}),
181                 $form->{AR_amounts}{receivables}, $form->{AR_amounts}{receivables}, conv_date($form->{transdate}), $form->{AR_amounts}{receivables});
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 id FROM chart WHERE accno = ?), ?, ?, ?, (SELECT taxkey_id FROM chart WHERE accno = ?),
222                      (SELECT tax_id
223                       FROM taxkeys
224                       WHERE chart_id= (SELECT id
225                                        FROM chart
226                                        WHERE accno = ?)
227                       AND startdate <= ?
228                       ORDER BY startdate DESC LIMIT 1),
229                      (SELECT c.link FROM chart c WHERE c.accno = ?))|;
230         @values = (conv_i($form->{id}), $form->{AR}{receivables}, $amount, conv_date($form->{"datepaid_$i"}), $project_id, $form->{AR}{receivables}, $form->{AR}{receivables}, conv_date($form->{"datepaid_$i"}),
231         $form->{AR}{receivables});
232
233         do_query($form, $dbh, $query, @values);
234       }
235
236       if ($form->{"paid_$i"} != 0) {
237         # add payment
238         my $project_id = conv_i($form->{"paid_project_id_$i"});
239         my $gldate = (conv_date($form->{"gldate_$i"}))? conv_date($form->{"gldate_$i"}) : conv_date($form->current_date($myconfig));
240         $amount = $form->{"paid_$i"} * -1;
241         $query  = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, gldate, source, memo, project_id, taxkey, tax_id, chart_link)
242                      VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, ?, ?, ?, ?, (SELECT taxkey_id FROM chart WHERE accno = ?),
243                      (SELECT tax_id
244                       FROM taxkeys
245                       WHERE chart_id= (SELECT id
246                                        FROM chart
247                                        WHERE accno = ?)
248                       AND startdate <= ?
249                       ORDER BY startdate DESC LIMIT 1),
250                      (SELECT c.link FROM chart c WHERE c.accno = ?))|;
251         @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"},
252                     $form->{AR}{"paid_$i"}, conv_date($form->{"datepaid_$i"}), $form->{AR}{"paid_$i"});
253         do_query($form, $dbh, $query, @values);
254
255         # exchangerate difference for payment
256         $amount = $form->round_amount( $form->{"paid_$i"} * ($form->{"exchangerate_$i"} - 1) * -1, 2);
257
258         if ($amount != 0) {
259           $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, fx_transaction, cleared, project_id, taxkey, tax_id, chart_link)
260                        VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, 't', 'f', ?, (SELECT taxkey_id FROM chart WHERE accno = ?),
261                        (SELECT tax_id
262                         FROM taxkeys
263                         WHERE chart_id= (SELECT id
264                                          FROM chart
265                                          WHERE accno = ?)
266                         AND startdate <= ?
267                         ORDER BY startdate DESC LIMIT 1),
268                        (SELECT c.link FROM chart c WHERE c.accno = ?))|;
269           @values = (conv_i($form->{id}), $form->{AR}{"paid_$i"}, $amount, conv_date($form->{"datepaid_$i"}), $project_id, $form->{AR}{"paid_$i"},
270                     $form->{AR}{"paid_$i"}, conv_date($form->{"datepaid_$i"}), $form->{AR}{"paid_$i"});
271           do_query($form, $dbh, $query, @values);
272         }
273
274         # exchangerate gain/loss
275         $amount = $form->round_amount( $form->{"paid_$i"} * ($form->{exchangerate} - $form->{"exchangerate_$i"}) * -1, 2);
276
277         if ($amount != 0) {
278           # fetch fxgain and fxloss chart info from defaults if charts aren't already filled in form
279           if ( !$form->{fxgain_accno} && $::instance_conf->get_fxgain_accno_id ) {
280             $form->{fxgain_accno} = SL::DB::Manager::Chart->find_by(id => $::instance_conf->get_fxgain_accno_id)->accno;
281           };
282           if ( !$form->{fxloss_accno} && $::instance_conf->get_fxloss_accno_id ) {
283             $form->{fxloss_accno} = SL::DB::Manager::Chart->find_by(id => $::instance_conf->get_fxloss_accno_id)->accno;
284           };
285           die "fxloss_accno missing" if $amount < 0 and not $form->{fxloss_accno};
286           die "fxgain_accno missing" if $amount > 0 and not $form->{fxgain_accno};
287           my $accno = ($amount > 0) ? $form->{fxgain_accno} : $form->{fxloss_accno};
288           $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, fx_transaction, cleared, project_id, taxkey, tax_id, chart_link)
289                        VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, 't', 'f', ?, (SELECT taxkey_id FROM chart WHERE accno = ?),
290                        (SELECT tax_id
291                         FROM taxkeys
292                         WHERE chart_id= (SELECT id
293                                          FROM chart
294                                          WHERE accno = ?)
295                         AND startdate <= ?
296                         ORDER BY startdate DESC LIMIT 1),
297                        (SELECT c.link FROM chart c WHERE c.accno = ?))|;
298           @values = (conv_i($form->{id}), $accno, $amount, conv_date($form->{"datepaid_$i"}), $project_id, $accno, $accno, conv_date($form->{"datepaid_$i"}), $accno);
299           do_query($form, $dbh, $query, @values);
300         }
301       }
302
303       # update exchangerate record
304       $form->update_exchangerate($dbh, $form->{currency}, $form->{"datepaid_$i"}, $form->{"exchangerate_$i"}, 0)
305         if ($form->{currency} ne $form->{defaultcurrency}) && !$form->check_exchangerate($myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy');
306     }
307   }
308
309   IO->set_datepaid(table => 'ar', id => $form->{id}, dbh => $dbh);
310
311   # safety check datev export
312   if ($::instance_conf->get_datev_check_on_ar_transaction) {
313     my $transdate = $::form->{transdate} ? DateTime->from_lxoffice($::form->{transdate}) : undef;
314     $transdate  ||= DateTime->today;
315
316     my $datev = SL::DATEV->new(
317       exporttype => DATEV_ET_BUCHUNGEN,
318       format     => DATEV_FORMAT_KNE,
319       dbh        => $dbh,
320       trans_id   => $form->{id},
321     );
322
323     $datev->export;
324
325     if ($datev->errors) {
326       $dbh->rollback;
327       die join "\n", $::locale->text('DATEV check returned errors:'), $datev->errors;
328     }
329   }
330
331   my $rc = 1;
332   if (!$provided_dbh) {
333     $rc = $dbh->commit();
334     $dbh->disconnect();
335   }
336
337   $main::lxdebug->leave_sub() and return $rc;
338 }
339
340 sub _delete_payments {
341   $main::lxdebug->enter_sub();
342
343   my ($self, $form, $dbh) = @_;
344
345   my @delete_acc_trans_ids;
346
347   # Delete old payment entries from acc_trans.
348   my $query =
349     qq|SELECT acc_trans_id
350        FROM acc_trans
351        WHERE (trans_id = ?) AND fx_transaction
352
353        UNION
354
355        SELECT at.acc_trans_id
356        FROM acc_trans at
357        LEFT JOIN chart c ON (at.chart_id = c.id)
358        WHERE (trans_id = ?) AND (c.link LIKE '%AR_paid%')|;
359   push @delete_acc_trans_ids, selectall_array_query($form, $dbh, $query, conv_i($form->{id}), conv_i($form->{id}));
360
361   $query =
362     qq|SELECT at.acc_trans_id
363        FROM acc_trans at
364        LEFT JOIN chart c ON (at.chart_id = c.id)
365        WHERE (trans_id = ?)
366          AND ((c.link = 'AR') OR (c.link LIKE '%:AR') OR (c.link LIKE 'AR:%'))
367        ORDER BY at.acc_trans_id
368        OFFSET 1|;
369   push @delete_acc_trans_ids, selectall_array_query($form, $dbh, $query, conv_i($form->{id}));
370
371   if (@delete_acc_trans_ids) {
372     $query = qq|DELETE FROM acc_trans WHERE acc_trans_id IN (| . join(", ", @delete_acc_trans_ids) . qq|)|;
373     do_query($form, $dbh, $query);
374   }
375
376   $main::lxdebug->leave_sub();
377 }
378
379 sub post_payment {
380   $main::lxdebug->enter_sub();
381
382   my ($self, $myconfig, $form, $locale) = @_;
383
384   # connect to database, turn off autocommit
385   my $dbh = $form->dbconnect_noauto($myconfig);
386
387   my (%payments, $old_form, $row, $item, $query, %keep_vars);
388
389   $old_form = save_form();
390
391   # Delete all entries in acc_trans from prior payments.
392   if (SL::DB::Default->get->payments_changeable != 0) {
393     $self->_delete_payments($form, $dbh);
394   }
395
396   # Save the new payments the user made before cleaning up $form.
397   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$';
398   map { $payments{$_} = $form->{$_} } grep m/$payments_re/, keys %{ $form };
399
400   # Clean up $form so that old content won't tamper the results.
401   %keep_vars = map { $_, 1 } qw(login password id);
402   map { delete $form->{$_} unless $keep_vars{$_} } keys %{ $form };
403
404   # Retrieve the invoice from the database.
405   $form->create_links('AR', $myconfig, 'customer', $dbh);
406
407   # Restore the payment options from the user input.
408   map { $form->{$_} = $payments{$_} } keys %payments;
409
410   # Set up the content of $form in the way that AR::post_transaction() expects.
411
412   $self->setup_form($form, 1);
413
414   $form->{exchangerate}    = $form->format_amount($myconfig, $form->{exchangerate});
415   $form->{defaultcurrency} = $form->get_default_currency($myconfig);
416
417   # Get the AR accno (which is normally done by Form::create_links()).
418   $query =
419     qq|SELECT c.accno
420        FROM acc_trans at
421        LEFT JOIN chart c ON (at.chart_id = c.id)
422        WHERE (trans_id = ?)
423          AND ((c.link = 'AR') OR (c.link LIKE '%:AR') OR (c.link LIKE 'AR:%'))
424        ORDER BY at.acc_trans_id
425        LIMIT 1|;
426
427   ($form->{ARselected}) = selectfirst_array_query($form, $dbh, $query, conv_i($form->{id}));
428
429   # Post the new payments.
430   $self->post_transaction($myconfig, $form, $dbh, 1);
431
432   restore_form($old_form);
433
434   my $rc = $dbh->commit();
435   $dbh->disconnect();
436
437   $main::lxdebug->leave_sub();
438
439   return $rc;
440 }
441
442 sub delete_transaction {
443   $main::lxdebug->enter_sub();
444
445   my ($self, $myconfig, $form) = @_;
446
447   # connect to database, turn AutoCommit off
448   my $dbh = $form->dbconnect_noauto($myconfig);
449
450   # acc_trans entries are deleted by database triggers.
451   my $query = qq|DELETE FROM ar WHERE id = ?|;
452   do_query($form, $dbh, $query, $form->{id});
453
454   # commit
455   my $rc = $dbh->commit;
456   $dbh->disconnect;
457
458   $main::lxdebug->leave_sub();
459
460   return $rc;
461 }
462
463 sub ar_transactions {
464   $main::lxdebug->enter_sub();
465
466   my ($self, $myconfig, $form) = @_;
467
468   # connect to database
469   my $dbh = $form->get_standard_dbh($myconfig);
470
471   my @values;
472
473   my $query =
474     qq|SELECT DISTINCT a.id, a.invnumber, a.ordnumber, a.cusordnumber, a.transdate, | .
475     qq|  a.duedate, a.netamount, a.amount, a.paid, | .
476     qq|  a.invoice, a.datepaid, a.notes, a.shipvia, | .
477     qq|  a.shippingpoint, a.storno, a.storno_id, a.globalproject_id, | .
478     qq|  a.marge_total, a.marge_percent, | .
479     qq|  a.transaction_description, a.direct_debit, | .
480     qq|  pr.projectnumber AS globalprojectnumber, | .
481     qq|  c.name, c.customernumber, c.country, c.ustid, b.description as customertype, | .
482     qq|  c.id as customer_id, | .
483     qq|  e.name AS employee, | .
484     qq|  e2.name AS salesman, | .
485     qq|  dc.dunning_description, | .
486     qq|  tz.description AS taxzone, | .
487     qq|  pt.description AS payment_terms, | .
488     qq|  d.description AS department, | .
489     qq{  ( SELECT ch.accno || ' -- ' || ch.description
490            FROM acc_trans at
491            LEFT JOIN chart ch ON ch.id = at.chart_id
492            WHERE ch.link ~ 'AR[[:>:]]'
493             AND at.trans_id = a.id
494             LIMIT 1
495           ) AS charts } .
496     qq|FROM ar a | .
497     qq|JOIN customer c ON (a.customer_id = c.id) | .
498     qq|LEFT JOIN contacts cp ON (a.cp_id = cp.cp_id) | .
499     qq|LEFT JOIN employee e ON (a.employee_id = e.id) | .
500     qq|LEFT JOIN employee e2 ON (a.salesman_id = e2.id) | .
501     qq|LEFT JOIN dunning_config dc ON (a.dunning_config_id = dc.id) | .
502     qq|LEFT JOIN project pr ON (a.globalproject_id = pr.id)| .
503     qq|LEFT JOIN tax_zones tz ON (tz.id = a.taxzone_id)| .
504     qq|LEFT JOIN payment_terms pt ON (pt.id = a.payment_id)| .
505     qq|LEFT JOIN business b ON (b.id = c.business_id)| .
506     qq|LEFT JOIN department d ON (d.id = a.department_id)|;
507
508   my $where = "1 = 1";
509
510   unless ( $::auth->assert('show_ar_transactions', 1) ) {
511     $where .= " AND NOT invoice = 'f' ";  # remove ar transactions from Sales -> Reports -> Invoices
512   };
513
514   if ($form->{customernumber}) {
515     $where .= " AND c.customernumber = ?";
516     push(@values, trim($form->{customernumber}));
517   }
518   if ($form->{customer_id}) {
519     $where .= " AND a.customer_id = ?";
520     push(@values, $form->{customer_id});
521   } elsif ($form->{customer}) {
522     $where .= " AND c.name ILIKE ?";
523     push(@values, like($form->{customer}));
524   }
525   if ($form->{"cp_name"}) {
526     $where .= " AND (cp.cp_name ILIKE ? OR cp.cp_givenname ILIKE ?)";
527     push(@values, (like($form->{"cp_name"}))x2);
528   }
529   if ($form->{business_id}) {
530     my $business_id = $form->{business_id};
531     $where .= " AND c.business_id = ?";
532     push(@values, $business_id);
533   }
534   if ($form->{department_id}) {
535     my $department_id = $form->{department_id};
536     $where .= " AND a.department_id = ?";
537     push(@values, $department_id);
538   }
539   if ($form->{department}) {
540     my $department = like($form->{department});
541     $where .= " AND d.description ILIKE ?";
542     push(@values, $department);
543   }
544   foreach my $column (qw(invnumber ordnumber cusordnumber notes transaction_description)) {
545     if ($form->{$column}) {
546       $where .= " AND a.$column ILIKE ?";
547       push(@values, like($form->{$column}));
548     }
549   }
550   if ($form->{"project_id"}) {
551     $where .=
552       qq|AND ((a.globalproject_id = ?) OR EXISTS | .
553       qq|  (SELECT * FROM invoice i | .
554       qq|   WHERE i.project_id = ? AND i.trans_id = a.id) | .
555       qq| OR EXISTS | .
556       qq|  (SELECT * FROM acc_trans at | .
557       qq|   WHERE at.project_id = ? AND at.trans_id = a.id)| .
558       qq|  )|;
559     push(@values, $form->{project_id}, $form->{project_id}, $form->{project_id});
560   }
561
562   if ($form->{transdatefrom}) {
563     $where .= " AND a.transdate >= ?";
564     push(@values, trim($form->{transdatefrom}));
565   }
566   if ($form->{transdateto}) {
567     $where .= " AND a.transdate <= ?";
568     push(@values, trim($form->{transdateto}));
569   }
570   if ($form->{duedatefrom}) {
571     $where .= " AND a.duedate >= ?";
572     push(@values, trim($form->{duedatefrom}));
573   }
574   if ($form->{duedateto}) {
575     $where .= " AND a.duedate <= ?";
576     push(@values, trim($form->{duedateto}));
577   }
578   if ($form->{open} || $form->{closed}) {
579     unless ($form->{open} && $form->{closed}) {
580       $where .= " AND a.amount <> a.paid" if ($form->{open});
581       $where .= " AND a.amount = a.paid"  if ($form->{closed});
582     }
583   }
584
585   if (!$main::auth->assert('sales_all_edit', 1)) {
586     # only show own invoices
587     $where .= " AND a.employee_id = (select id from employee where login= ?)";
588     push (@values, $::myconfig{login});
589   } else {
590     if ($form->{employee_id}) {
591       $where .= " AND a.employee_id = ?";
592       push @values, conv_i($form->{employee_id});
593     }
594     if ($form->{salesman_id}) {
595       $where .= " AND a.salesman_id = ?";
596       push @values, conv_i($form->{salesman_id});
597     }
598   };
599
600   if ($form->{parts_partnumber}) {
601     $where .= <<SQL;
602       AND EXISTS (
603         SELECT invoice.trans_id
604         FROM invoice
605         LEFT JOIN parts ON (invoice.parts_id = parts.id)
606         WHERE (invoice.trans_id = a.id)
607           AND (parts.partnumber ILIKE ?)
608         LIMIT 1
609       )
610 SQL
611     push @values, like($form->{parts_partnumber});
612   }
613
614   if ($form->{parts_description}) {
615     $where .= <<SQL;
616       AND EXISTS (
617         SELECT invoice.trans_id
618         FROM invoice
619         WHERE (invoice.trans_id = a.id)
620           AND (invoice.description ILIKE ?)
621         LIMIT 1
622       )
623 SQL
624     push @values, like($form->{parts_description});
625   }
626
627   my ($cvar_where, @cvar_values) = CVar->build_filter_query('module'         => 'CT',
628                                                             'trans_id_field' => 'c.id',
629                                                             'filter'         => $form,
630                                                            );
631   if ($cvar_where) {
632     $where .= qq| AND ($cvar_where)|;
633     push @values, @cvar_values;
634   }
635
636   my @a = qw(transdate invnumber name);
637   push @a, "employee" if $form->{l_employee};
638   my $sortdir   = !defined $form->{sortdir} ? 'ASC' : $form->{sortdir} ? 'ASC' : 'DESC';
639   my $sortorder = join(', ', map { "$_ $sortdir" } @a);
640
641   if (grep({ $_ eq $form->{sort} } qw(id transdate duedate invnumber ordnumber cusordnumber name datepaid employee shippingpoint shipvia transaction_description))) {
642     $sortorder = $form->{sort} . " $sortdir";
643   }
644
645   $query .= " WHERE $where ORDER BY $sortorder";
646
647   my @result = selectall_hashref_query($form, $dbh, $query, @values);
648
649   $form->{AR} = [ @result ];
650
651   $main::lxdebug->leave_sub();
652 }
653
654 sub get_transdate {
655   $main::lxdebug->enter_sub();
656
657   my ($self, $myconfig, $form) = @_;
658
659   # connect to database
660   my $dbh = $form->dbconnect($myconfig);
661
662   my $query =
663     "SELECT COALESCE(" .
664     "  (SELECT transdate FROM ar WHERE id = " .
665     "    (SELECT MAX(id) FROM ar) LIMIT 1), " .
666     "  current_date)";
667   ($form->{transdate}) = $dbh->selectrow_array($query);
668
669   $dbh->disconnect;
670
671   $main::lxdebug->leave_sub();
672 }
673
674 sub setup_form {
675   $main::lxdebug->enter_sub();
676
677   my ($self, $form, $for_post_payments) = @_;
678
679   my ($exchangerate, $akey, $j, $k, $index, $taxamount, $totaltax, $taxrate, $diff, $totalwithholding, $withholdingrate,
680       $totalamount, $tax);
681
682   # forex
683   $form->{forex} = $form->{exchangerate};
684   $exchangerate  = $form->{exchangerate} ? $form->{exchangerate} : 1;
685
686   # expected keys: AR, AR_paid, AR_tax, AR_amount 
687   foreach my $key (keys %{ $form->{AR_links} }) {
688     $j = 0;
689     $k = 0;
690
691     # if there is a value we have an old entry
692     next unless $form->{acc_trans}{$key};
693
694     # do not use old entries for payments. They come from the form
695     # even if they are not changeable (then they are in hiddens)
696     next if $for_post_payments && $key eq "AR_paid";
697
698     for my $i (1 .. scalar @{ $form->{acc_trans}{$key} }) {
699       if ($key eq "AR_paid") {
700         $j++;
701         $form->{"AR_paid_$j"} = $form->{acc_trans}{$key}->[$i-1]->{accno};
702
703         $form->{"acc_trans_id_$j"}    = $form->{acc_trans}{$key}->[$i - 1]->{acc_trans_id};
704         # reverse paid
705         $form->{"paid_$j"}            = $form->{acc_trans}{$key}->[$i - 1]->{amount} * -1;
706         $form->{"datepaid_$j"}        = $form->{acc_trans}{$key}->[$i - 1]->{transdate};
707         $form->{"gldate_$j"}          = $form->{acc_trans}{$key}->[$i - 1]->{gldate};
708         $form->{"source_$j"}          = $form->{acc_trans}{$key}->[$i - 1]->{source};
709         $form->{"memo_$j"}            = $form->{acc_trans}{$key}->[$i - 1]->{memo};
710         $form->{"forex_$j"}           = $form->{acc_trans}{$key}->[$i - 1]->{exchangerate};
711         $form->{"exchangerate_$i"}    = $form->{"forex_$j"};
712         $form->{"paid_project_id_$j"} = $form->{acc_trans}{$key}->[$i - 1]->{project_id};
713         $form->{paidaccounts}++;
714
715       } else { # e.g. AR_amount, AR, AR_tax
716
717         $akey = $key;
718         $akey =~ s/AR_//; # e.g. tax, amount, AR, used to store form key tax_$i, amount_$i, ...
719
720         if ($key eq "AR_tax" || $key eq "AP_tax") { # AR_tax
721           $form->{"${key}_$form->{acc_trans}{$key}->[$i-1]->{accno}"}  = "$form->{acc_trans}{$key}->[$i-1]->{accno}--$form->{acc_trans}{$key}->[$i-1]->{description}";
722           # determine the rounded tax amounts for each account, e.g. tax_1776
723           $form->{"${akey}_$form->{acc_trans}{$key}->[$i-1]->{accno}"} = $form->round_amount($form->{acc_trans}{$key}->[$i - 1]->{amount} / $exchangerate, 2);
724
725           # 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
726           if ($form->{"$form->{acc_trans}{$key}->[$i-1]->{accno}_rate"} > 0) {
727             $totaltax += $form->{"${akey}_$form->{acc_trans}{$key}->[$i-1]->{accno}"};
728             $taxrate  += $form->{"$form->{acc_trans}{$key}->[$i-1]->{accno}_rate"};
729
730           } else {
731             $totalwithholding += $form->{"${akey}_$form->{acc_trans}{$key}->[$i-1]->{accno}"};
732             $withholdingrate  += $form->{"$form->{acc_trans}{$key}->[$i-1]->{accno}_rate"};
733           }
734
735           $index                 = $form->{acc_trans}{$key}->[$i - 1]->{index};
736           $form->{"tax_$index"}  = $form->round_amount($form->{acc_trans}{$key}->[$i - 1]->{amount} / $exchangerate, 2); # convert the tax_$i amounts
737           # currently totaltax is the sum of rounded tax amounts, is this correct?
738           $totaltax             += $form->{"tax_$index"};
739
740         } else { # e.g. AR_amount, AR
741           $k++;
742           $form->{"${akey}_$k"} = $form->round_amount($form->{acc_trans}{$key}->[$i - 1]->{amount} / $exchangerate, 2);
743
744           if ($akey eq 'amount') {
745             $form->{rowcount}++;
746             $totalamount += $form->{"${akey}_$i"};
747
748             $form->{"oldprojectnumber_$k"} = $form->{acc_trans}{$key}->[$i-1]->{projectnumber};
749             $form->{"projectnumber_$k"}    = $form->{acc_trans}{$key}->[$i-1]->{projectnumber};
750             $form->{taxrate}               = $form->{acc_trans}{$key}->[$i - 1]->{rate};
751             $form->{"project_id_$k"}       = $form->{acc_trans}{$key}->[$i-1]->{project_id};
752           }
753
754           $form->{"${key}_$i"} = "$form->{acc_trans}{$key}->[$i-1]->{accno}--$form->{acc_trans}{$key}->[$i-1]->{description}";
755
756           if ($akey eq "AR") {
757             $form->{ARselected} = $form->{acc_trans}{$key}->[$i-1]->{accno};
758
759           } elsif ($akey eq "amount") {
760             $form->{"${key}_$k"}   = $form->{acc_trans}{$key}->[$i-1]->{accno} . "--" . $form->{acc_trans}{$key}->[$i-1]->{id};
761             $form->{"taxchart_$k"} = $form->{acc_trans}{$key}->[$i-1]->{id}    . "--" . $form->{acc_trans}{$key}->[$i-1]->{rate};
762           }
763         }
764       }
765     }
766   }
767
768   $form->{paidaccounts} = 1            if not defined $form->{paidaccounts};
769
770   if ($form->{taxincluded} && $form->{taxrate} && $totalamount) {
771
772     # add tax to amounts and invtotal
773     for my $i (1 .. $form->{rowcount}) {
774       $taxamount            = ($totaltax + $totalwithholding) * $form->{"amount_$i"} / $totalamount;
775       $tax                  = $form->round_amount($taxamount, 2);
776       $diff                += ($taxamount - $tax);
777       $form->{"amount_$i"} += $form->{"tax_$i"};
778     }
779     $form->{amount_1} += $form->round_amount($diff, 2);
780   }
781
782   $taxamount   = $form->round_amount($taxamount, 2);
783   $form->{tax} = $taxamount;
784
785   $form->{invtotal} = $totalamount + $totaltax;
786
787   $main::lxdebug->leave_sub();
788 }
789
790 sub storno {
791   $main::lxdebug->enter_sub();
792
793   my ($self, $form, $myconfig, $id) = @_;
794
795   my ($query, $new_id, $storno_row, $acc_trans_rows);
796   my $dbh = $form->get_standard_dbh($myconfig);
797
798   $query = qq|SELECT nextval('glid')|;
799   ($new_id) = selectrow_query($form, $dbh, $query);
800
801   $query = qq|SELECT * FROM ar WHERE id = ?|;
802   $storno_row = selectfirst_hashref_query($form, $dbh, $query, $id);
803
804   $storno_row->{id}         = $new_id;
805   $storno_row->{storno_id}  = $id;
806   $storno_row->{storno}     = 't';
807   $storno_row->{invnumber}  = 'Storno-' . $storno_row->{invnumber};
808   $storno_row->{amount}    *= -1;
809   $storno_row->{netamount} *= -1;
810   $storno_row->{paid}       = $storno_row->{amount};
811
812   delete @$storno_row{qw(itime mtime)};
813
814   $query = sprintf 'INSERT INTO ar (%s) VALUES (%s)', join(', ', keys %$storno_row), join(', ', map '?', values %$storno_row);
815   do_query($form, $dbh, $query, (values %$storno_row));
816
817   $query = qq|UPDATE ar SET paid = amount + paid, storno = 't' WHERE id = ?|;
818   do_query($form, $dbh, $query, $id);
819
820   $form->new_lastmtime('ar') if $id == $form->{id};
821
822   # now copy acc_trans entries
823   $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|;
824   my $rowref = selectall_hashref_query($form, $dbh, $query, $id);
825
826   # kill all entries containing payments, which are the last 2n rows, of which the last has link =~ /paid/
827   while ($rowref->[-1]{link} =~ /paid/) {
828     splice(@$rowref, -2);
829   }
830
831   for my $row (@$rowref) {
832     delete @$row{qw(itime mtime link acc_trans_id)};
833     $query = sprintf 'INSERT INTO acc_trans (%s) VALUES (%s)', join(', ', keys %$row), join(', ', map '?', values %$row);
834     $row->{trans_id}   = $new_id;
835     $row->{amount}    *= -1;
836     do_query($form, $dbh, $query, (values %$row));
837   }
838
839   map { IO->set_datepaid(table => 'ar', id => $_, dbh => $dbh) } ($id, $new_id);
840
841   $dbh->commit;
842
843   $main::lxdebug->leave_sub();
844 }
845
846
847 1;