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