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