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