Entwürfe: beim Buchen dazugehörigen Entwurf löschen
[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., 51 Franklin Street, Fifth Floor, Boston,
29 # MA 02110-1335, USA.
30 #======================================================================
31 #
32 # Accounts Receivable module backend routines
33 #
34 #======================================================================
35
36 package AR;
37
38 use Data::Dumper;
39 use SL::DATEV qw(:CONSTANTS);
40 use SL::DBUtils;
41 use SL::DB::Draft;
42 use SL::IO;
43 use SL::MoreCommon;
44 use SL::DB::Default;
45 use SL::TransNumber;
46 use SL::Util qw(trim);
47 use SL::DB;
48
49 use strict;
50
51 sub post_transaction {
52   my ($self, $myconfig, $form, $provided_dbh, $payments_only) = @_;
53   $main::lxdebug->enter_sub();
54
55   my $rc = SL::DB->client->with_transaction(\&_post_transaction, $self, $myconfig, $form, $provided_dbh, $payments_only);
56
57   $::lxdebug->leave_sub;
58   return $rc;
59 }
60
61 sub _post_transaction {
62   my ($self, $myconfig, $form, $provided_dbh, $payments_only) = @_;
63
64   my ($query, $sth, $null, $taxrate, $amount, $tax);
65   my $exchangerate = 0;
66   my $i;
67
68   my @values;
69
70   my $dbh = $provided_dbh || SL::DB->client->dbh;
71   $form->{defaultcurrency} = $form->get_default_currency($myconfig);
72
73   # set exchangerate
74   $form->{exchangerate} = ($form->{currency} eq $form->{defaultcurrency}) ? 1 :
75       ( $form->check_exchangerate($myconfig, $form->{currency}, $form->{transdate}, 'buy') ||
76         $form->parse_amount($myconfig, $form->{exchangerate}) );
77
78   # get the charts selected
79   $form->{AR_amounts}{"amount_$_"} = $form->{"AR_amount_chart_id_$_"} for (1 .. $form->{rowcount});
80
81   $form->{tax}       = 0; # is this still needed?
82
83   # main calculation of rowcount loop inside Form method, amount_$i and tax_$i get formatted
84   $form->{taxincluded} = 0 unless $form->{taxincluded};
85   ($form->{netamount},$form->{total_tax},$form->{amount}) = $form->calculate_arap('sell', $form->{taxincluded}, $form->{exchangerate});
86
87   # adjust paidaccounts if there is no date in the last row
88   # this does not apply to stornos, where the paid field is set manually
89   unless ($form->{storno}) {
90     $form->{paidaccounts}-- unless $form->{"datepaid_$form->{paidaccounts}"};
91     $form->{paid} = 0;
92
93     # add payments
94     for $i (1 .. $form->{paidaccounts}) {
95       $form->{"paid_$i"} = $form->round_amount($form->parse_amount($myconfig, $form->{"paid_$i"}), 2);
96       $form->{paid}     += $form->{"paid_$i"};
97       $form->{datepaid}  = $form->{"datepaid_$i"};
98     }
99
100   }
101   $form->{paid}   = $form->round_amount($form->{paid} * ($form->{exchangerate} || 1), 2);
102
103   $form->get_employee($dbh) unless $form->{employee_id};
104
105   # if we have an id delete old records else make one
106   if (!$payments_only) {
107     if ($form->{id}) {
108       # delete detail records
109       $query = qq|DELETE FROM acc_trans WHERE trans_id = ?|;
110       do_query($form, $dbh, $query, $form->{id});
111
112     } else {
113       $query = qq|SELECT nextval('glid')|;
114       ($form->{id}) = selectrow_query($form, $dbh, $query);
115       $query = qq|INSERT INTO ar (id, invnumber, employee_id, currency_id, taxzone_id) VALUES (?, 'dummy', ?, (SELECT id FROM currencies WHERE name=?), (SELECT taxzone_id FROM customer WHERE id = ?))|;
116       do_query($form, $dbh, $query, $form->{id}, $form->{employee_id}, $form->{currency}, $form->{customer_id});
117       if (!$form->{invnumber}) {
118         my $trans_number   = SL::TransNumber->new(type => 'invoice', dbh => $dbh, number => $form->{partnumber}, id => $form->{id});
119         $form->{invnumber} = $trans_number->create_unique;
120       }
121     }
122   }
123
124   # amount for AR account
125   $form->{receivables} = $form->round_amount($form->{amount}, 2) * -1;
126
127   # update exchangerate
128   $form->update_exchangerate($dbh, $form->{currency}, $form->{transdate}, $form->{exchangerate}, 0)
129     if ($form->{currency} ne $form->{defaultcurrency}) && !$form->check_exchangerate($myconfig, $form->{currency}, $form->{transdate}, 'buy');
130
131   if (!$payments_only) {
132     $query =
133       qq|UPDATE ar set
134            invnumber = ?, ordnumber = ?, transdate = ?, customer_id = ?,
135            taxincluded = ?, amount = ?, duedate = ?, paid = ?,
136            currency_id = (SELECT id FROM currencies WHERE name = ?),
137            netamount = ?, notes = ?, department_id = ?,
138            employee_id = ?, storno = ?, storno_id = ?, globalproject_id = ?,
139            direct_debit = ?
140          WHERE id = ?|;
141     my @values = ($form->{invnumber}, $form->{ordnumber}, conv_date($form->{transdate}), conv_i($form->{customer_id}), $form->{taxincluded} ? 't' : 'f', $form->{amount},
142                   conv_date($form->{duedate}), $form->{paid},
143                   $form->{currency},
144                   $form->{netamount}, $form->{notes}, conv_i($form->{department_id}),
145                   conv_i($form->{employee_id}), $form->{storno} ? 't' : 'f', $form->{storno_id},
146                   conv_i($form->{globalproject_id}), $form->{direct_debit} ? 't' : 'f', conv_i($form->{id}));
147     do_query($form, $dbh, $query, @values);
148
149     # add individual transactions for AR, amount and taxes
150     for $i (1 .. $form->{rowcount}) {
151       if ($form->{"amount_$i"} != 0) {
152         my $project_id = conv_i($form->{"project_id_$i"});
153
154         # insert detail records in acc_trans
155         $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, project_id, taxkey, tax_id, chart_link)
156                      VALUES (?, ?, ?, ?, ?, ?, ?, (SELECT c.link FROM chart c WHERE c.id = ?))|;
157         @values = (conv_i($form->{id}), $form->{AR_amounts}{"amount_$i"}, conv_i($form->{"amount_$i"}), conv_date($form->{transdate}), $project_id,
158                    conv_i($form->{"taxkey_$i"}), conv_i($form->{"tax_id_$i"}), $form->{AR_amounts}{"amount_$i"});
159         do_query($form, $dbh, $query, @values);
160
161         if ($form->{"tax_$i"} != 0) {
162           # insert detail records in acc_trans
163           $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, project_id, taxkey, tax_id, chart_link)
164                        VALUES (?, (SELECT c.id FROM chart c WHERE c.accno = ?), ?, ?, ?, ?, ?, (SELECT c.link FROM chart c WHERE c.accno = ?))|;
165           @values = (conv_i($form->{id}), $form->{AR_amounts}{"tax_$i"}, conv_i($form->{"tax_$i"}), conv_date($form->{transdate}), $project_id,
166                      conv_i($form->{"taxkey_$i"}), conv_i($form->{"tax_id_$i"}), $form->{AR_amounts}{"tax_$i"});
167           do_query($form, $dbh, $query, @values);
168         }
169       }
170     }
171
172     # add recievables
173     $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, taxkey, tax_id, chart_link)
174                  VALUES (?, ?, ?, ?, (SELECT taxkey_id FROM chart WHERE id = ?),
175                  (SELECT tax_id
176                   FROM taxkeys
177                   WHERE chart_id = ?
178                   AND startdate <= ?
179                   ORDER BY startdate DESC LIMIT 1),
180                  (SELECT c.link FROM chart c WHERE c.id = ?))|;
181     @values = (conv_i($form->{id}), $form->{AR_chart_id}, conv_i($form->{receivables}), conv_date($form->{transdate}),
182                 $form->{AR_chart_id}, $form->{AR_chart_id}, conv_date($form->{transdate}), $form->{AR_chart_id});
183     do_query($form, $dbh, $query, @values);
184
185   } else {
186     # Record paid amount.
187     $query = qq|UPDATE ar SET paid = ?, datepaid = ? WHERE id = ?|;
188     do_query($form, $dbh, $query,  $form->{paid}, $form->{paid} ? conv_date($form->{datepaid}) : undef, conv_i($form->{id}));
189   }
190
191   $form->new_lastmtime('ar');
192
193   # add paid transactions
194   for my $i (1 .. $form->{paidaccounts}) {
195
196     if ($form->{"acc_trans_id_$i"} && $payments_only && (SL::DB::Default->get->payments_changeable == 0)) {
197       next;
198     }
199
200     if ($form->{"paid_$i"} != 0) {
201       my $project_id = conv_i($form->{"paid_project_id_$i"});
202
203       $form->{"AR_paid_$i"} =~ s/\"//g;
204       ($form->{AR}{"paid_$i"}) = split(/--/, $form->{"AR_paid_$i"});
205       $form->{"datepaid_$i"} = $form->{transdate}
206         unless ($form->{"datepaid_$i"});
207
208       $form->{"exchangerate_$i"} = ($form->{currency} eq $form->{defaultcurrency}) ? 1 :
209         ( $form->check_exchangerate($myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy') ||
210           $form->parse_amount($myconfig, $form->{"exchangerate_$i"}) );
211
212       # if there is no amount and invtotal is zero there is no exchangerate
213       $form->{exchangerate} = $form->{"exchangerate_$i"}
214         if ($form->{amount} == 0 && $form->{netamount} == 0);
215
216       # receivables amount
217       $amount = $form->round_amount($form->{"paid_$i"} * $form->{exchangerate}, 2);
218
219       if ($amount != 0) {
220         # add receivable
221         $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, project_id, taxkey, tax_id, chart_link)
222                      VALUES (?, ?, ?, ?, ?, (SELECT taxkey_id FROM chart WHERE id = ?),
223                      (SELECT tax_id
224                       FROM taxkeys
225                       WHERE chart_id = ?
226                       AND startdate <= ?
227                       ORDER BY startdate DESC LIMIT 1),
228                      (SELECT c.link FROM chart c WHERE c.id = ?))|;
229         @values = (conv_i($form->{id}), $form->{AR_chart_id}, $amount, conv_date($form->{"datepaid_$i"}), $project_id, $form->{AR_chart_id}, $form->{AR_chart_id}, conv_date($form->{"datepaid_$i"}), $form->{AR_chart_id});
230
231         do_query($form, $dbh, $query, @values);
232       }
233
234       if ($form->{"paid_$i"} != 0) {
235         # add payment
236         my $project_id = conv_i($form->{"paid_project_id_$i"});
237         my $gldate = (conv_date($form->{"gldate_$i"}))? conv_date($form->{"gldate_$i"}) : conv_date($form->current_date($myconfig));
238         $amount = $form->{"paid_$i"} * -1;
239         $query  = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, gldate, source, memo, project_id, taxkey, tax_id, chart_link)
240                      VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, ?, ?, ?, ?, (SELECT taxkey_id FROM chart WHERE accno = ?),
241                      (SELECT tax_id
242                       FROM taxkeys
243                       WHERE chart_id= (SELECT id
244                                        FROM chart
245                                        WHERE accno = ?)
246                       AND startdate <= ?
247                       ORDER BY startdate DESC LIMIT 1),
248                      (SELECT c.link FROM chart c WHERE c.accno = ?))|;
249         @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"},
250                     $form->{AR}{"paid_$i"}, conv_date($form->{"datepaid_$i"}), $form->{AR}{"paid_$i"});
251         do_query($form, $dbh, $query, @values);
252
253         # exchangerate difference for payment
254         $amount = $form->round_amount( $form->{"paid_$i"} * ($form->{"exchangerate_$i"} - 1) * -1, 2);
255
256         if ($amount != 0) {
257           $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, fx_transaction, cleared, project_id, taxkey, tax_id, chart_link)
258                        VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, 't', 'f', ?, (SELECT taxkey_id FROM chart WHERE accno = ?),
259                        (SELECT tax_id
260                         FROM taxkeys
261                         WHERE chart_id= (SELECT id
262                                          FROM chart
263                                          WHERE accno = ?)
264                         AND startdate <= ?
265                         ORDER BY startdate DESC LIMIT 1),
266                        (SELECT c.link FROM chart c WHERE c.accno = ?))|;
267           @values = (conv_i($form->{id}), $form->{AR}{"paid_$i"}, $amount, conv_date($form->{"datepaid_$i"}), $project_id, $form->{AR}{"paid_$i"},
268                     $form->{AR}{"paid_$i"}, conv_date($form->{"datepaid_$i"}), $form->{AR}{"paid_$i"});
269           do_query($form, $dbh, $query, @values);
270         }
271
272         # exchangerate gain/loss
273         $amount = $form->round_amount( $form->{"paid_$i"} * ($form->{exchangerate} - $form->{"exchangerate_$i"}) * -1, 2);
274
275         if ($amount != 0) {
276           # fetch fxgain and fxloss chart info from defaults if charts aren't already filled in form
277           if ( !$form->{fxgain_accno} && $::instance_conf->get_fxgain_accno_id ) {
278             $form->{fxgain_accno} = SL::DB::Manager::Chart->find_by(id => $::instance_conf->get_fxgain_accno_id)->accno;
279           };
280           if ( !$form->{fxloss_accno} && $::instance_conf->get_fxloss_accno_id ) {
281             $form->{fxloss_accno} = SL::DB::Manager::Chart->find_by(id => $::instance_conf->get_fxloss_accno_id)->accno;
282           };
283           die "fxloss_accno missing" if $amount < 0 and not $form->{fxloss_accno};
284           die "fxgain_accno missing" if $amount > 0 and not $form->{fxgain_accno};
285           my $accno = ($amount > 0) ? $form->{fxgain_accno} : $form->{fxloss_accno};
286           $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, fx_transaction, cleared, project_id, taxkey, tax_id, chart_link)
287                        VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, 't', 'f', ?, (SELECT taxkey_id FROM chart WHERE accno = ?),
288                        (SELECT tax_id
289                         FROM taxkeys
290                         WHERE chart_id= (SELECT id
291                                          FROM chart
292                                          WHERE accno = ?)
293                         AND startdate <= ?
294                         ORDER BY startdate DESC LIMIT 1),
295                        (SELECT c.link FROM chart c WHERE c.accno = ?))|;
296           @values = (conv_i($form->{id}), $accno, $amount, conv_date($form->{"datepaid_$i"}), $project_id, $accno, $accno, conv_date($form->{"datepaid_$i"}), $accno);
297           do_query($form, $dbh, $query, @values);
298         }
299       }
300
301       # update exchangerate record
302       $form->update_exchangerate($dbh, $form->{currency}, $form->{"datepaid_$i"}, $form->{"exchangerate_$i"}, 0)
303         if ($form->{currency} ne $form->{defaultcurrency}) && !$form->check_exchangerate($myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy');
304     }
305   }
306
307   IO->set_datepaid(table => 'ar', id => $form->{id}, dbh => $dbh);
308
309   if ($form->{draft_id}) {
310     SL::DB::Manager::Draft->delete_all(where => [ id => delete($form->{draft_id}) ]);
311   }
312
313   # safety check datev export
314   if ($::instance_conf->get_datev_check_on_ar_transaction) {
315     my $transdate = $::form->{transdate} ? DateTime->from_lxoffice($::form->{transdate}) : undef;
316     $transdate  ||= DateTime->today;
317
318     my $datev = SL::DATEV->new(
319       exporttype => DATEV_ET_BUCHUNGEN,
320       format     => DATEV_FORMAT_KNE,
321       dbh        => $dbh,
322       trans_id   => $form->{id},
323     );
324
325     $datev->export;
326
327     if ($datev->errors) {
328       die join "\n", $::locale->text('DATEV check returned errors:'), $datev->errors;
329     }
330   }
331
332   return 1;
333 }
334
335 sub _delete_payments {
336   $main::lxdebug->enter_sub();
337
338   my ($self, $form, $dbh) = @_;
339
340   my @delete_acc_trans_ids;
341
342   # Delete old payment entries from acc_trans.
343   my $query =
344     qq|SELECT acc_trans_id
345        FROM acc_trans
346        WHERE (trans_id = ?) AND fx_transaction
347
348        UNION
349
350        SELECT at.acc_trans_id
351        FROM acc_trans at
352        LEFT JOIN chart c ON (at.chart_id = c.id)
353        WHERE (trans_id = ?) AND (c.link LIKE '%AR_paid%')|;
354   push @delete_acc_trans_ids, selectall_array_query($form, $dbh, $query, conv_i($form->{id}), conv_i($form->{id}));
355
356   $query =
357     qq|SELECT at.acc_trans_id
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        OFFSET 1|;
364   push @delete_acc_trans_ids, selectall_array_query($form, $dbh, $query, conv_i($form->{id}));
365
366   if (@delete_acc_trans_ids) {
367     $query = qq|DELETE FROM acc_trans WHERE acc_trans_id IN (| . join(", ", @delete_acc_trans_ids) . qq|)|;
368     do_query($form, $dbh, $query);
369   }
370
371   $main::lxdebug->leave_sub();
372 }
373
374 sub post_payment {
375   my ($self, $myconfig, $form, $locale) = @_;
376   $main::lxdebug->enter_sub();
377
378   my $rc = SL::DB->client->with_transaction(\&_post_payment, $self, $myconfig, $form, $locale);
379
380   $::lxdebug->leave_sub;
381   return $rc;
382 }
383
384 sub _post_payment {
385   my ($self, $myconfig, $form, $locale) = @_;
386
387   my $dbh = SL::DB->client->dbh;
388
389   my (%payments, $old_form, $row, $item, $query, %keep_vars);
390
391   $old_form = save_form();
392
393   # Delete all entries in acc_trans from prior payments.
394   if (SL::DB::Default->get->payments_changeable != 0) {
395     $self->_delete_payments($form, $dbh);
396   }
397
398   # Save the new payments the user made before cleaning up $form.
399   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$';
400   map { $payments{$_} = $form->{$_} } grep m/$payments_re/, keys %{ $form };
401
402   # Clean up $form so that old content won't tamper the results.
403   %keep_vars = map { $_, 1 } qw(login password id);
404   map { delete $form->{$_} unless $keep_vars{$_} } keys %{ $form };
405
406   # Retrieve the invoice from the database.
407   $form->create_links('AR', $myconfig, 'customer', $dbh);
408
409   # Restore the payment options from the user input.
410   map { $form->{$_} = $payments{$_} } keys %payments;
411
412   # Set up the content of $form in the way that AR::post_transaction() expects.
413
414   $self->setup_form($form, 1);
415
416   $form->{exchangerate}    = $form->format_amount($myconfig, $form->{exchangerate});
417   $form->{defaultcurrency} = $form->get_default_currency($myconfig);
418
419   # Get the AR chart ID (which is normally done by Form::create_links()).
420   $query =
421     qq|SELECT c.id
422        FROM acc_trans at
423        LEFT JOIN chart c ON (at.chart_id = c.id)
424        WHERE (trans_id = ?)
425          AND ((c.link = 'AR') OR (c.link LIKE '%:AR') OR (c.link LIKE 'AR:%'))
426        ORDER BY at.acc_trans_id
427        LIMIT 1|;
428
429   ($form->{AR_chart_id}) = selectfirst_array_query($form, $dbh, $query, conv_i($form->{id}));
430
431   # Post the new payments.
432   $self->post_transaction($myconfig, $form, $dbh, 1);
433
434   restore_form($old_form);
435
436   return 1;
437 }
438
439 sub delete_transaction {
440   $main::lxdebug->enter_sub();
441
442   my ($self, $myconfig, $form) = @_;
443
444   SL::DB->client->with_transaction(sub {
445     # acc_trans entries are deleted by database triggers.
446     my $query = qq|DELETE FROM ar WHERE id = ?|;
447     do_query($form, SL::DB->client->dbh, $query, $form->{id});
448     1;
449   }) or do { die SL::DB->client->error };
450
451   $main::lxdebug->leave_sub();
452
453   return 1;
454 }
455
456 sub ar_transactions {
457   $main::lxdebug->enter_sub();
458
459   my ($self, $myconfig, $form) = @_;
460
461   # connect to database
462   my $dbh = $form->get_standard_dbh($myconfig);
463
464   my @values;
465
466   my $query =
467     qq|SELECT DISTINCT a.id, a.invnumber, a.ordnumber, a.cusordnumber, a.transdate, | .
468     qq|  a.duedate, a.netamount, a.amount, a.paid, | .
469     qq|  a.invoice, a.datepaid, a.notes, a.shipvia, | .
470     qq|  a.shippingpoint, a.storno, a.storno_id, a.globalproject_id, | .
471     qq|  a.marge_total, a.marge_percent, | .
472     qq|  a.transaction_description, a.direct_debit, | .
473     qq|  pr.projectnumber AS globalprojectnumber, | .
474     qq|  c.name, c.customernumber, c.country, c.ustid, b.description as customertype, | .
475     qq|  c.id as customer_id, | .
476     qq|  e.name AS employee, | .
477     qq|  e2.name AS salesman, | .
478     qq|  dc.dunning_description, | .
479     qq|  tz.description AS taxzone, | .
480     qq|  pt.description AS payment_terms, | .
481     qq|  d.description AS department, | .
482     qq{  ( SELECT ch.accno || ' -- ' || ch.description
483            FROM acc_trans at
484            LEFT JOIN chart ch ON ch.id = at.chart_id
485            WHERE ch.link ~ 'AR[[:>:]]'
486             AND at.trans_id = a.id
487             LIMIT 1
488           ) AS charts } .
489     qq|FROM ar a | .
490     qq|JOIN customer c ON (a.customer_id = c.id) | .
491     qq|LEFT JOIN contacts cp ON (a.cp_id = cp.cp_id) | .
492     qq|LEFT JOIN employee e ON (a.employee_id = e.id) | .
493     qq|LEFT JOIN employee e2 ON (a.salesman_id = e2.id) | .
494     qq|LEFT JOIN dunning_config dc ON (a.dunning_config_id = dc.id) | .
495     qq|LEFT JOIN project pr ON (a.globalproject_id = pr.id)| .
496     qq|LEFT JOIN tax_zones tz ON (tz.id = a.taxzone_id)| .
497     qq|LEFT JOIN payment_terms pt ON (pt.id = a.payment_id)| .
498     qq|LEFT JOIN business b ON (b.id = c.business_id)| .
499     qq|LEFT JOIN department d ON (d.id = a.department_id)|;
500
501   my $where = "1 = 1";
502
503   unless ( $::auth->assert('show_ar_transactions', 1) ) {
504     $where .= " AND NOT invoice = 'f' ";  # remove ar transactions from Sales -> Reports -> Invoices
505   };
506
507   if ($form->{customer}) {
508     $where .= " AND c.name ILIKE ?";
509     push(@values, like($form->{customer}));
510   }
511   if ($form->{"cp_name"}) {
512     $where .= " AND (cp.cp_name ILIKE ? OR cp.cp_givenname ILIKE ?)";
513     push(@values, (like($form->{"cp_name"}))x2);
514   }
515   if ($form->{business_id}) {
516     my $business_id = $form->{business_id};
517     $where .= " AND c.business_id = ?";
518     push(@values, $business_id);
519   }
520   if ($form->{department_id}) {
521     $where .= " AND a.department_id = ?";
522     push(@values, $form->{department_id});
523   }
524   foreach my $column (qw(invnumber ordnumber cusordnumber notes transaction_description)) {
525     if ($form->{$column}) {
526       $where .= " AND a.$column ILIKE ?";
527       push(@values, like($form->{$column}));
528     }
529   }
530   if ($form->{"project_id"}) {
531     $where .=
532       qq|AND ((a.globalproject_id = ?) OR EXISTS | .
533       qq|  (SELECT * FROM invoice i | .
534       qq|   WHERE i.project_id = ? AND i.trans_id = a.id) | .
535       qq| OR EXISTS | .
536       qq|  (SELECT * FROM acc_trans at | .
537       qq|   WHERE at.project_id = ? AND at.trans_id = a.id)| .
538       qq|  )|;
539     push(@values, $form->{project_id}, $form->{project_id}, $form->{project_id});
540   }
541
542   if ($form->{transdatefrom}) {
543     $where .= " AND a.transdate >= ?";
544     push(@values, trim($form->{transdatefrom}));
545   }
546   if ($form->{transdateto}) {
547     $where .= " AND a.transdate <= ?";
548     push(@values, trim($form->{transdateto}));
549   }
550   if ($form->{duedatefrom}) {
551     $where .= " AND a.duedate >= ?";
552     push(@values, trim($form->{duedatefrom}));
553   }
554   if ($form->{duedateto}) {
555     $where .= " AND a.duedate <= ?";
556     push(@values, trim($form->{duedateto}));
557   }
558   if ($form->{open} || $form->{closed}) {
559     unless ($form->{open} && $form->{closed}) {
560       $where .= " AND a.amount <> a.paid" if ($form->{open});
561       $where .= " AND a.amount = a.paid"  if ($form->{closed});
562     }
563   }
564
565   if (!$main::auth->assert('sales_all_edit', 1)) {
566     # only show own invoices
567     $where .= " AND a.employee_id = (select id from employee where login= ?)";
568     push (@values, $::myconfig{login});
569   } else {
570     if ($form->{employee_id}) {
571       $where .= " AND a.employee_id = ?";
572       push @values, conv_i($form->{employee_id});
573     }
574     if ($form->{salesman_id}) {
575       $where .= " AND a.salesman_id = ?";
576       push @values, conv_i($form->{salesman_id});
577     }
578   };
579
580   if ($form->{parts_partnumber}) {
581     $where .= <<SQL;
582       AND EXISTS (
583         SELECT invoice.trans_id
584         FROM invoice
585         LEFT JOIN parts ON (invoice.parts_id = parts.id)
586         WHERE (invoice.trans_id = a.id)
587           AND (parts.partnumber ILIKE ?)
588         LIMIT 1
589       )
590 SQL
591     push @values, like($form->{parts_partnumber});
592   }
593
594   if ($form->{parts_description}) {
595     $where .= <<SQL;
596       AND EXISTS (
597         SELECT invoice.trans_id
598         FROM invoice
599         WHERE (invoice.trans_id = a.id)
600           AND (invoice.description ILIKE ?)
601         LIMIT 1
602       )
603 SQL
604     push @values, like($form->{parts_description});
605   }
606
607   my ($cvar_where, @cvar_values) = CVar->build_filter_query('module'         => 'CT',
608                                                             'trans_id_field' => 'c.id',
609                                                             'filter'         => $form,
610                                                            );
611   if ($cvar_where) {
612     $where .= qq| AND ($cvar_where)|;
613     push @values, @cvar_values;
614   }
615
616   my @a = qw(transdate invnumber name);
617   push @a, "employee" if $form->{l_employee};
618   my $sortdir   = !defined $form->{sortdir} ? 'ASC' : $form->{sortdir} ? 'ASC' : 'DESC';
619   my $sortorder = join(', ', map { "$_ $sortdir" } @a);
620
621   if (grep({ $_ eq $form->{sort} } qw(id transdate duedate invnumber ordnumber cusordnumber name datepaid employee shippingpoint shipvia transaction_description))) {
622     $sortorder = $form->{sort} . " $sortdir";
623   }
624
625   $query .= " WHERE $where ORDER BY $sortorder";
626
627   my @result = selectall_hashref_query($form, $dbh, $query, @values);
628
629   $form->{AR} = [ @result ];
630
631   $main::lxdebug->leave_sub();
632 }
633
634 sub get_transdate {
635   $main::lxdebug->enter_sub();
636
637   my ($self, $myconfig, $form) = @_;
638
639   # connect to database
640   my $dbh = SL::DB->client->dbh;
641
642   my $query =
643     "SELECT COALESCE(" .
644     "  (SELECT transdate FROM ar WHERE id = " .
645     "    (SELECT MAX(id) FROM ar) LIMIT 1), " .
646     "  current_date)";
647   ($form->{transdate}) = $dbh->selectrow_array($query);
648
649   $main::lxdebug->leave_sub();
650 }
651
652 sub setup_form {
653   $main::lxdebug->enter_sub();
654
655   my ($self, $form, $for_post_payments) = @_;
656
657   my ($exchangerate, $akey, $j, $k, $index, $taxamount, $totaltax, $taxrate, $diff, $totalwithholding, $withholdingrate,
658       $totalamount, $tax);
659
660   # forex
661   $form->{forex} = $form->{exchangerate};
662   $exchangerate  = $form->{exchangerate} ? $form->{exchangerate} : 1;
663
664   # expected keys: AR, AR_paid, AR_tax, AR_amount
665   foreach my $key (keys %{ $form->{AR_links} }) {
666     $j = 0;
667     $k = 0;
668
669     # if there is a value we have an old entry
670     next unless $form->{acc_trans}{$key};
671
672     # do not use old entries for payments. They come from the form
673     # even if they are not changeable (then they are in hiddens)
674     next if $for_post_payments && $key eq "AR_paid";
675
676     for my $i (1 .. scalar @{ $form->{acc_trans}{$key} }) {
677       if ($key eq "AR_paid") {
678         $j++;
679         $form->{"AR_paid_$j"} = $form->{acc_trans}{$key}->[$i-1]->{accno};
680
681         $form->{"acc_trans_id_$j"}    = $form->{acc_trans}{$key}->[$i - 1]->{acc_trans_id};
682         # reverse paid
683         $form->{"paid_$j"}            = $form->{acc_trans}{$key}->[$i - 1]->{amount} * -1;
684         $form->{"datepaid_$j"}        = $form->{acc_trans}{$key}->[$i - 1]->{transdate};
685         $form->{"gldate_$j"}          = $form->{acc_trans}{$key}->[$i - 1]->{gldate};
686         $form->{"source_$j"}          = $form->{acc_trans}{$key}->[$i - 1]->{source};
687         $form->{"memo_$j"}            = $form->{acc_trans}{$key}->[$i - 1]->{memo};
688         $form->{"forex_$j"}           = $form->{acc_trans}{$key}->[$i - 1]->{exchangerate};
689         $form->{"exchangerate_$i"}    = $form->{"forex_$j"};
690         $form->{"paid_project_id_$j"} = $form->{acc_trans}{$key}->[$i - 1]->{project_id};
691         $form->{paidaccounts}++;
692
693       } else { # e.g. AR_amount, AR, AR_tax
694
695         $akey = $key;
696         $akey =~ s/AR_//; # e.g. tax, amount, AR, used to store form key tax_$i, amount_$i, ...
697
698         if ($key eq "AR_tax" || $key eq "AP_tax") { # AR_tax
699           $form->{"${key}_$form->{acc_trans}{$key}->[$i-1]->{accno}"}  = "$form->{acc_trans}{$key}->[$i-1]->{accno}--$form->{acc_trans}{$key}->[$i-1]->{description}";
700           # determine the rounded tax amounts for each account, e.g. tax_1776
701           $form->{"${akey}_$form->{acc_trans}{$key}->[$i-1]->{accno}"} = $form->round_amount($form->{acc_trans}{$key}->[$i - 1]->{amount} / $exchangerate, 2);
702
703           # check e.g. $form->{1776_rate}, does this make sense for AR_tax charts? Is this ever valid? If it was, totaltax would be calculated twice
704           if ($form->{"$form->{acc_trans}{$key}->[$i-1]->{accno}_rate"} > 0) {
705             $totaltax += $form->{"${akey}_$form->{acc_trans}{$key}->[$i-1]->{accno}"};
706             $taxrate  += $form->{"$form->{acc_trans}{$key}->[$i-1]->{accno}_rate"};
707
708           } else {
709             $totalwithholding += $form->{"${akey}_$form->{acc_trans}{$key}->[$i-1]->{accno}"};
710             $withholdingrate  += $form->{"$form->{acc_trans}{$key}->[$i-1]->{accno}_rate"};
711           }
712
713           $index                 = $form->{acc_trans}{$key}->[$i - 1]->{index};
714           $form->{"tax_$index"}  = $form->round_amount($form->{acc_trans}{$key}->[$i - 1]->{amount} / $exchangerate, 2); # convert the tax_$i amounts
715           # currently totaltax is the sum of rounded tax amounts, is this correct?
716           $totaltax             += $form->{"tax_$index"};
717
718         } else { # e.g. AR_amount, AR
719           $k++;
720           $form->{"${akey}_$k"} = $form->round_amount($form->{acc_trans}{$key}->[$i - 1]->{amount} / $exchangerate, 2);
721
722           if ($akey eq 'amount') {
723             $form->{rowcount}++;
724             $totalamount += $form->{"${akey}_$i"};
725
726             $form->{"oldprojectnumber_$k"} = $form->{acc_trans}{$key}->[$i-1]->{projectnumber};
727             $form->{"projectnumber_$k"}    = $form->{acc_trans}{$key}->[$i-1]->{projectnumber};
728             $form->{taxrate}               = $form->{acc_trans}{$key}->[$i - 1]->{rate};
729             $form->{"project_id_$k"}       = $form->{acc_trans}{$key}->[$i-1]->{project_id};
730
731             $form->{"${key}_chart_id_$k"} = $form->{acc_trans}{$key}->[$i-1]->{chart_id};
732             $form->{"taxchart_$k"} = $form->{acc_trans}{$key}->[$i-1]->{id}    . "--" . $form->{acc_trans}{$key}->[$i-1]->{rate};
733           }
734         }
735       }
736     }
737   }
738
739   $form->{paidaccounts} = 1            if not defined $form->{paidaccounts};
740
741   if ($form->{taxincluded} && $form->{taxrate} && $totalamount) {
742
743     # add tax to amounts and invtotal
744     for my $i (1 .. $form->{rowcount}) {
745       $taxamount            = ($totaltax + $totalwithholding) * $form->{"amount_$i"} / $totalamount;
746       $tax                  = $form->round_amount($taxamount, 2);
747       $diff                += ($taxamount - $tax);
748       $form->{"amount_$i"} += $form->{"tax_$i"};
749     }
750     $form->{amount_1} += $form->round_amount($diff, 2);
751   }
752
753   $taxamount   = $form->round_amount($taxamount, 2);
754   $form->{tax} = $taxamount;
755
756   $form->{invtotal} = $totalamount + $totaltax;
757
758   $main::lxdebug->leave_sub();
759 }
760
761 sub storno {
762   my ($self, $form, $myconfig, $id) = @_;
763   $main::lxdebug->enter_sub();
764
765   my $rc = SL::DB->client->with_transaction(\&_storno, $self, $form, $myconfig, $id);
766
767   $::lxdebug->leave_sub;
768   return $rc;
769 }
770
771
772 sub _storno {
773   my ($self, $form, $myconfig, $id) = @_;
774
775   my ($query, $new_id, $storno_row, $acc_trans_rows);
776   my $dbh = SL::DB->client->dbh;
777
778   $query = qq|SELECT nextval('glid')|;
779   ($new_id) = selectrow_query($form, $dbh, $query);
780
781   $query = qq|SELECT * FROM ar WHERE id = ?|;
782   $storno_row = selectfirst_hashref_query($form, $dbh, $query, $id);
783
784   $storno_row->{id}         = $new_id;
785   $storno_row->{storno_id}  = $id;
786   $storno_row->{storno}     = 't';
787   $storno_row->{invnumber}  = 'Storno-' . $storno_row->{invnumber};
788   $storno_row->{amount}    *= -1;
789   $storno_row->{netamount} *= -1;
790   $storno_row->{paid}       = $storno_row->{amount};
791
792   delete @$storno_row{qw(itime mtime)};
793
794   $query = sprintf 'INSERT INTO ar (%s) VALUES (%s)', join(', ', keys %$storno_row), join(', ', map '?', values %$storno_row);
795   do_query($form, $dbh, $query, (values %$storno_row));
796
797   $query = qq|UPDATE ar SET paid = amount + paid, storno = 't' WHERE id = ?|;
798   do_query($form, $dbh, $query, $id);
799
800   $form->new_lastmtime('ar') if $id == $form->{id};
801
802   # now copy acc_trans entries
803   $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|;
804   my $rowref = selectall_hashref_query($form, $dbh, $query, $id);
805
806   # kill all entries containing payments, which are the last 2n rows, of which the last has link =~ /paid/
807   while ($rowref->[-1]{link} =~ /paid/) {
808     splice(@$rowref, -2);
809   }
810
811   for my $row (@$rowref) {
812     delete @$row{qw(itime mtime link acc_trans_id)};
813     $query = sprintf 'INSERT INTO acc_trans (%s) VALUES (%s)', join(', ', keys %$row), join(', ', map '?', values %$row);
814     $row->{trans_id}   = $new_id;
815     $row->{amount}    *= -1;
816     do_query($form, $dbh, $query, (values %$row));
817   }
818
819   map { IO->set_datepaid(table => 'ar', id => $_, dbh => $dbh) } ($id, $new_id);
820
821   return 1;
822 }
823
824
825 1;