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