Einführung einer ID-Spalte in acc_trans
[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::MoreCommon;
40
41 our (%myconfig, $form);
42
43 sub post_transaction {
44   $main::lxdebug->enter_sub();
45
46   my ($self, $myconfig, $form, $provided_dbh, $payments_only) = @_;
47
48   my ($query, $sth, $null, $taxrate, $amount, $tax);
49   my $exchangerate = 0;
50   my $i;
51
52   my @values;
53
54   my $dbh = $provided_dbh ? $provided_dbh : $form->dbconnect_noauto($myconfig);
55   $form->{defaultcurrency} = $form->get_default_currency($myconfig);
56
57   # set exchangerate
58   $form->{exchangerate} = ($form->{currency} eq $form->{defaultcurrency}) ? 1 :
59       ( $form->check_exchangerate($myconfig, $form->{currency}, $form->{transdate}, 'buy') ||
60         $form->parse_amount($myconfig, $form->{exchangerate}) );
61
62   # get the charts selected
63   map { ($form->{AR_amounts}{"amount_$_"}) = split /--/, $form->{"AR_amount_$_"} } 1 .. $form->{rowcount};
64
65   $form->{AR_amounts}{receivables} = $form->{ARselected};
66   $form->{AR}{receivables}         = $form->{ARselected};
67
68   # parsing
69   for $i (1 .. $form->{rowcount}) {
70     $form->{"amount_$i"} = $form->round_amount($form->parse_amount($myconfig, $form->{"amount_$i"}) * $form->{exchangerate}, 2);
71     $form->{amount}     += $form->{"amount_$i"};
72     $form->{"tax_$i"}    = $form->parse_amount($myconfig, $form->{"tax_$i"});
73   }
74
75   # this is for ar
76   $form->{tax}       = 0;
77   $form->{netamount} = 0;
78   $form->{total_tax} = 0;
79
80   # taxincluded doesn't make sense if there is no amount
81   $form->{taxincluded} = 0 unless $form->{amount};
82
83   for $i (1 .. $form->{rowcount}) {
84     ($form->{"tax_id_$i"}) = split /--/, $form->{"taxchart_$i"};
85
86     $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|;
87     ($form->{AR_amounts}{"tax_$i"}, $form->{"taxkey_$i"}, $form->{"taxrate_$i"}) = selectrow_query($form, $dbh, $query, $form->{"tax_id_$i"});
88
89     if ($form->{taxincluded} *= 1) {
90       $tax = $form->{"korrektur_$i"}
91         ? $form->{"tax_$i"}
92         : $form->{"amount_$i"} - ($form->{"amount_$i"} / ($form->{"taxrate_$i"} + 1)); # should be same as taxrate * amount / (taxrate + 1)
93       $form->{"amount_$i"} = $form->round_amount($form->{"amount_$i"} - $tax, 2);
94       $form->{"tax_$i"}    = $form->round_amount($tax, 2);
95     } else {
96       $form->{"tax_$i"}    = $form->{"amount_$i"} * $form->{"taxrate_$i"} unless $form->{"korrektur_$i"};
97       $form->{"tax_$i"}    = $form->round_amount($form->{"tax_$i"} * $form->{exchangerate}, 2);
98     }
99     $form->{netamount}  += $form->{"amount_$i"};
100     $form->{total_tax}  += $form->{"tax_$i"};
101   }
102
103   # adjust paidaccounts if there is no date in the last row
104   # this does not apply to stornos, where the paid field is set manually
105   unless ($form->{storno}) {
106     $form->{paidaccounts}-- unless $form->{"datepaid_$form->{paidaccounts}"};
107     $form->{paid} = 0;
108
109     # add payments
110     for $i (1 .. $form->{paidaccounts}) {
111       $form->{"paid_$i"} = $form->round_amount($form->parse_amount($myconfig, $form->{"paid_$i"}), 2);
112       $form->{paid}     += $form->{"paid_$i"};
113       $form->{datepaid}  = $form->{"datepaid_$i"};
114     }
115
116     $form->{amount} = $form->{netamount} + $form->{total_tax};
117   }
118   $form->{paid}   = $form->round_amount($form->{paid} * ($form->{exchangerate} || 1), 2);
119
120   ($null, $form->{employee_id}) = split /--/, $form->{employee};
121
122   $form->get_employee($dbh) unless $form->{employee_id};
123
124   # if we have an id delete old records else make one
125   if (!$payments_only) {
126     if ($form->{id}) {
127       # delete detail records
128       $query = qq|DELETE FROM acc_trans WHERE trans_id = ?|;
129       do_query($form, $dbh, $query, $form->{id});
130
131     } else {
132       $query = qq|SELECT nextval('glid')|;
133       ($form->{id}) = selectrow_query($form, $dbh, $query);
134       $query = qq|INSERT INTO ar (id, invnumber, employee_id) VALUES (?, 'dummy', ?)|;
135       do_query($form, $dbh, $query, $form->{id}, $form->{employee_id});
136       $form->{invnumber} = $form->update_defaults($myconfig, "invnumber", $dbh) unless $form->{invnumber};
137     }
138   }
139
140   # update department
141   ($null, $form->{department_id}) = split(/--/, $form->{department});
142   $form->{department_id} *= 1;
143
144   # record last payment date in ar table
145   $form->{datepaid} ||= $form->{transdate} ;
146   my $datepaid = ($form->{paid} != 0) ? $form->{datepaid} : undef;
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 = ?, datepaid = ?,
160            netamount = ?, curr = ?, notes = ?, department_id = ?,
161            employee_id = ?, storno = ?, storno_id = ?
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}, conv_date($datepaid), $form->{netamount}, $form->{currency}, $form->{notes}, conv_i($form->{department_id}),
165                   conv_i($form->{employee_id}), $form->{storno} ? 't' : 'f', $form->{storno_id}, conv_i($form->{id}));
166     do_query($form, $dbh, $query, @values);
167
168     # add individual transactions for AR, amount and taxes
169     for $i (1 .. $form->{rowcount}) {
170       if ($form->{"amount_$i"} != 0) {
171         my $project_id = conv_i($form->{"project_id_$i"});
172
173         # insert detail records in acc_trans
174         $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, project_id, taxkey)
175                      VALUES (?, (SELECT c.id FROM chart c WHERE c.accno = ?), ?, ?, ?, ?)|;
176         @values = (conv_i($form->{id}), conv_i($form->{AR_amounts}{"amount_$i"}), conv_i($form->{"amount_$i"}), conv_date($form->{transdate}), $project_id,
177                    conv_i($form->{"taxkey_$i"}));
178         do_query($form, $dbh, $query, @values);
179
180         if ($form->{"tax_$i"} != 0) {
181           # insert detail records in acc_trans
182           $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, project_id, taxkey)
183                        VALUES (?, (SELECT c.id FROM chart c WHERE c.accno = ?), ?, ?, ?, ?)|;
184           @values = (conv_i($form->{id}), conv_i($form->{AR_amounts}{"tax_$i"}), conv_i($form->{"tax_$i"}), conv_date($form->{transdate}), $project_id,
185                      conv_i($form->{"taxkey_$i"}));
186           do_query($form, $dbh, $query, @values);
187         }
188       }
189     }
190
191     # add recievables
192     $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, taxkey)
193                  VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, (SELECT taxkey_id FROM chart WHERE accno = ?))|;
194     @values = (conv_i($form->{id}), $form->{AR_amounts}{receivables}, conv_i($form->{receivables}), conv_date($form->{transdate}), $form->{AR_amounts}{receivables});
195     do_query($form, $dbh, $query, @values);
196
197   } else {
198     # Record paid amount.
199     do_query($form, $dbh, qq|UPDATE ar SET paid = ? WHERE id = ?|, $form->{paid}, 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           $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   my $rc = 1;
269   if (!$provided_dbh) {
270     $rc = $dbh->commit();
271     $dbh->disconnect();
272   }
273
274   $main::lxdebug->leave_sub() and return $rc;
275 }
276
277 sub _delete_payments {
278   $main::lxdebug->enter_sub();
279
280   my ($self, $form, $dbh) = @_;
281
282   my @delete_acc_trans_ids;
283
284   # Delete old payment entries from acc_trans.
285   my $query =
286     qq|SELECT acc_trans_id
287        FROM acc_trans
288        WHERE (trans_id = ?) AND fx_transaction
289
290        UNION
291
292        SELECT at.acc_trans_id
293        FROM acc_trans at
294        LEFT JOIN chart c ON (at.chart_id = c.id)
295        WHERE (trans_id = ?) AND (c.link LIKE '%AR_paid%')|;
296   push @delete_acc_trans_ids, selectall_array_query($form, $dbh, $query, conv_i($form->{id}), conv_i($form->{id}));
297
298   $query =
299     qq|SELECT at.acc_trans_id
300        FROM acc_trans at
301        LEFT JOIN chart c ON (at.chart_id = c.id)
302        WHERE (trans_id = ?)
303          AND ((c.link = 'AR') OR (c.link LIKE '%:AR') OR (c.link LIKE 'AR:%'))
304        ORDER BY at.acc_trans_id
305        OFFSET 1|;
306   push @delete_acc_trans_ids, selectall_array_query($form, $dbh, $query, conv_i($form->{id}));
307
308   if (@delete_acc_trans_ids) {
309     $query = qq|DELETE FROM acc_trans WHERE acc_trans_id IN (| . join(", ", @delete_acc_trans_ids) . qq|)|;
310     do_query($form, $dbh, $query);
311   }
312
313   $main::lxdebug->leave_sub();
314 }
315
316 sub post_payment {
317   $main::lxdebug->enter_sub();
318
319   my ($self, $myconfig, $form, $locale) = @_;
320
321   # connect to database, turn off autocommit
322   my $dbh = $form->dbconnect_noauto($myconfig);
323
324   my (%payments, $old_form, $row, $item, $query, %keep_vars);
325
326   $old_form = save_form();
327
328   # Delete all entries in acc_trans from prior payments.
329   $self->_delete_payments($form, $dbh);
330
331   # Save the new payments the user made before cleaning up $form.
332   my $payments_re = '^datepaid_\d+$|^memo_\d+$|^source_\d+$|^exchangerate_\d+$|^paid_\d+$|^paid_project_id_\d+$|^AR_paid_\d+$|^paidaccounts$';
333   map { $payments{$_} = $form->{$_} } grep m/$payments_re/, keys %{ $form };
334
335   # Clean up $form so that old content won't tamper the results.
336   %keep_vars = map { $_, 1 } qw(login password id);
337   map { delete $form->{$_} unless $keep_vars{$_} } keys %{ $form };
338
339   # Retrieve the invoice from the database.
340   $form->create_links('AR', $myconfig, 'customer', $dbh);
341
342   # Restore the payment options from the user input.
343   map { $form->{$_} = $payments{$_} } keys %payments;
344
345   # Set up the content of $form in the way that AR::post_transaction() expects.
346
347   $self->setup_form($form);
348
349   ($form->{defaultcurrency}) = selectrow_query($form, $dbh, qq|SELECT curr FROM defaults|);
350   $form->{defaultcurrency}   = (split m/:/, $form->{defaultcurrency})[0];
351   $form->{currency}          = $form->{defaultcurrency} if ($form->{defaultcurrency} && ($form->{currency} =~ m/^\s*$/));
352
353   $form->{exchangerate}      = $form->format_amount($myconfig, $form->{exchangerate});
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->dbconnect($myconfig);
410
411   my @values;
412
413   my $query =
414     qq|SELECT 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, | .
422     qq|  e.name AS employee, | .
423     qq|  e2.name AS salesman | .
424     qq|FROM ar a | .
425     qq|JOIN customer c ON (a.customer_id = c.id) | .
426     qq|LEFT JOIN employee e ON (a.employee_id = e.id) | .
427     qq|LEFT JOIN employee e2 ON (a.salesman_id = e2.id) | .
428     qq|LEFT JOIN project pr ON (a.globalproject_id = pr.id)|;
429
430   my $where = "1 = 1";
431   if ($form->{customer_id}) {
432     $where .= " AND a.customer_id = ?";
433     push(@values, $form->{customer_id});
434   } elsif ($form->{customer}) {
435     $where .= " AND c.name ILIKE ?";
436     push(@values, $form->like($form->{customer}));
437   }
438   if ($form->{department}) {
439     my ($null, $department_id) = split /--/, $form->{department};
440     $where .= " AND a.department_id = ?";
441     push(@values, $department_id);
442   }
443   foreach my $column (qw(invnumber ordnumber notes transaction_description)) {
444     if ($form->{$column}) {
445       $where .= " AND a.$column ILIKE ?";
446       push(@values, $form->like($form->{$column}));
447     }
448   }
449   if ($form->{"project_id"}) {
450     $where .=
451       qq|AND ((a.globalproject_id = ?) OR EXISTS | .
452       qq|  (SELECT * FROM invoice i | .
453       qq|   WHERE i.project_id = ? AND i.trans_id = a.id))|;
454     push(@values, $form->{"project_id"}, $form->{"project_id"});
455   }
456
457   if ($form->{transdatefrom}) {
458     $where .= " AND a.transdate >= ?";
459     push(@values, $form->{transdatefrom});
460   }
461   if ($form->{transdateto}) {
462     $where .= " AND a.transdate <= ?";
463     push(@values, $form->{transdateto});
464   }
465   if ($form->{open} || $form->{closed}) {
466     unless ($form->{open} && $form->{closed}) {
467       $where .= " AND a.amount <> a.paid" if ($form->{open});
468       $where .= " AND a.amount = a.paid"  if ($form->{closed});
469     }
470   }
471
472   my @a = (transdate, invnumber, name);
473   push @a, "employee" if $form->{l_employee};
474   my $sortdir   = !defined $form->{sortdir} ? 'ASC' : $form->{sortdir} ? 'ASC' : 'DESC';
475   my $sortorder = join(', ', map { "$_ $sortdir" } @a);
476
477   if (grep({ $_ eq $form->{sort} } qw(id transdate duedate invnumber ordnumber name datepaid employee shippingpoint shipvia transaction_description))) {
478     $sortorder = $form->{sort} . " $sortdir";
479   }
480
481   $query .= " WHERE $where ORDER BY $sortorder";
482
483   my $sth = $dbh->prepare($query);
484   $sth->execute(@values) ||
485     $form->dberror($query . " (" . join(", ", @values) . ")");
486
487   $form->{AR} = [];
488   while (my $ar = $sth->fetchrow_hashref(NAME_lc)) {
489     push @{ $form->{AR} }, $ar;
490   }
491
492   $sth->finish;
493   $dbh->disconnect;
494
495   $main::lxdebug->leave_sub();
496 }
497
498 sub get_transdate {
499   $main::lxdebug->enter_sub();
500
501   my ($self, $myconfig, $form) = @_;
502
503   # connect to database
504   my $dbh = $form->dbconnect($myconfig);
505
506   my $query =
507     "SELECT COALESCE(" .
508     "  (SELECT transdate FROM ar WHERE id = " .
509     "    (SELECT MAX(id) FROM ar) LIMIT 1), " .
510     "  current_date)";
511   ($form->{transdate}) = $dbh->selectrow_array($query);
512
513   $dbh->disconnect;
514
515   $main::lxdebug->leave_sub();
516 }
517
518 sub setup_form {
519   $main::lxdebug->enter_sub();
520
521   my ($self, $form) = @_;
522
523   my ($exchangerate, $key, $akey, $i, $j, $k, $index, $taxamount, $totaltax, $taxrate, $diff);
524
525   # forex
526   $form->{forex} = $form->{exchangerate};
527   $exchangerate  = $form->{exchangerate} ? $form->{exchangerate} : 1;
528
529   foreach $key (keys %{ $form->{AR_links} }) {
530     # if there is a value we have an old entry
531     $j = 0;
532     $k = 0;
533
534     for $i (1 .. scalar @{ $form->{acc_trans}{$key} }) {
535       if ($key eq "AR_paid") {
536         $j++;
537         $form->{"AR_paid_$j"} = $form->{acc_trans}{$key}->[$i-1]->{accno};
538
539         # reverse paid
540         $form->{"paid_$j"}            = $form->{acc_trans}{$key}->[$i - 1]->{amount} * -1;
541         $form->{"datepaid_$j"}        = $form->{acc_trans}{$key}->[$i - 1]->{transdate};
542         $form->{"source_$j"}          = $form->{acc_trans}{$key}->[$i - 1]->{source};
543         $form->{"memo_$j"}            = $form->{acc_trans}{$key}->[$i - 1]->{memo};
544         $form->{"forex_$j"}           = $form->{acc_trans}{$key}->[$i - 1]->{exchangerate};
545         $form->{"exchangerate_$i"}    = $form->{"forex_$j"};
546         $form->{"paid_project_id_$j"} = $form->{acc_trans}{$key}->[$i - 1]->{project_id};
547         $form->{paidaccounts}++;
548
549       } else {
550
551         $akey = $key;
552         $akey =~ s/AR_//;
553
554         if ($key eq "AR_tax" || $key eq "AP_tax") {
555           $form->{"${key}_$form->{acc_trans}{$key}->[$i-1]->{accno}"}  = "$form->{acc_trans}{$key}->[$i-1]->{accno}--$form->{acc_trans}{$key}->[$i-1]->{description}";
556           $form->{"${akey}_$form->{acc_trans}{$key}->[$i-1]->{accno}"} = $form->round_amount($form->{acc_trans}{$key}->[$i - 1]->{amount} / $exchangerate, 2);
557
558           if ($form->{"$form->{acc_trans}{$key}->[$i-1]->{accno}_rate"} > 0) {
559             $totaltax += $form->{"${akey}_$form->{acc_trans}{$key}->[$i-1]->{accno}"};
560             $taxrate  += $form->{"$form->{acc_trans}{$key}->[$i-1]->{accno}_rate"};
561
562           } else {
563             $totalwithholding += $form->{"${akey}_$form->{acc_trans}{$key}->[$i-1]->{accno}"};
564             $withholdingrate  += $form->{"$form->{acc_trans}{$key}->[$i-1]->{accno}_rate"};
565           }
566
567           $index                 = $form->{acc_trans}{$key}->[$i - 1]->{index};
568           $form->{"tax_$index"}  = $form->{acc_trans}{$key}->[$i - 1]->{amount};
569           $totaltax             += $form->{"tax_$index"};
570
571         } else {
572           $k++;
573           $form->{"${akey}_$k"} = $form->round_amount($form->{acc_trans}{$key}->[$i - 1]->{amount} / $exchangerate, 2);
574
575           if ($akey eq 'amount') {
576             $form->{rowcount}++;
577             $totalamount += $form->{"${akey}_$i"};
578
579             $form->{"oldprojectnumber_$k"} = $form->{acc_trans}{$key}->[$i-1]->{projectnumber};
580             $form->{"projectnumber_$k"}    = $form->{acc_trans}{$key}->[$i-1]->{projectnumber};
581             $form->{taxrate}               = $form->{acc_trans}{$key}->[$i - 1]->{rate};
582             $form->{"project_id_$k"}       = $form->{acc_trans}{$key}->[$i-1]->{project_id};
583           }
584
585           $form->{"${key}_$i"} = "$form->{acc_trans}{$key}->[$i-1]->{accno}--$form->{acc_trans}{$key}->[$i-1]->{description}";
586
587           if ($akey eq "AR") {
588             $form->{ARselected} = $form->{acc_trans}{$key}->[$i-1]->{accno};
589
590           } elsif ($akey eq "amount") {
591             $form->{"${key}_$k"}   = $form->{acc_trans}{$key}->[$i-1]->{accno} . "--" . $form->{acc_trans}{$key}->[$i-1]->{id};
592             $form->{"taxchart_$k"} = $form->{acc_trans}{$key}->[$i-1]->{id}    . "--" . $form->{acc_trans}{$key}->[$i-1]->{rate};
593           }
594         }
595       }
596     }
597   }
598
599   $form->{taxincluded}  = $taxincluded if ($form->{id});
600   $form->{paidaccounts} = 1            if not defined $form->{paidaccounts};
601
602   if ($form->{taxincluded} && $form->{taxrate} && $totalamount) {
603
604     # add tax to amounts and invtotal
605     for $i (1 .. $form->{rowcount}) {
606       $taxamount            = ($totaltax + $totalwithholding) * $form->{"amount_$i"} / $totalamount;
607       $tax                  = $form->round_amount($taxamount, 2);
608       $diff                += ($taxamount - $tax);
609       $form->{"amount_$i"} += $form->{"tax_$i"};
610     }
611     $form->{amount_1} += $form->round_amount($diff, 2);
612   }
613
614   $taxamount   = $form->round_amount($taxamount, 2);
615   $form->{tax} = $taxamount;
616
617   $form->{invtotal} = $totalamount + $totaltax;
618
619   $main::lxdebug->leave_sub();
620 }
621
622 sub storno {
623   $main::lxdebug->enter_sub();
624
625   my ($self, $form, $myconfig, $id) = @_;
626
627   my ($query, $new_id, $storno_row, $acc_trans_rows);
628   my $dbh = $form->get_standard_dbh($myconfig);
629
630   $query = qq|SELECT nextval('glid')|;
631   ($new_id) = selectrow_query($form, $dbh, $query);
632
633   $query = qq|SELECT * FROM ar WHERE id = ?|;
634   $storno_row = selectfirst_hashref_query($form, $dbh, $query, $id);
635
636   $storno_row->{id}         = $new_id;
637   $storno_row->{storno_id}  = $id;
638   $storno_row->{storno}     = 't';
639   $storno_row->{invnumber}  = 'Storno-' . $storno_row->{invnumber};
640   $storno_row->{amount}    *= -1;
641   $storno_row->{netamount} *= -1;
642   $storno_row->{paid}       = $storno_row->{amount};
643
644   delete @$storno_row{qw(itime mtime)};
645
646   $query = sprintf 'INSERT INTO ar (%s) VALUES (%s)', join(', ', keys %$storno_row), join(', ', map '?', values %$storno_row);
647   do_query($form, $dbh, $query, (values %$storno_row));
648
649   $query = qq|UPDATE ar SET paid = amount + paid, storno = 't' WHERE id = ?|;
650   do_query($form, $dbh, $query, $id);
651
652   # now copy acc_trans entries
653   $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|;
654   my $rowref = selectall_hashref_query($form, $dbh, $query, $id); 
655
656   # kill all entries containing payments, which are the last 2n rows, of which the last has link =~ /paid/
657   while ($rowref->[-1]{link} =~ /paid/) {
658     splice(@$rowref, -2);
659   }
660
661   for my $row (@$rowref) {
662     delete @$row{qw(itime mtime link)};
663     $query = sprintf 'INSERT INTO acc_trans (%s) VALUES (%s)', join(', ', keys %$row), join(', ', map '?', values %$row);
664     $row->{trans_id}   = $new_id;
665     $row->{amount}    *= -1;
666     do_query($form, $dbh, $query, (values %$row));
667   }
668
669   $dbh->commit;
670
671   $main::lxdebug->leave_sub();
672 }
673
674
675 1;
676