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