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