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