Bericht EK-Rg/Kreditorenbuchungen: Abteilungen anzeigen können
[kivitendo-erp.git] / SL / AP.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 Payables database backend routines
33 #
34 #======================================================================
35
36 package AP;
37
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::DB::Draft;
44 use SL::DB::Order;
45 use SL::DB::PurchaseInvoice;
46 use SL::Util qw(trim);
47 use SL::DB;
48 use Data::Dumper;
49 use List::Util qw(sum0);
50 use strict;
51
52 sub post_transaction {
53   my ($self, $myconfig, $form, $provided_dbh, %params) = @_;
54   $main::lxdebug->enter_sub();
55
56   my $rc = SL::DB->client->with_transaction(\&_post_transaction, $self, $myconfig, $form, $provided_dbh, %params);
57
58   $::lxdebug->leave_sub;
59   return $rc;
60 }
61
62 sub _post_transaction {
63   my ($self, $myconfig, $form, $provided_dbh, %params) = @_;
64
65   my $payments_only = $params{payments_only};
66   my $dbh = $provided_dbh || SL::DB->client->dbh;
67
68   my ($null, $taxrate, $amount);
69   my $exchangerate = 0;
70
71   $form->{defaultcurrency} = $form->get_default_currency($myconfig);
72   $form->{taxincluded} = 0 unless $form->{taxincluded};
73
74   if ($form->{currency} eq $form->{defaultcurrency}) {
75     $form->{exchangerate} = 1;
76   } else {
77     $exchangerate         = $form->check_exchangerate($myconfig, $form->{currency}, $form->{transdate}, 'sell');
78     $form->{exchangerate} = $exchangerate || $form->parse_amount($myconfig, $form->{exchangerate});
79   }
80
81   # get the charts selected
82   $form->{AP_amounts}{"amount_$_"} = $form->{"AP_amount_chart_id_$_"} for (1 .. $form->{rowcount});
83
84   # calculate the totals while calculating and reformatting the $amount_$i and $tax_$i
85   ($form->{netamount},$form->{total_tax},$form->{invtotal}) = $form->calculate_arap('buy',$form->{taxincluded}, $form->{exchangerate});
86
87   # adjust paidaccounts if there is no date in the last row
88   $form->{paidaccounts}-- unless ($form->{"datepaid_$form->{paidaccounts}"});
89
90   $form->{invpaid} = 0;
91
92   # add payments
93   for my $i (1 .. $form->{paidaccounts}) {
94     $form->{"paid_$i"} =
95       $form->round_amount($form->parse_amount($myconfig, $form->{"paid_$i"}),
96                           2);
97
98     $form->{invpaid} += $form->{"paid_$i"};
99     $form->{datepaid} = $form->{"datepaid_$i"};
100
101   }
102
103   $form->{invpaid} =
104     $form->round_amount($form->{invpaid} * $form->{exchangerate}, 2);
105
106   # # store invoice total, this goes into ap table
107   # $form->{invtotal} = $form->{netamount} + $form->{total_tax};
108
109   # amount for total AP
110   $form->{payables} = $form->{invtotal};
111
112   # update exchangerate
113   if (($form->{currency} ne $form->{defaultcurrency}) && !$exchangerate) {
114     $form->update_exchangerate($dbh, $form->{currency}, $form->{transdate}, 0,
115                                $form->{exchangerate});
116   }
117
118   my ($query, $sth, @values);
119
120   if (!$payments_only) {
121     # if we have an id delete old records
122     if ($form->{id}) {
123
124       # delete detail records
125       $query = qq|DELETE FROM acc_trans WHERE trans_id = ?|;
126       do_query($form, $dbh, $query, $form->{id});
127
128     } else {
129
130       ($form->{id}) = selectrow_query($form, $dbh, qq|SELECT nextval('glid')|);
131
132       $query =
133         qq|INSERT INTO ap (id, invnumber, employee_id,currency_id, taxzone_id) | .
134         qq|VALUES (?, ?, (SELECT e.id FROM employee e WHERE e.login = ?),
135                       (SELECT id FROM currencies WHERE name = ?), (SELECT taxzone_id FROM vendor WHERE id = ?) )|;
136       do_query($form, $dbh, $query, $form->{id}, $form->{invnumber}, $::myconfig{login}, $form->{currency}, $form->{vendor_id});
137
138     }
139
140     $query = qq|UPDATE ap SET invnumber = ?,
141                 transdate = ?, ordnumber = ?, vendor_id = ?, taxincluded = ?,
142                 amount = ?, duedate = ?, paid = ?, netamount = ?,
143                 currency_id = (SELECT id FROM currencies WHERE name = ?), notes = ?, department_id = ?, storno = ?, storno_id = ?,
144                 globalproject_id = ?, direct_debit = ?
145                WHERE id = ?|;
146     @values = ($form->{invnumber}, conv_date($form->{transdate}),
147                   $form->{ordnumber}, conv_i($form->{vendor_id}),
148                   $form->{taxincluded} ? 't' : 'f', $form->{invtotal},
149                   conv_date($form->{duedate}), $form->{invpaid},
150                   $form->{netamount},
151                   $form->{currency}, $form->{notes},
152                   conv_i($form->{department_id}), $form->{storno},
153                   $form->{storno_id}, conv_i($form->{globalproject_id}),
154                   $form->{direct_debit} ? 't' : 'f',
155                   $form->{id});
156     do_query($form, $dbh, $query, @values);
157
158     $form->new_lastmtime('ap');
159
160     # Link this record to the record it was created from.
161     my $convert_from_oe_id = delete $form->{convert_from_oe_id};
162     if (!$form->{postasnew} && $convert_from_oe_id) {
163       RecordLinks->create_links('dbh'        => $dbh,
164                                 'mode'       => 'ids',
165                                 'from_table' => 'oe',
166                                 'from_ids'   => $convert_from_oe_id,
167                                 'to_table'   => 'ap',
168                                 'to_id'      => $form->{id},
169       );
170
171       # Close the record it was created from if the amount of
172       # all APs create from this record equals the records amount.
173       my @links = RecordLinks->get_links('dbh'        => $dbh,
174                                          'from_table' => 'oe',
175                                          'from_id'    => $convert_from_oe_id,
176                                          'to_table'   => 'ap',
177       );
178
179       my $amount_sum = sum0 map { SL::DB::PurchaseInvoice->new(id => $_->{to_id})->load->amount } @links;
180       my $order      = SL::DB::Order->new(id => $convert_from_oe_id)->load;
181
182       $order->update_attributes(closed => 1) if ($amount_sum - $order->amount) == 0;
183     }
184
185     # add individual transactions
186     for my $i (1 .. $form->{rowcount}) {
187       if ($form->{"amount_$i"} != 0) {
188         my $project_id;
189         $project_id = conv_i($form->{"project_id_$i"});
190
191         # insert detail records in acc_trans
192         $query =
193           qq|INSERT INTO acc_trans | .
194           qq|  (trans_id, chart_id, amount, transdate, project_id, taxkey, tax_id, chart_link)| .
195           qq|VALUES (?, ?,   ?, ?, ?, ?, ?, (SELECT c.link FROM chart c WHERE c.id = ?))|;
196         @values = ($form->{id}, $form->{"AP_amount_chart_id_$i"},
197                    $form->{"amount_$i"}, conv_date($form->{transdate}),
198                    $project_id, $form->{"taxkey_$i"}, conv_i($form->{"tax_id_$i"}),
199                    $form->{"AP_amount_chart_id_$i"});
200         do_query($form, $dbh, $query, @values);
201
202         if ($form->{"tax_$i"} != 0) {
203           # insert detail records in acc_trans
204           $query =
205             qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, | .
206             qq|  project_id, taxkey, tax_id, chart_link) | .
207             qq|VALUES (?, (SELECT c.id FROM chart c WHERE c.accno = ?), | .
208             qq|  ?, ?, ?, ?, ?,| .
209             qq| (SELECT c.link FROM chart c WHERE c.accno = ?))|;
210           @values = ($form->{id}, $form->{AP_amounts}{"tax_$i"},
211                      $form->{"tax_$i"}, conv_date($form->{transdate}),
212                      $project_id, $form->{"taxkey_$i"}, conv_i($form->{"tax_id_$i"}),
213                      $form->{AP_amounts}{"tax_$i"});
214           do_query($form, $dbh, $query, @values);
215         }
216
217       }
218     }
219
220     # add payables
221     $query =
222       qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, taxkey, tax_id, chart_link) | .
223       qq|VALUES (?, ?, ?, ?, | .
224       qq|        (SELECT taxkey_id FROM chart WHERE id = ?),| .
225       qq|        (SELECT tax_id| .
226       qq|         FROM taxkeys| .
227       qq|         WHERE chart_id = ?| .
228       qq|         AND startdate <= ?| .
229       qq|         ORDER BY startdate DESC LIMIT 1),| .
230       qq|        (SELECT c.link FROM chart c WHERE c.id = ?))|;
231     @values = ($form->{id}, $form->{AP_chart_id}, $form->{payables},
232                conv_date($form->{transdate}), $form->{AP_chart_id}, $form->{AP_chart_id}, conv_date($form->{transdate}),
233                $form->{AP_chart_id});
234     do_query($form, $dbh, $query, @values);
235   }
236
237   # if there is no amount but a payment record a payable
238   if ($form->{amount} == 0 && $form->{invtotal} == 0) {
239     $form->{payables} = $form->{invpaid};
240   }
241
242   my %already_cleared = %{ $params{already_cleared} // {} };
243
244   # add paid transactions
245   for my $i (1 .. $form->{paidaccounts}) {
246
247     if ($form->{"acc_trans_id_$i"} && $payments_only && (SL::DB::Default->get->payments_changeable == 0)) {
248       next;
249     }
250
251     if ($form->{"paid_$i"} != 0) {
252       my $project_id = conv_i($form->{"paid_project_id_$i"});
253
254       $exchangerate = 0;
255       if ($form->{currency} eq $form->{defaultcurrency}) {
256         $form->{"exchangerate_$i"} = 1;
257       } else {
258         $exchangerate              = $form->check_exchangerate($myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'sell');
259         $form->{"exchangerate_$i"} = $exchangerate || $form->parse_amount($myconfig, $form->{"exchangerate_$i"});
260       }
261       $form->{"AP_paid_$i"} =~ s/\"//g;
262
263       # get paid account
264
265       ($form->{"AP_paid_account_$i"}) = split(/--/, $form->{"AP_paid_$i"});
266       $form->{"datepaid_$i"} = $form->{transdate}
267         unless ($form->{"datepaid_$i"});
268
269       # if there is no amount and invtotal is zero there is no exchangerate
270       if ($form->{amount} == 0 && $form->{invtotal} == 0) {
271         $form->{exchangerate} = $form->{"exchangerate_$i"};
272       }
273
274       $amount =
275         $form->round_amount($form->{"paid_$i"} * $form->{exchangerate} * -1,
276                             2);
277
278       my $new_cleared = !$form->{"acc_trans_id_$i"}                                                             ? 'f'
279                       : !$already_cleared{$form->{"acc_trans_id_$i"}}                                           ? 'f'
280                       : $already_cleared{$form->{"acc_trans_id_$i"}}->{amount} != $amount * -1                  ? 'f'
281                       : $already_cleared{$form->{"acc_trans_id_$i"}}->{accno}  != $form->{"AP_paid_account_$i"} ? 'f'
282                       : $already_cleared{$form->{"acc_trans_id_$i"}}->{cleared}                                 ? 't'
283                       :                                                                                           'f';
284
285       if ($form->{payables}) {
286         $query =
287           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, project_id, cleared, taxkey, tax_id, chart_link) | .
288           qq|VALUES (?, ?, ?, ?, ?, ?, | .
289           qq|        (SELECT taxkey_id FROM chart WHERE id = ?),| .
290           qq|        (SELECT tax_id| .
291           qq|         FROM taxkeys| .
292           qq|         WHERE chart_id = ?| .
293           qq|         AND startdate <= ?| .
294           qq|         ORDER BY startdate DESC LIMIT 1),| .
295           qq|        (SELECT c.link FROM chart c WHERE c.id = ?))|;
296         @values = ($form->{id}, $form->{AP_chart_id}, $amount,
297                    conv_date($form->{"datepaid_$i"}), $project_id, $new_cleared,
298                    $form->{AP_chart_id}, $form->{AP_chart_id}, conv_date($form->{"datepaid_$i"}),
299                    $form->{AP_chart_id});
300         do_query($form, $dbh, $query, @values);
301       }
302       $form->{payables} = $amount;
303
304       # add payment
305       my $gldate = (conv_date($form->{"gldate_$i"}))? conv_date($form->{"gldate_$i"}) : conv_date($form->current_date($myconfig));
306       $query =
307         qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, gldate, source, memo, project_id, cleared, taxkey, tax_id, chart_link) | .
308         qq|VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, ?, ?, ?, ?, ?, | .
309         qq|        (SELECT taxkey_id FROM chart WHERE accno = ?), | .
310         qq|        (SELECT tax_id| .
311         qq|         FROM taxkeys| .
312         qq|         WHERE chart_id= (SELECT id | .
313         qq|                          FROM chart| .
314         qq|                          WHERE accno = ?)| .
315         qq|         AND startdate <= ?| .
316         qq|         ORDER BY startdate DESC LIMIT 1),| .
317         qq|        (SELECT c.link FROM chart c WHERE c.accno = ?))|;
318       @values = ($form->{id}, $form->{"AP_paid_account_$i"}, $form->{"paid_$i"},
319                  conv_date($form->{"datepaid_$i"}), $gldate, $form->{"source_$i"},
320                  $form->{"memo_$i"}, $project_id, $new_cleared, $form->{"AP_paid_account_$i"},
321                  $form->{"AP_paid_account_$i"}, conv_date($form->{"datepaid_$i"}),
322                  $form->{"AP_paid_account_$i"});
323       do_query($form, $dbh, $query, @values);
324
325       # add exchange rate difference
326       $amount =
327         $form->round_amount($form->{"paid_$i"} *
328                             ($form->{"exchangerate_$i"} - 1), 2);
329       if ($amount != 0) {
330         $query =
331           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, fx_transaction, cleared, project_id, taxkey, tax_id, chart_link) | .
332           qq|VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, 't', 'f', ?, | .
333           qq|        (SELECT taxkey_id FROM chart WHERE accno = ?), | .
334           qq|        (SELECT tax_id| .
335           qq|         FROM taxkeys| .
336           qq|         WHERE chart_id= (SELECT id | .
337           qq|                          FROM chart| .
338           qq|                          WHERE accno = ?)| .
339           qq|         AND startdate <= ?| .
340           qq|         ORDER BY startdate DESC LIMIT 1),| .
341           qq|        (SELECT c.link FROM chart c WHERE c.accno = ?))|;
342         @values = ($form->{id}, $form->{"AP_paid_account_$i"}, $amount,
343                    conv_date($form->{"datepaid_$i"}), $project_id,
344                    $form->{"AP_paid_account_$i"},
345                    $form->{"AP_paid_account_$i"}, conv_date($form->{"datepaid_$i"}),
346                    $form->{"AP_paid_account_$i"});
347         do_query($form, $dbh, $query, @values);
348       }
349
350       # exchangerate gain/loss
351       $amount =
352         $form->round_amount($form->{"paid_$i"} *
353                             ($form->{exchangerate} -
354                              $form->{"exchangerate_$i"}), 2);
355
356       if ($amount != 0) {
357         # fetch fxgain and fxloss chart info from defaults if charts aren't already filled in form
358         if ( !$form->{fxgain_accno} && $::instance_conf->get_fxgain_accno_id ) {
359           $form->{fxgain_accno} = SL::DB::Manager::Chart->find_by(id => $::instance_conf->get_fxgain_accno_id)->accno;
360         };
361         if ( !$form->{fxloss_accno} && $::instance_conf->get_fxloss_accno_id ) {
362           $form->{fxloss_accno} = SL::DB::Manager::Chart->find_by(id => $::instance_conf->get_fxloss_accno_id)->accno;
363         };
364         die "fxloss_accno missing" if $amount < 0 and not $form->{fxloss_accno};
365         die "fxgain_accno missing" if $amount > 0 and not $form->{fxgain_accno};
366         $query =
367           qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, fx_transaction, cleared, project_id, taxkey, tax_id, chart_link) | .
368           qq|VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, 't', 'f', ?, | .
369           qq|        (SELECT taxkey_id FROM chart WHERE accno = ?),| .
370           qq|        (SELECT tax_id| .
371           qq|         FROM taxkeys| .
372           qq|         WHERE chart_id= (SELECT id | .
373           qq|                          FROM chart| .
374           qq|                          WHERE accno = ?)| .
375           qq|         AND startdate <= ?| .
376           qq|         ORDER BY startdate DESC LIMIT 1),| .
377           qq|        (SELECT c.link FROM chart c WHERE c.accno = ?))|;
378         @values = ($form->{id},
379                    ($amount > 0) ? $form->{fxgain_accno} : $form->{fxloss_accno},
380                    $amount, conv_date($form->{"datepaid_$i"}), $project_id,
381                    ($amount > 0) ? $form->{fxgain_accno} : $form->{fxloss_accno},
382                    ($amount > 0) ? $form->{fxgain_accno} : $form->{fxloss_accno}, conv_date($form->{"datepaid_$i"}),
383                    ($amount > 0) ? $form->{fxgain_accno} : $form->{fxloss_accno});
384         do_query($form, $dbh, $query, @values);
385       }
386
387       # update exchange rate record
388       if (($form->{currency} ne $form->{defaultcurrency}) && !$exchangerate) {
389         $form->update_exchangerate($dbh, $form->{currency},
390                                    $form->{"datepaid_$i"},
391                                    0, $form->{"exchangerate_$i"});
392       }
393     }
394   }
395
396   if ($payments_only) {
397     $query = qq|UPDATE ap SET paid = ?, datepaid = ? WHERE id = ?|;
398     do_query($form, $dbh, $query,  $form->{invpaid}, $form->{invpaid} ? conv_date($form->{datepaid}) : undef, conv_i($form->{id}));
399     $form->new_lastmtime('ap');
400   }
401
402   IO->set_datepaid(table => 'ap', id => $form->{id}, dbh => $dbh);
403
404   if ($form->{draft_id}) {
405     SL::DB::Manager::Draft->delete_all(where => [ id => delete($form->{draft_id}) ]);
406   }
407
408   # safety check datev export
409   if ($::instance_conf->get_datev_check_on_ap_transaction) {
410     my $datev = SL::DATEV->new(
411       dbh        => $dbh,
412       trans_id   => $form->{id},
413     );
414     $datev->generate_datev_data;
415
416     if ($datev->errors) {
417       die join "\n", $::locale->text('DATEV check returned errors:'), $datev->errors;
418     }
419   }
420
421   return 1;
422 }
423
424 sub delete_transaction {
425   $main::lxdebug->enter_sub();
426
427   my ($self, $myconfig, $form) = @_;
428
429   SL::DB->client->with_transaction(sub {
430     my $query = qq|DELETE FROM ap WHERE id = ?|;
431     do_query($form, SL::DB->client->dbh, $query, $form->{id});
432     1;
433   }) or do { die SL::DB->client->error };
434
435   $main::lxdebug->leave_sub();
436
437   return 1;
438 }
439
440 sub ap_transactions {
441   $main::lxdebug->enter_sub();
442
443   my ($self, $myconfig, $form) = @_;
444
445   # connect to database
446   my $dbh = $form->get_standard_dbh($myconfig);
447
448   my $query =
449     qq|SELECT a.id, a.invnumber, a.transdate, a.duedate, a.amount, a.paid, | .
450     qq|  a.ordnumber, v.name, a.invoice, a.netamount, a.datepaid, a.notes, | .
451     qq|  a.globalproject_id, a.storno, a.storno_id, a.direct_debit, | .
452     qq|  pr.projectnumber AS globalprojectnumber, | .
453     qq|  e.name AS employee, | .
454     qq|  v.vendornumber, v.country, v.ustid, | .
455     qq|  tz.description AS taxzone, | .
456     qq|  pt.description AS payment_terms, | .
457     qq|  department.description AS department, | .
458     qq{  ( SELECT ch.accno || ' -- ' || ch.description
459            FROM acc_trans at
460            LEFT JOIN chart ch ON ch.id = at.chart_id
461            WHERE ch.link ~ 'AP[[:>:]]'
462             AND at.trans_id = a.id
463             LIMIT 1
464           ) AS charts } .
465     qq|FROM ap a | .
466     qq|JOIN vendor v ON (a.vendor_id = v.id) | .
467     qq|LEFT JOIN contacts cp ON (a.cp_id = cp.cp_id) | .
468     qq|LEFT JOIN employee e ON (a.employee_id = e.id) | .
469     qq|LEFT JOIN project pr ON (a.globalproject_id = pr.id) | .
470     qq|LEFT JOIN tax_zones tz ON (tz.id = a.taxzone_id)| .
471     qq|LEFT JOIN payment_terms pt ON (pt.id = a.payment_id)| .
472     qq|LEFT JOIN department ON (department.id = a.department_id)|;
473
474   my $where = '';
475
476   my @values;
477
478   # Permissions:
479   # - Always return invoices & AP transactions for projects the employee has "view invoices" permissions for, no matter what the other rules say.
480   # - Exclude AP transactions if no permissions for them exist.
481   # - Filter by employee if requested.
482   my (@permission_where, @permission_values);
483
484   if ($::auth->assert('vendor_invoice_edit', 1)) {
485     if (!$::auth->assert('show_ap_transactions', 1)) {
486       push @permission_where, "NOT invoice = 'f'"; # remove ap transactions from Purchase -> Reports -> Invoices
487     }
488
489     if ($form->{employee_id}) {
490       push @permission_where,  "a.employee_id = ?";
491       push @permission_values, conv_i($form->{employee_id});
492     }
493   }
494
495   if (@permission_where || !$::auth->assert('vendor_invoice_edit', 1)) {
496     my $permission_where_str = @permission_where ? "OR (" . join(" AND ", map { "($_)" } @permission_where) . ")" : "";
497     $where .= qq|
498       AND (   (a.globalproject_id IN (
499                SELECT epi.project_id
500                FROM employee_project_invoices epi
501                WHERE epi.employee_id = ?))
502            $permission_where_str)
503     |;
504     push @values, SL::DB::Manager::Employee->current->id, @permission_values;
505   }
506
507   if ($form->{vendor}) {
508     $where .= " AND v.name ILIKE ?";
509     push(@values, like($form->{vendor}));
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->{department_id}) {
516     $where .= " AND a.department_id = ?";
517     push(@values, $form->{department_id});
518   }
519   if ($form->{invnumber}) {
520     $where .= " AND a.invnumber ILIKE ?";
521     push(@values, like($form->{invnumber}));
522   }
523   if ($form->{ordnumber}) {
524     $where .= " AND a.ordnumber ILIKE ?";
525     push(@values, like($form->{ordnumber}));
526   }
527   if ($form->{notes}) {
528     $where .= " AND lower(a.notes) LIKE ?";
529     push(@values, like($form->{notes}));
530   }
531   if ($form->{project_id}) {
532     $where .=
533       qq| AND ((a.globalproject_id = ?) OR EXISTS | .
534       qq|  (SELECT * FROM invoice i | .
535       qq|   WHERE i.project_id = ? AND i.trans_id = a.id) | .
536       qq| OR EXISTS | .
537       qq|  (SELECT * FROM acc_trans at | .
538       qq|   WHERE at.project_id = ? AND at.trans_id = a.id)| .
539       qq|  )|;
540     push(@values, $form->{project_id}, $form->{project_id}, $form->{project_id});
541   }
542
543   if ($form->{transdatefrom}) {
544     $where .= " AND a.transdate >= ?";
545     push(@values, trim($form->{transdatefrom}));
546   }
547   if ($form->{transdateto}) {
548     $where .= " AND a.transdate <= ?";
549     push(@values, trim($form->{transdateto}));
550   }
551   if ($form->{open} || $form->{closed}) {
552     unless ($form->{open} && $form->{closed}) {
553       $where .= " AND a.amount <> a.paid" if ($form->{open});
554       $where .= " AND a.amount = a.paid"  if ($form->{closed});
555     }
556   }
557
558   if ($form->{parts_partnumber}) {
559     $where .= <<SQL;
560  AND EXISTS (
561         SELECT invoice.trans_id
562         FROM invoice
563         LEFT JOIN parts ON (invoice.parts_id = parts.id)
564         WHERE (invoice.trans_id = a.id)
565           AND (parts.partnumber ILIKE ?)
566         LIMIT 1
567       )
568 SQL
569     push @values, like($form->{parts_partnumber});
570   }
571
572   if ($form->{parts_description}) {
573     $where .= <<SQL;
574  AND EXISTS (
575         SELECT invoice.trans_id
576         FROM invoice
577         WHERE (invoice.trans_id = a.id)
578           AND (invoice.description ILIKE ?)
579         LIMIT 1
580       )
581 SQL
582     push @values, like($form->{parts_description});
583   }
584
585   if ($where) {
586     $where  =~ s{\s*AND\s*}{ WHERE };
587     $query .= $where;
588   }
589
590   my @a = qw(transdate invnumber name);
591   push @a, "employee" if $form->{l_employee};
592   my $sortdir   = !defined $form->{sortdir} ? 'ASC' : $form->{sortdir} ? 'ASC' : 'DESC';
593   my $sortorder = join(', ', map { "$_ $sortdir" } @a);
594
595   if (grep({ $_ eq $form->{sort} } qw(transdate id invnumber ordnumber name netamount tax amount paid datepaid due duedate notes employee transaction_description direct_debit department))) {
596     $sortorder = $form->{sort} . " $sortdir";
597   }
598
599   $query .= " ORDER BY $sortorder";
600
601   my @result = selectall_hashref_query($form, $dbh, $query, @values);
602
603   $form->{AP} = [ @result ];
604
605   $main::lxdebug->leave_sub();
606 }
607
608 sub get_transdate {
609   $main::lxdebug->enter_sub();
610
611   my ($self, $myconfig, $form) = @_;
612
613   # connect to database
614   my $dbh = SL::DB->client->dbh;
615
616   my $query =
617     "SELECT COALESCE(" .
618     "  (SELECT transdate FROM ap WHERE id = " .
619     "    (SELECT MAX(id) FROM ap) LIMIT 1), " .
620     "  current_date)";
621   ($form->{transdate}) = $dbh->selectrow_array($query);
622
623   $main::lxdebug->leave_sub();
624 }
625
626 sub _delete_payments {
627   $main::lxdebug->enter_sub();
628
629   my ($self, $form, $dbh) = @_;
630
631   my @delete_acc_trans_ids;
632
633   # Delete old payment entries from acc_trans.
634   my $query =
635     qq|SELECT acc_trans_id
636        FROM acc_trans
637        WHERE (trans_id = ?) AND fx_transaction
638
639        UNION
640
641        SELECT at.acc_trans_id
642        FROM acc_trans at
643        LEFT JOIN chart c ON (at.chart_id = c.id)
644        WHERE (trans_id = ?) AND (c.link LIKE '%AP_paid%')|;
645   push @delete_acc_trans_ids, selectall_array_query($form, $dbh, $query, conv_i($form->{id}), conv_i($form->{id}));
646
647   $query =
648     qq|SELECT at.acc_trans_id
649        FROM acc_trans at
650        LEFT JOIN chart c ON (at.chart_id = c.id)
651        WHERE (trans_id = ?)
652          AND ((c.link = 'AP') OR (c.link LIKE '%:AP') OR (c.link LIKE 'AP:%'))
653        ORDER BY at.acc_trans_id
654        OFFSET 1|;
655   push @delete_acc_trans_ids, selectall_array_query($form, $dbh, $query, conv_i($form->{id}));
656
657   if (@delete_acc_trans_ids) {
658     $query = qq|DELETE FROM acc_trans WHERE acc_trans_id IN (| . join(", ", @delete_acc_trans_ids) . qq|)|;
659     do_query($form, $dbh, $query);
660   }
661
662   $main::lxdebug->leave_sub();
663 }
664
665 sub post_payment {
666   my ($self, $myconfig, $form, $locale) = @_;
667   $main::lxdebug->enter_sub();
668
669   my $rc = SL::DB->client->with_transaction(\&_post_payment, $self, $myconfig, $form, $locale);
670
671   $::lxdebug->leave_sub;
672   return $rc;
673 }
674
675 sub _post_payment {
676   my ($self, $myconfig, $form, $locale) = @_;
677
678   my $dbh = SL::DB->client->dbh;
679
680   my (%payments, $old_form, $row, $item, $query, %keep_vars);
681
682   $old_form = save_form();
683
684   $query = <<SQL;
685     SELECT at.acc_trans_id, at.amount, at.cleared, c.accno
686     FROM acc_trans at
687     LEFT JOIN chart c ON (at.chart_id = c.id)
688     WHERE (at.trans_id = ?)
689 SQL
690
691   my %already_cleared = selectall_as_map($form, $dbh, $query, 'acc_trans_id', [ qw(amount cleared accno) ], $form->{id});
692
693   # Delete all entries in acc_trans from prior payments.
694   if (SL::DB::Default->get->payments_changeable != 0) {
695     $self->_delete_payments($form, $dbh);
696   }
697
698   # Save the new payments the user made before cleaning up $form.
699   my $payments_re = '^datepaid_\d+$|^gldate_\d+$|^acc_trans_id_\d+$|^memo_\d+$|^source_\d+$|^exchangerate_\d+$|^paid_\d+$|^paid_project_id_\d+$|^AP_paid_\d+$|^paidaccounts$';
700   map { $payments{$_} = $form->{$_} } grep m/$payments_re/, keys %{ $form };
701
702   # Clean up $form so that old content won't tamper the results.
703   %keep_vars = map { $_, 1 } qw(login password id);
704   map { delete $form->{$_} unless $keep_vars{$_} } keys %{ $form };
705
706   # Retrieve the invoice from the database.
707   $form->create_links('AP', $myconfig, 'vendor', $dbh);
708
709   # Restore the payment options from the user input.
710   map { $form->{$_} = $payments{$_} } keys %payments;
711
712   # Set up the content of $form in the way that AR::post_transaction() expects.
713
714   $self->setup_form($form, 1);
715
716   $form->{exchangerate}    = $form->format_amount($myconfig, $form->{exchangerate});
717   $form->{defaultcurrency} = $form->get_default_currency($myconfig);
718
719   # Get the AP accno.
720   $query =
721     qq|SELECT c.id
722        FROM acc_trans at
723        LEFT JOIN chart c ON (at.chart_id = c.id)
724        WHERE (trans_id = ?)
725          AND ((c.link = 'AP') OR (c.link LIKE '%:AP') OR (c.link LIKE 'AP:%'))
726        ORDER BY at.acc_trans_id
727        LIMIT 1|;
728
729   ($form->{AP_chart_id}) = selectfirst_array_query($form, $dbh, $query, conv_i($form->{id}));
730
731   # Post the new payments.
732   $self->post_transaction($myconfig, $form, $dbh, payments_only => 1, already_cleared => \%already_cleared);
733
734   restore_form($old_form);
735
736   return 1;
737 }
738
739 sub setup_form {
740   $main::lxdebug->enter_sub();
741
742   my ($self, $form, $for_post_payments) = @_;
743
744   my ($exchangerate, $i, $j, $k, $key, $akey, $ref, $index, $taxamount, $totalamount, $totaltax, $totalwithholding, $withholdingrate,
745       $tax, $diff);
746
747   # forex
748   $form->{forex} = $form->{exchangerate};
749   $exchangerate = ($form->{exchangerate}) ? $form->{exchangerate} : 1;
750
751   foreach $key (keys %{ $form->{AP_links} }) {
752     foreach $ref (@{ $form->{AP_links}{$key} }) {
753       if ($key eq "AP_paid") {
754         $form->{"select$key"} .= "<option value=\"$ref->{accno}\">$ref->{accno}--$ref->{description}</option>\n";
755       } else {
756         $form->{"select$key"} .= "<option value=\"$ref->{accno}--$ref->{tax_id}\">$ref->{accno}--$ref->{description}</option>\n";
757       }
758     }
759
760     $form->{$key} = $form->{"select$key"};
761
762     $j = 0;
763     $k = 0;
764
765     # if there is a value we have an old entry
766     next unless $form->{acc_trans}{$key};
767
768     # do not use old entries for payments. They come from the form
769     # even if they are not changeable (then they are in hiddens)
770     next if $for_post_payments && $key eq "AP_paid";
771
772     for $i (1 .. scalar @{ $form->{acc_trans}{$key} }) {
773
774       if ($key eq "AP_paid") {
775         $j++;
776         $form->{"AP_paid_$j"}         = "$form->{acc_trans}{$key}->[$i-1]->{accno}--$form->{acc_trans}{$key}->[$i-1]->{description}";
777         $form->{"acc_trans_id_$j"}    = $form->{acc_trans}{$key}->[$i - 1]->{acc_trans_id};
778         $form->{"paid_$j"}            = $form->{acc_trans}{$key}->[$i - 1]->{amount};
779         $form->{"datepaid_$j"}        = $form->{acc_trans}{$key}->[$i - 1]->{transdate};
780         $form->{"gldate_$j"}          = $form->{acc_trans}{$key}->[$i - 1]->{gldate};
781         $form->{"source_$j"}          = $form->{acc_trans}{$key}->[$i - 1]->{source};
782         $form->{"memo_$j"}            = $form->{acc_trans}{$key}->[$i - 1]->{memo};
783
784         $form->{"exchangerate_$i"}    = $form->{acc_trans}{$key}->[$i - 1]->{exchangerate};
785         $form->{"forex_$j"}           = $form->{"exchangerate_$i"};
786         $form->{"AP_paid_$j"}         = $form->{acc_trans}{$key}->[$i-1]->{accno};
787         $form->{"paid_project_id_$j"} = $form->{acc_trans}{$key}->[$i - 1]->{project_id};
788         $form->{paidaccounts}++;
789
790       } else {
791         $akey = $key;
792         $akey =~ s/AP_//;
793
794         if (($key eq "AP_tax") || ($key eq "AR_tax")) {
795           $form->{"${key}_$form->{acc_trans}{$key}->[$i-1]->{accno}"}  = "$form->{acc_trans}{$key}->[$i-1]->{accno}--$form->{acc_trans}{$key}->[$i-1]->{description}";
796           $form->{"${akey}_$form->{acc_trans}{$key}->[$i-1]->{accno}"} = $form->round_amount($form->{acc_trans}{$key}->[$i - 1]->{amount} / $exchangerate, 2);
797
798           if ($form->{"$form->{acc_trans}{$key}->[$i-1]->{accno}_rate"} > 0) {
799             $totaltax += $form->{"${akey}_$form->{acc_trans}{$key}->[$i-1]->{accno}"};
800           } else {
801             $totalwithholding += $form->{"${akey}_$form->{acc_trans}{$key}->[$i-1]->{accno}"};
802             $withholdingrate  += $form->{"$form->{acc_trans}{$key}->[$i-1]->{accno}_rate"};
803           }
804
805           $index                 = $form->{acc_trans}{$key}->[$i - 1]->{index};
806           $form->{"tax_$index"}  = $form->round_amount($form->{acc_trans}{$key}->[$i - 1]->{amount} * -1 / $exchangerate, 2);
807           $totaltax             += $form->{"tax_$index"};
808
809         } else {
810           $k++;
811           $form->{"${akey}_$k"} = $form->round_amount($form->{acc_trans}{$key}->[$i - 1]->{amount} / $exchangerate, 2);
812
813           if ($akey eq 'amount') {
814             $form->{rowcount}++;
815             $form->{"${akey}_$i"} *= -1;
816             $totalamount          += $form->{"${akey}_$i"};
817             $form->{taxrate}       = $form->{acc_trans}{$key}->[$i - 1]->{rate};
818
819             $form->{"projectnumber_$k"}    = "$form->{acc_trans}{$key}->[$i-1]->{projectnumber}";
820             $form->{"oldprojectnumber_$k"} = $form->{"projectnumber_$k"};
821             $form->{"project_id_$k"}       = "$form->{acc_trans}{$key}->[$i-1]->{project_id}";
822             $form->{"${key}_chart_id_$k"}  = $form->{acc_trans}{$key}->[$i-1]->{chart_id};
823             $form->{"taxchart_$k"} = $form->{acc_trans}{$key}->[$i-1]->{id}    . "--" . $form->{acc_trans}{$key}->[$i-1]->{rate};
824           }
825         }
826       }
827     }
828   }
829
830   $form->{paidaccounts} = 1            if not defined $form->{paidaccounts};
831
832   if ($form->{taxincluded} && $form->{taxrate} && $totalamount) {
833     # add tax to amounts and invtotal
834     for $i (1 .. $form->{rowcount}) {
835       $taxamount            = ($totaltax + $totalwithholding) * $form->{"amount_$i"} / $totalamount;
836       $tax                  = $form->round_amount($taxamount, 2);
837       $diff                += ($taxamount - $tax);
838       $form->{"amount_$i"} += $form->{"tax_$i"};
839     }
840
841     $form->{amount_1} += $form->round_amount($diff, 2);
842   }
843
844   $taxamount        = $form->round_amount($taxamount, 2);
845   $form->{invtotal} = $totalamount + $totaltax;
846
847   $main::lxdebug->leave_sub();
848 }
849
850 sub storno {
851   my ($self, $form, $myconfig, $id) = @_;
852   $main::lxdebug->enter_sub();
853
854   my $rc = SL::DB->client->with_transaction(\&_storno, $self, $form, $myconfig, $id);
855
856   $::lxdebug->leave_sub;
857   return $rc;
858 }
859
860 sub _storno {
861   my ($self, $form, $myconfig, $id) = @_;
862
863   my ($query, $new_id, $storno_row, $acc_trans_rows);
864   my $dbh = SL::DB->client->dbh;
865
866   $query = qq|SELECT nextval('glid')|;
867   ($new_id) = selectrow_query($form, $dbh, $query);
868
869   $query = qq|SELECT * FROM ap WHERE id = ?|;
870   $storno_row = selectfirst_hashref_query($form, $dbh, $query, $id);
871
872   $storno_row->{id}         = $new_id;
873   $storno_row->{storno_id}  = $id;
874   $storno_row->{storno}     = 't';
875   $storno_row->{invnumber}  = 'Storno-' . $storno_row->{invnumber};
876   $storno_row->{amount}    *= -1;
877   $storno_row->{netamount} *= -1;
878   $storno_row->{paid}       = $storno_row->{amount};
879
880   delete @$storno_row{qw(itime mtime)};
881
882   $query = sprintf 'INSERT INTO ap (%s) VALUES (%s)', join(', ', keys %$storno_row), join(', ', map '?', values %$storno_row);
883   do_query($form, $dbh, $query, (values %$storno_row));
884
885   $query = qq|UPDATE ap SET paid = amount + paid, storno = 't' WHERE id = ?|;
886   do_query($form, $dbh, $query, $id);
887
888   $form->new_lastmtime('ap') if $id == $form->{id};
889
890   # now copy acc_trans entries
891   $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|;
892   my $rowref = selectall_hashref_query($form, $dbh, $query, $id);
893
894   # kill all entries containing payments, which are the last 2n rows, of which the last has link =~ /paid/
895   while ($rowref->[-1]{link} =~ /paid/) {
896     splice(@$rowref, -2);
897   }
898
899   for my $row (@$rowref) {
900     delete @$row{qw(itime mtime link acc_trans_id)};
901     $query = sprintf 'INSERT INTO acc_trans (%s) VALUES (%s)', join(', ', keys %$row), join(', ', map '?', values %$row);
902     $row->{trans_id}   = $new_id;
903     $row->{amount}    *= -1;
904     do_query($form, $dbh, $query, (values %$row));
905   }
906
907   map { IO->set_datepaid(table => 'ap', id => $_, dbh => $dbh) } ($id, $new_id);
908
909   return 1;
910 }
911
912 1;