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