1 #=====================================================================
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
7 #=====================================================================
8 # SQL-Ledger Accounting
11 # Author: Dieter Simader
12 # Email: dsimader@sql-ledger.org
13 # Web: http://www.sql-ledger.org
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.
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 #======================================================================
31 # Accounts Receivable module backend routines
33 #======================================================================
38 use SL::DATEV qw(:CONSTANTS);
46 sub post_transaction {
47 $main::lxdebug->enter_sub();
49 my ($self, $myconfig, $form, $provided_dbh, $payments_only) = @_;
51 my ($query, $sth, $null, $taxrate, $amount, $tax);
57 my $dbh = $provided_dbh ? $provided_dbh : $form->dbconnect_noauto($myconfig);
58 $form->{defaultcurrency} = $form->get_default_currency($myconfig);
59 delete $form->{currency} unless $form->{defaultcurrency};
62 $form->{exchangerate} = ($form->{currency} eq $form->{defaultcurrency}) ? 1 :
63 ( $form->check_exchangerate($myconfig, $form->{currency}, $form->{transdate}, 'buy') ||
64 $form->parse_amount($myconfig, $form->{exchangerate}) );
66 # get the charts selected
67 map { ($form->{AR_amounts}{"amount_$_"}) = split /--/, $form->{"AR_amount_$_"} } 1 .. $form->{rowcount};
69 $form->{AR_amounts}{receivables} = $form->{ARselected};
70 $form->{AR}{receivables} = $form->{ARselected};
73 for $i (1 .. $form->{rowcount}) {
74 $form->{"amount_$i"} = $form->round_amount($form->parse_amount($myconfig, $form->{"amount_$i"}) * $form->{exchangerate}, 2);
75 $form->{amount} += $form->{"amount_$i"};
76 $form->{"tax_$i"} = $form->parse_amount($myconfig, $form->{"tax_$i"});
81 $form->{netamount} = 0;
82 $form->{total_tax} = 0;
84 # taxincluded doesn't make sense if there is no amount
85 $form->{taxincluded} = 0 unless $form->{amount};
87 for $i (1 .. $form->{rowcount}) {
88 ($form->{"tax_id_$i"}) = split /--/, $form->{"taxchart_$i"};
90 $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|;
91 ($form->{AR_amounts}{"tax_$i"}, $form->{"taxkey_$i"}, $form->{"taxrate_$i"}) = selectrow_query($form, $dbh, $query, $form->{"tax_id_$i"});
93 if ($form->{taxincluded} *= 1) {
94 $tax = $form->{"korrektur_$i"}
96 : $form->{"amount_$i"} - ($form->{"amount_$i"} / ($form->{"taxrate_$i"} + 1)); # should be same as taxrate * amount / (taxrate + 1)
97 $form->{"amount_$i"} = $form->round_amount($form->{"amount_$i"} - $tax, 2);
98 $form->{"tax_$i"} = $form->round_amount($tax, 2);
100 $form->{"tax_$i"} = $form->{"amount_$i"} * $form->{"taxrate_$i"} unless $form->{"korrektur_$i"};
101 $form->{"tax_$i"} = $form->round_amount($form->{"tax_$i"} * $form->{exchangerate}, 2);
103 $form->{netamount} += $form->{"amount_$i"};
104 $form->{total_tax} += $form->{"tax_$i"};
107 # adjust paidaccounts if there is no date in the last row
108 # this does not apply to stornos, where the paid field is set manually
109 unless ($form->{storno}) {
110 $form->{paidaccounts}-- unless $form->{"datepaid_$form->{paidaccounts}"};
114 for $i (1 .. $form->{paidaccounts}) {
115 $form->{"paid_$i"} = $form->round_amount($form->parse_amount($myconfig, $form->{"paid_$i"}), 2);
116 $form->{paid} += $form->{"paid_$i"};
117 $form->{datepaid} = $form->{"datepaid_$i"};
120 $form->{amount} = $form->{netamount} + $form->{total_tax};
122 $form->{paid} = $form->round_amount($form->{paid} * ($form->{exchangerate} || 1), 2);
124 ($null, $form->{employee_id}) = split /--/, $form->{employee};
126 $form->get_employee($dbh) unless $form->{employee_id};
128 # if we have an id delete old records else make one
129 if (!$payments_only) {
131 # delete detail records
132 $query = qq|DELETE FROM acc_trans WHERE trans_id = ?|;
133 do_query($form, $dbh, $query, $form->{id});
136 $query = qq|SELECT nextval('glid')|;
137 ($form->{id}) = selectrow_query($form, $dbh, $query);
138 $query = qq|INSERT INTO ar (id, invnumber, employee_id) VALUES (?, 'dummy', ?)|;
139 do_query($form, $dbh, $query, $form->{id}, $form->{employee_id});
140 $form->{invnumber} = $form->update_defaults($myconfig, "invnumber", $dbh) unless $form->{invnumber};
145 ($null, $form->{department_id}) = split(/--/, $form->{department});
146 $form->{department_id} *= 1;
148 # amount for AR account
149 $form->{receivables} = $form->round_amount($form->{amount}, 2) * -1;
151 # update exchangerate
152 $form->update_exchangerate($dbh, $form->{currency}, $form->{transdate}, $form->{exchangerate}, 0)
153 if ($form->{currency} ne $form->{defaultcurrency}) && !$form->check_exchangerate($myconfig, $form->{currency}, $form->{transdate}, 'buy');
155 if (!$payments_only) {
158 invnumber = ?, ordnumber = ?, transdate = ?, customer_id = ?,
159 taxincluded = ?, amount = ?, duedate = ?, paid = ?,
160 netamount = ?, curr = ?, notes = ?, department_id = ?,
161 employee_id = ?, storno = ?, storno_id = ?, globalproject_id = ?
163 my @values = ($form->{invnumber}, $form->{ordnumber}, conv_date($form->{transdate}), conv_i($form->{customer_id}), $form->{taxincluded} ? 't' : 'f', $form->{amount},
164 conv_date($form->{duedate}), $form->{paid}, $form->{netamount}, $form->{currency}, $form->{notes}, conv_i($form->{department_id}),
165 conv_i($form->{employee_id}), $form->{storno} ? 't' : 'f', $form->{storno_id},
166 conv_i($form->{globalproject_id}), conv_i($form->{id}));
167 do_query($form, $dbh, $query, @values);
169 # add individual transactions for AR, amount and taxes
170 for $i (1 .. $form->{rowcount}) {
171 if ($form->{"amount_$i"} != 0) {
172 my $project_id = conv_i($form->{"project_id_$i"});
174 # insert detail records in acc_trans
175 $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, project_id, taxkey)
176 VALUES (?, (SELECT c.id FROM chart c WHERE c.accno = ?), ?, ?, ?, ?)|;
177 @values = (conv_i($form->{id}), $form->{AR_amounts}{"amount_$i"}, conv_i($form->{"amount_$i"}), conv_date($form->{transdate}), $project_id,
178 conv_i($form->{"taxkey_$i"}));
179 do_query($form, $dbh, $query, @values);
181 if ($form->{"tax_$i"} != 0) {
182 # insert detail records in acc_trans
183 $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, project_id, taxkey)
184 VALUES (?, (SELECT c.id FROM chart c WHERE c.accno = ?), ?, ?, ?, ?)|;
185 @values = (conv_i($form->{id}), $form->{AR_amounts}{"tax_$i"}, conv_i($form->{"tax_$i"}), conv_date($form->{transdate}), $project_id,
186 conv_i($form->{"taxkey_$i"}));
187 do_query($form, $dbh, $query, @values);
193 $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, taxkey)
194 VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, (SELECT taxkey_id FROM chart WHERE accno = ?))|;
195 @values = (conv_i($form->{id}), $form->{AR_amounts}{receivables}, conv_i($form->{receivables}), conv_date($form->{transdate}), $form->{AR_amounts}{receivables});
196 do_query($form, $dbh, $query, @values);
199 # Record paid amount.
200 $query = qq|UPDATE ar SET paid = ?, datepaid = ? WHERE id = ?|;
201 do_query($form, $dbh, $query, $form->{paid}, $form->{paid} ? conv_date($form->{datepaid}) : undef, conv_i($form->{id}));
204 # add paid transactions
205 for my $i (1 .. $form->{paidaccounts}) {
207 if ($form->{"acc_trans_id_$i"} && $payments_only && (SL::DB::Default->get->payments_changeable == 0)) {
211 if ($form->{"paid_$i"} != 0) {
212 my $project_id = conv_i($form->{"paid_project_id_$i"});
214 $form->{"AR_paid_$i"} =~ s/\"//g;
215 ($form->{AR}{"paid_$i"}) = split(/--/, $form->{"AR_paid_$i"});
216 $form->{"datepaid_$i"} = $form->{transdate}
217 unless ($form->{"datepaid_$i"});
219 $form->{"exchangerate_$i"} = ($form->{currency} eq $form->{defaultcurrency}) ? 1 :
220 ( $form->check_exchangerate($myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy') ||
221 $form->parse_amount($myconfig, $form->{"exchangerate_$i"}) );
223 # if there is no amount and invtotal is zero there is no exchangerate
224 $form->{exchangerate} = $form->{"exchangerate_$i"}
225 if ($form->{amount} == 0 && $form->{netamount} == 0);
228 $amount = $form->round_amount($form->{"paid_$i"} * $form->{exchangerate}, 2);
232 $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, project_id, taxkey)
233 VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, ?, (SELECT taxkey_id FROM chart WHERE accno = ?))|;
234 @values = (conv_i($form->{id}), $form->{AR}{receivables}, $amount, conv_date($form->{"datepaid_$i"}), $project_id, $form->{AR}{receivables});
235 do_query($form, $dbh, $query, @values);
238 if ($form->{"paid_$i"} != 0) {
240 my $project_id = conv_i($form->{"paid_project_id_$i"});
241 my $gldate = (conv_date($form->{"gldate_$i"}))? conv_date($form->{"gldate_$i"}) : conv_date($form->current_date($myconfig));
242 $amount = $form->{"paid_$i"} * -1;
243 $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, gldate, source, memo, project_id, taxkey)
244 VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, ?, ?, ?, ?, (SELECT taxkey_id FROM chart WHERE accno = ?))|;
245 @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"});
246 do_query($form, $dbh, $query, @values);
248 # exchangerate difference for payment
249 $amount = $form->round_amount( $form->{"paid_$i"} * ($form->{"exchangerate_$i"} - 1) * -1, 2);
252 $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, fx_transaction, cleared, project_id, taxkey)
253 VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, 't', 'f', ?, (SELECT taxkey_id FROM chart WHERE accno = ?))|;
254 @values = (conv_i($form->{id}), $form->{AR}{"paid_$i"}, $amount, conv_date($form->{"datepaid_$i"}), $project_id, $form->{AR}{"paid_$i"});
255 do_query($form, $dbh, $query, @values);
258 # exchangerate gain/loss
259 $amount = $form->round_amount( $form->{"paid_$i"} * ($form->{exchangerate} - $form->{"exchangerate_$i"}) * -1, 2);
262 my $accno = ($amount > 0) ? $form->{fxgain_accno} : $form->{fxloss_accno};
263 $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, fx_transaction, cleared, project_id, taxkey)
264 VALUES (?, (SELECT id FROM chart WHERE accno = ?), ?, ?, 't', 'f', ?, (SELECT taxkey_id FROM chart WHERE accno = ?))|;
265 @values = (conv_i($form->{id}), $accno, $amount, conv_date($form->{"datepaid_$i"}), $project_id, $accno);
266 do_query($form, $dbh, $query, @values);
270 # update exchangerate record
271 $form->update_exchangerate($dbh, $form->{currency}, $form->{"datepaid_$i"}, $form->{"exchangerate_$i"}, 0)
272 if ($form->{currency} ne $form->{defaultcurrency}) && !$form->check_exchangerate($myconfig, $form->{currency}, $form->{"datepaid_$i"}, 'buy');
276 IO->set_datepaid(table => 'ar', id => $form->{id}, dbh => $dbh);
278 # safety check datev export
279 if ($::instance_conf->get_datev_check_on_ar_transaction) {
280 my $transdate = $::form->{transdate} ? DateTime->from_lxoffice($::form->{transdate}) : undef;
281 $transdate ||= DateTime->today;
283 my $datev = SL::DATEV->new(
284 exporttype => DATEV_ET_BUCHUNGEN,
285 format => DATEV_FORMAT_KNE,
293 if ($datev->errors) {
295 die join "\n", $::locale->text('DATEV check returned errors:'), $datev->errors;
300 if (!$provided_dbh) {
301 $rc = $dbh->commit();
305 $main::lxdebug->leave_sub() and return $rc;
308 sub _delete_payments {
309 $main::lxdebug->enter_sub();
311 my ($self, $form, $dbh) = @_;
313 my @delete_acc_trans_ids;
315 # Delete old payment entries from acc_trans.
317 qq|SELECT acc_trans_id
319 WHERE (trans_id = ?) AND fx_transaction
323 SELECT at.acc_trans_id
325 LEFT JOIN chart c ON (at.chart_id = c.id)
326 WHERE (trans_id = ?) AND (c.link LIKE '%AR_paid%')|;
327 push @delete_acc_trans_ids, selectall_array_query($form, $dbh, $query, conv_i($form->{id}), conv_i($form->{id}));
330 qq|SELECT at.acc_trans_id
332 LEFT JOIN chart c ON (at.chart_id = c.id)
334 AND ((c.link = 'AR') OR (c.link LIKE '%:AR') OR (c.link LIKE 'AR:%'))
335 ORDER BY at.acc_trans_id
337 push @delete_acc_trans_ids, selectall_array_query($form, $dbh, $query, conv_i($form->{id}));
339 if (@delete_acc_trans_ids) {
340 $query = qq|DELETE FROM acc_trans WHERE acc_trans_id IN (| . join(", ", @delete_acc_trans_ids) . qq|)|;
341 do_query($form, $dbh, $query);
344 $main::lxdebug->leave_sub();
348 $main::lxdebug->enter_sub();
350 my ($self, $myconfig, $form, $locale) = @_;
352 # connect to database, turn off autocommit
353 my $dbh = $form->dbconnect_noauto($myconfig);
355 my (%payments, $old_form, $row, $item, $query, %keep_vars);
357 $old_form = save_form();
359 # Delete all entries in acc_trans from prior payments.
360 if (SL::DB::Default->get->payments_changeable != 0) {
361 $self->_delete_payments($form, $dbh);
364 # Save the new payments the user made before cleaning up $form.
365 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$';
366 map { $payments{$_} = $form->{$_} } grep m/$payments_re/, keys %{ $form };
368 # Clean up $form so that old content won't tamper the results.
369 %keep_vars = map { $_, 1 } qw(login password id);
370 map { delete $form->{$_} unless $keep_vars{$_} } keys %{ $form };
372 # Retrieve the invoice from the database.
373 $form->create_links('AR', $myconfig, 'customer', $dbh);
375 # Restore the payment options from the user input.
376 map { $form->{$_} = $payments{$_} } keys %payments;
378 # Set up the content of $form in the way that AR::post_transaction() expects.
380 $self->setup_form($form, 1);
382 $form->{exchangerate} = $form->format_amount($myconfig, $form->{exchangerate});
383 $form->{defaultcurrency} = $form->get_default_currency($myconfig);
384 delete $form->{currency} unless $form->{defaultcurrency};
386 # Get the AR accno (which is normally done by Form::create_links()).
390 LEFT JOIN chart c ON (at.chart_id = c.id)
392 AND ((c.link = 'AR') OR (c.link LIKE '%:AR') OR (c.link LIKE 'AR:%'))
393 ORDER BY at.acc_trans_id
396 ($form->{ARselected}) = selectfirst_array_query($form, $dbh, $query, conv_i($form->{id}));
398 # Post the new payments.
399 $self->post_transaction($myconfig, $form, $dbh, 1);
401 restore_form($old_form);
403 my $rc = $dbh->commit();
406 $main::lxdebug->leave_sub();
411 sub delete_transaction {
412 $main::lxdebug->enter_sub();
414 my ($self, $myconfig, $form) = @_;
416 # connect to database, turn AutoCommit off
417 my $dbh = $form->dbconnect_noauto($myconfig);
419 my $query = qq|DELETE FROM ar WHERE id = ?|;
420 do_query($form, $dbh, $query, $form->{id});
422 $query = qq|DELETE FROM acc_trans WHERE trans_id = ?|;
423 do_query($form, $dbh, $query, $form->{id});
426 my $rc = $dbh->commit;
429 $main::lxdebug->leave_sub();
434 sub ar_transactions {
435 $main::lxdebug->enter_sub();
437 my ($self, $myconfig, $form) = @_;
439 # connect to database
440 my $dbh = $form->get_standard_dbh($myconfig);
445 qq|SELECT DISTINCT a.id, a.invnumber, a.ordnumber, a.transdate, | .
446 qq| a.duedate, a.netamount, a.amount, a.paid, | .
447 qq| a.invoice, a.datepaid, a.terms, a.notes, a.shipvia, | .
448 qq| a.shippingpoint, a.storno, a.storno_id, a.globalproject_id, | .
449 qq| a.marge_total, a.marge_percent, | .
450 qq| a.transaction_description, | .
451 qq| pr.projectnumber AS globalprojectnumber, | .
452 qq| c.name, c.customernumber, c.country, c.ustid, b.description as customertype, | .
453 qq| c.id as customer_id, | .
454 qq| e.name AS employee, | .
455 qq| e2.name AS salesman, | .
456 qq| tz.description AS taxzone, | .
457 qq| pt.description AS payment_terms, | .
458 qq{ ( SELECT ch.accno || ' -- ' || ch.description
460 LEFT JOIN chart ch ON ch.id = at.chart_id
461 WHERE ch.link ~ 'AR[[:>:]]'
462 AND at.trans_id = a.id
466 qq|JOIN customer c ON (a.customer_id = c.id) | .
467 qq|LEFT JOIN employee e ON (a.employee_id = e.id) | .
468 qq|LEFT JOIN employee e2 ON (a.salesman_id = e2.id) | .
469 qq|LEFT JOIN project pr ON (a.globalproject_id = pr.id)| .
470 qq|LEFT JOIN tax_zones tz ON (tz.id = c.taxzone_id)| .
471 qq|LEFT JOIN payment_terms pt ON (pt.id = c.payment_id)| .
472 qq|LEFT JOIN business b ON (b.id = c.business_id)| .
473 qq|LEFT JOIN department d ON (d.id = a.department_id)|;
476 if ($form->{customernumber}) {
477 $where .= " AND c.customernumber = ?";
478 push(@values, $form->{customernumber});
480 if ($form->{customer_id}) {
481 $where .= " AND a.customer_id = ?";
482 push(@values, $form->{customer_id});
483 } elsif ($form->{customer}) {
484 $where .= " AND c.name ILIKE ?";
485 push(@values, $form->like($form->{customer}));
487 if ($form->{business_id}) {
488 my $business_id = $form->{business_id};
489 $where .= " AND c.business_id = ?";
490 push(@values, $business_id);
492 if ($form->{department_id}) {
493 my $department_id = $form->{department_id};
494 $where .= " AND a.department_id = ?";
495 push(@values, $department_id);
497 if ($form->{department}) {
498 my $department = "%" . $form->{department} . "%";
499 $where .= " AND d.description ILIKE ?";
500 push(@values, $department);
502 foreach my $column (qw(invnumber ordnumber notes transaction_description)) {
503 if ($form->{$column}) {
504 $where .= " AND a.$column ILIKE ?";
505 push(@values, $form->like($form->{$column}));
508 if ($form->{"project_id"}) {
510 qq|AND ((a.globalproject_id = ?) OR EXISTS | .
511 qq| (SELECT * FROM invoice i | .
512 qq| WHERE i.project_id = ? AND i.trans_id = a.id) | .
514 qq| (SELECT * FROM acc_trans at | .
515 qq| WHERE at.project_id = ? AND at.trans_id = a.id)| .
517 push(@values, $form->{project_id}, $form->{project_id}, $form->{project_id});
520 if ($form->{transdatefrom}) {
521 $where .= " AND a.transdate >= ?";
522 push(@values, $form->{transdatefrom});
524 if ($form->{transdateto}) {
525 $where .= " AND a.transdate <= ?";
526 push(@values, $form->{transdateto});
528 if ($form->{open} || $form->{closed}) {
529 unless ($form->{open} && $form->{closed}) {
530 $where .= " AND a.amount <> a.paid" if ($form->{open});
531 $where .= " AND a.amount = a.paid" if ($form->{closed});
535 if (!$main::auth->assert('sales_all_edit', 1)) {
536 # only show own invoices
537 $where .= " AND a.employee_id = (select id from employee where login= ?)";
538 push (@values, $form->{login});
540 if ($form->{employee_id}) {
541 $where .= " AND a.employee_id = ?";
542 push @values, conv_i($form->{employee_id});
544 if ($form->{salesman_id}) {
545 $where .= " AND a.salesman_id = ?";
546 push @values, conv_i($form->{salesman_id});
550 my @a = qw(transdate invnumber name);
551 push @a, "employee" if $form->{l_employee};
552 my $sortdir = !defined $form->{sortdir} ? 'ASC' : $form->{sortdir} ? 'ASC' : 'DESC';
553 my $sortorder = join(', ', map { "$_ $sortdir" } @a);
555 if (grep({ $_ eq $form->{sort} } qw(id transdate duedate invnumber ordnumber name datepaid employee shippingpoint shipvia transaction_description))) {
556 $sortorder = $form->{sort} . " $sortdir";
559 $query .= " WHERE $where ORDER BY $sortorder";
561 my @result = selectall_hashref_query($form, $dbh, $query, @values);
563 $form->{AR} = [ @result ];
565 $main::lxdebug->leave_sub();
569 $main::lxdebug->enter_sub();
571 my ($self, $myconfig, $form) = @_;
573 # connect to database
574 my $dbh = $form->dbconnect($myconfig);
578 " (SELECT transdate FROM ar WHERE id = " .
579 " (SELECT MAX(id) FROM ar) LIMIT 1), " .
581 ($form->{transdate}) = $dbh->selectrow_array($query);
585 $main::lxdebug->leave_sub();
589 $main::lxdebug->enter_sub();
591 my ($self, $form, $for_post_payments) = @_;
593 my ($exchangerate, $akey, $j, $k, $index, $taxamount, $totaltax, $taxrate, $diff, $totalwithholding, $withholdingrate,
594 $totalamount, $taxincluded, $tax);
597 $form->{forex} = $form->{exchangerate};
598 $exchangerate = $form->{exchangerate} ? $form->{exchangerate} : 1;
600 foreach my $key (keys %{ $form->{AR_links} }) {
604 # if there is a value we have an old entry
605 next unless $form->{acc_trans}{$key};
607 # do not use old entries for payments. They come from the form
608 # even if they are not changeable (then they are in hiddens)
609 next if $for_post_payments && $key eq "AR_paid";
611 for my $i (1 .. scalar @{ $form->{acc_trans}{$key} }) {
612 if ($key eq "AR_paid") {
614 $form->{"AR_paid_$j"} = $form->{acc_trans}{$key}->[$i-1]->{accno};
616 $form->{"acc_trans_id_$j"} = $form->{acc_trans}{$key}->[$i - 1]->{acc_trans_id};
618 $form->{"paid_$j"} = $form->{acc_trans}{$key}->[$i - 1]->{amount} * -1;
619 $form->{"datepaid_$j"} = $form->{acc_trans}{$key}->[$i - 1]->{transdate};
620 $form->{"gldate_$j"} = $form->{acc_trans}{$key}->[$i - 1]->{gldate};
621 $form->{"source_$j"} = $form->{acc_trans}{$key}->[$i - 1]->{source};
622 $form->{"memo_$j"} = $form->{acc_trans}{$key}->[$i - 1]->{memo};
623 $form->{"forex_$j"} = $form->{acc_trans}{$key}->[$i - 1]->{exchangerate};
624 $form->{"exchangerate_$i"} = $form->{"forex_$j"};
625 $form->{"paid_project_id_$j"} = $form->{acc_trans}{$key}->[$i - 1]->{project_id};
626 $form->{paidaccounts}++;
633 if ($key eq "AR_tax" || $key eq "AP_tax") {
634 $form->{"${key}_$form->{acc_trans}{$key}->[$i-1]->{accno}"} = "$form->{acc_trans}{$key}->[$i-1]->{accno}--$form->{acc_trans}{$key}->[$i-1]->{description}";
635 $form->{"${akey}_$form->{acc_trans}{$key}->[$i-1]->{accno}"} = $form->round_amount($form->{acc_trans}{$key}->[$i - 1]->{amount} / $exchangerate, 2);
637 if ($form->{"$form->{acc_trans}{$key}->[$i-1]->{accno}_rate"} > 0) {
638 $totaltax += $form->{"${akey}_$form->{acc_trans}{$key}->[$i-1]->{accno}"};
639 $taxrate += $form->{"$form->{acc_trans}{$key}->[$i-1]->{accno}_rate"};
642 $totalwithholding += $form->{"${akey}_$form->{acc_trans}{$key}->[$i-1]->{accno}"};
643 $withholdingrate += $form->{"$form->{acc_trans}{$key}->[$i-1]->{accno}_rate"};
646 $index = $form->{acc_trans}{$key}->[$i - 1]->{index};
647 $form->{"tax_$index"} = $form->{acc_trans}{$key}->[$i - 1]->{amount};
648 $totaltax += $form->{"tax_$index"};
652 $form->{"${akey}_$k"} = $form->round_amount($form->{acc_trans}{$key}->[$i - 1]->{amount} / $exchangerate, 2);
654 if ($akey eq 'amount') {
656 $totalamount += $form->{"${akey}_$i"};
658 $form->{"oldprojectnumber_$k"} = $form->{acc_trans}{$key}->[$i-1]->{projectnumber};
659 $form->{"projectnumber_$k"} = $form->{acc_trans}{$key}->[$i-1]->{projectnumber};
660 $form->{taxrate} = $form->{acc_trans}{$key}->[$i - 1]->{rate};
661 $form->{"project_id_$k"} = $form->{acc_trans}{$key}->[$i-1]->{project_id};
664 $form->{"${key}_$i"} = "$form->{acc_trans}{$key}->[$i-1]->{accno}--$form->{acc_trans}{$key}->[$i-1]->{description}";
667 $form->{ARselected} = $form->{acc_trans}{$key}->[$i-1]->{accno};
669 } elsif ($akey eq "amount") {
670 $form->{"${key}_$k"} = $form->{acc_trans}{$key}->[$i-1]->{accno} . "--" . $form->{acc_trans}{$key}->[$i-1]->{id};
671 $form->{"taxchart_$k"} = $form->{acc_trans}{$key}->[$i-1]->{id} . "--" . $form->{acc_trans}{$key}->[$i-1]->{rate};
678 $form->{taxincluded} = $taxincluded if ($form->{id});
679 $form->{paidaccounts} = 1 if not defined $form->{paidaccounts};
681 if ($form->{taxincluded} && $form->{taxrate} && $totalamount) {
683 # add tax to amounts and invtotal
684 for my $i (1 .. $form->{rowcount}) {
685 $taxamount = ($totaltax + $totalwithholding) * $form->{"amount_$i"} / $totalamount;
686 $tax = $form->round_amount($taxamount, 2);
687 $diff += ($taxamount - $tax);
688 $form->{"amount_$i"} += $form->{"tax_$i"};
690 $form->{amount_1} += $form->round_amount($diff, 2);
693 $taxamount = $form->round_amount($taxamount, 2);
694 $form->{tax} = $taxamount;
696 $form->{invtotal} = $totalamount + $totaltax;
698 $main::lxdebug->leave_sub();
702 $main::lxdebug->enter_sub();
704 my ($self, $form, $myconfig, $id) = @_;
706 my ($query, $new_id, $storno_row, $acc_trans_rows);
707 my $dbh = $form->get_standard_dbh($myconfig);
709 $query = qq|SELECT nextval('glid')|;
710 ($new_id) = selectrow_query($form, $dbh, $query);
712 $query = qq|SELECT * FROM ar WHERE id = ?|;
713 $storno_row = selectfirst_hashref_query($form, $dbh, $query, $id);
715 $storno_row->{id} = $new_id;
716 $storno_row->{storno_id} = $id;
717 $storno_row->{storno} = 't';
718 $storno_row->{invnumber} = 'Storno-' . $storno_row->{invnumber};
719 $storno_row->{amount} *= -1;
720 $storno_row->{netamount} *= -1;
721 $storno_row->{paid} = $storno_row->{amount};
723 delete @$storno_row{qw(itime mtime)};
725 $query = sprintf 'INSERT INTO ar (%s) VALUES (%s)', join(', ', keys %$storno_row), join(', ', map '?', values %$storno_row);
726 do_query($form, $dbh, $query, (values %$storno_row));
728 $query = qq|UPDATE ar SET paid = amount + paid, storno = 't' WHERE id = ?|;
729 do_query($form, $dbh, $query, $id);
731 # now copy acc_trans entries
732 $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|;
733 my $rowref = selectall_hashref_query($form, $dbh, $query, $id);
735 # kill all entries containing payments, which are the last 2n rows, of which the last has link =~ /paid/
736 while ($rowref->[-1]{link} =~ /paid/) {
737 splice(@$rowref, -2);
740 for my $row (@$rowref) {
741 delete @$row{qw(itime mtime link acc_trans_id)};
742 $query = sprintf 'INSERT INTO acc_trans (%s) VALUES (%s)', join(', ', keys %$row), join(', ', map '?', values %$row);
743 $row->{trans_id} = $new_id;
744 $row->{amount} *= -1;
745 do_query($form, $dbh, $query, (values %$row));
748 map { IO->set_datepaid(table => 'ar', id => $_, dbh => $dbh) } ($id, $new_id);
752 $main::lxdebug->leave_sub();