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