From 456a81dd3b5ccd8b4a48ea166d465ca2b9fb5b6b Mon Sep 17 00:00:00 2001 From: Philip Reetz Date: Wed, 28 Dec 2005 13:07:47 +0000 Subject: [PATCH] Splittbuchungen fuer Debitorenbuchungen --- SL/AR.pm | 93 +++++++++++++-------- SL/Form.pm | 7 +- bin/mozilla/ar.pl | 203 +++++++++++++++++++++++++++------------------- 3 files changed, 184 insertions(+), 119 deletions(-) diff --git a/SL/AR.pm b/SL/AR.pm index c059f2a76..75dc0264b 100644 --- a/SL/AR.pm +++ b/SL/AR.pm @@ -34,6 +34,8 @@ package AR; +use Data::Dumper; + sub post_transaction { $main::lxdebug->enter_sub(); @@ -52,13 +54,18 @@ sub post_transaction { $form->check_exchangerate($myconfig, $form->{currency}, $form->{transdate}, 'buy'); } + for $i (1 .. $form->{rowcount}) { + $form->{AR_amounts}{"amount_$i"} = (split(/--/, $form->{"AR_amount_$i"}))[0]; + } + ($form->{AR_amounts}{receivables}) = split(/--/, $form->{ARselected}); + ($form->{AR}{receivables}) = split(/--/, $form->{ARselected}); $form->{exchangerate} = ($exchangerate) ? $exchangerate : $form->parse_amount($myconfig, $form->{exchangerate}); - for $i (1 .. 1) { + for $i (1 .. $form->{rowcount}) { $form->{"amount_$i"} = $form->round_amount($form->parse_amount($myconfig, $form->{"amount_$i"}) @@ -77,17 +84,32 @@ sub post_transaction { # taxincluded doesn't make sense if there is no amount $form->{taxincluded} = 0 if ($form->{amount} == 0); + for $i (1 .. $form->{rowcount}) { + ($form->{"taxkey_$i"}, $NULL) = split /--/, $form->{"taxchart_$i"}; - $query = - qq| SELECT c.accno, t.rate FROM chart c, tax t where c.id=t.chart_id AND t.taxkey=$form->{taxkey}|; - $sth = $dbh->prepare($query); - $sth->execute || $form->dberror($query); - ($form->{AR}{tax}, $form->{taxrate}) = $sth->fetchrow_array; - $sth->finish; + $query = + qq| SELECT c.accno, t.rate FROM chart c, tax t where c.id=t.chart_id AND t.taxkey=$form->{"taxkey_$i"}|; + $sth = $dbh->prepare($query); + $sth->execute || $form->dberror($query); + ($form->{AR_amounts}{"tax_$i"}, $form->{"taxrate_$i"}) = $sth->fetchrow_array; + $form->{AR_amounts}{"tax_$i"}{taxkey} = $form->{"taxkey_$i"}; + $form->{AR_amounts}{"amount_$i"}{taxkey} = $form->{"taxkey_$i"}; - $form->{tax} = $form->{amount_1} * $form->{taxrate}; - $form->{tax} = $form->round_amount($form->{tax} * $form->{exchangerate}, 2); - $form->{total_tax} += $form->{tax}; + $sth->finish; + if (!$form->{"korrektur_$i"}) { + if ($form->{taxincluded} *= 1) { + $tax = $form->{"amount_$i"} - ($form->{"amount_$i"} / ($form->{"taxrate_$i"} + 1)); + $amount = $form->{"amount_$i"} - $tax; + $form->{"amount_$i"} = $form->round_amount($amount, 2); + $diff += $amount - $form->{"amount_$i"}; + $form->{"tax_$i"} = $form->round_amount($tax, 2); + $form->{netamount} += $form->{"amount_$i"}; + } + $form->{"tax_$i"} = $form->{"amount_$i"} * $form->{"taxrate_$i"}; + $form->{"tax_$i"} = $form->round_amount($form->{"tax_$i"} * $form->{exchangerate}, 2); + } + $form->{total_tax} += $form->{"tax_$i"}; + } # adjust paidaccounts if there is no date in the last row $form->{paidaccounts}-- unless ($form->{"datepaid_$form->{paidaccounts}"}); @@ -104,23 +126,6 @@ sub post_transaction { } - if ($form->{taxincluded} *= 1) { - for $i (1 .. 1) { - $tax = - $form->{"amount_$i"} - ($form->{"amount_$i"} / ($form->{taxrate} + 1)); - $amount = $form->{"amount_$i"} - $tax; - $form->{"amount_$i"} = $form->round_amount($amount, 2); - $diff += $amount - $form->{"amount_$i"}; - $form->{tax} = $form->round_amount($tax, 2); - $form->{total_tax} = $form->{tax}; - } - - # deduct difference from amount_1 - # $form->{amount_1} += $form->round_amount($diff, 2); - $form->{netamount} = $form->{amount_1}; - - } - $form->{amount} = $form->{netamount} + $form->{total_tax}; $form->{paid} = $form->round_amount($form->{paid} * $form->{exchangerate}, 2); @@ -199,24 +204,44 @@ sub post_transaction { } # add individual transactions for AR, amount and taxes - foreach my $item (keys %{ $form->{AR} }) { - if ($form->{$item} != 0) { + for $i (1 .. $form->{rowcount}) { + if ($form->{"amount_$i"} != 0) { $project_id = 'NULL'; - if ($item =~ /amount_/) { - if ($form->{"project_id_$'"} && $form->{"projectnumber_$'"}) { - $project_id = $form->{"project_id_$'"}; + if ("amount_$i" =~ /amount_/) { + if ($form->{"project_id_$i"} && $form->{"projectnumber_$i"}) { + $project_id = $form->{"project_id_$i"}; } } + if ("amount_$i" =~ /amount/) { + $taxkey = $form->{AR_amounts}{"amount_$i"}{taxkey}; + } # insert detail records in acc_trans $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, project_id, taxkey) VALUES ($form->{id}, (SELECT c.id FROM chart c - WHERE c.accno = '$form->{AR}{$item}'), - $form->{$item}, '$form->{transdate}', $project_id, '$form->{taxkey}')|; + WHERE c.accno = '$form->{AR_amounts}{"amount_$i"}'), + $form->{"amount_$i"}, '$form->{transdate}', $project_id, '$taxkey')|; $dbh->do($query) || $form->dberror($query); + if ($form->{"tax_$i"} !=0) { + # insert detail records in acc_trans + $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, + project_id, taxkey) + VALUES ($form->{id}, (SELECT c.id FROM chart c + WHERE c.accno = '$form->{AR_amounts}{"tax_$i"}'), + $form->{"tax_$i"}, '$form->{transdate}', $project_id, '$taxkey')|; + $dbh->do($query) || $form->dberror($query); + } } } + # add recievables + $query = qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, + project_id) + VALUES ($form->{id}, (SELECT c.id FROM chart c + WHERE c.accno = '$form->{AR_amounts}{receivables}'), + $form->{receivables}, '$form->{transdate}', $project_id)|; + $dbh->do($query) || $form->dberror($query); + # add paid transactions for my $i (1 .. $form->{paidaccounts}) { diff --git a/SL/Form.pm b/SL/Form.pm index 5fbed0d75..f6e3bf253 100644 --- a/SL/Form.pm +++ b/SL/Form.pm @@ -1703,7 +1703,7 @@ sub create_links { LEFT Join tax t ON (a.taxkey = t.taxkey) WHERE a.trans_id = $self->{id} AND a.fx_transaction = '0' - ORDER BY a.transdate|; + ORDER BY a.oid,a.transdate|; $sth = $dbh->prepare($query); $sth->execute || $self->dberror($query); @@ -1713,12 +1713,17 @@ sub create_links { $self->{exchangerate} = $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld); + my $index=0; # store amounts in {acc_trans}{$key} for multiple accounts while (my $ref = $sth->fetchrow_hashref(NAME_lc)) { $ref->{exchangerate} = $self->get_exchangerate($dbh, $self->{currency}, $ref->{transdate}, $fld); + if ( !($xkeyref{ $ref->{accno} } =~ /tax/)) { + $index++; + } + $ref->{index} = $index; push @{ $self->{acc_trans}{ $xkeyref{ $ref->{accno} } } }, $ref; } diff --git a/bin/mozilla/ar.pl b/bin/mozilla/ar.pl index 9d3f11717..eaa0f2224 100644 --- a/bin/mozilla/ar.pl +++ b/bin/mozilla/ar.pl @@ -34,6 +34,7 @@ use SL::AR; use SL::IS; use SL::PE; +use Data::Dumper; require "$form->{path}/arap.pl"; @@ -115,7 +116,7 @@ sub create_links { $form->{duedate} = $duedate if $duedate; $form->{oldcustomer} = "$form->{customer}--$form->{customer_id}"; - + $form->{rowcount} = 1; # currencies @curr = split /:/, $form->{currencies}; chomp $curr[0]; @@ -179,7 +180,9 @@ sub create_links { $form->{$key} = $form->{"select$key"}; # if there is a value we have an old entry - $j = 0; + my $j = 0; + my $k = 0; + print(STDERR Dumper($form->{acc_trans})); for $i (1 .. scalar @{ $form->{acc_trans}{$key} }) { if ($key eq "AR_paid") { $j++; @@ -220,10 +223,15 @@ sub create_links { $form->{"${akey}_$form->{acc_trans}{$key}->[$i-1]->{accno}"}; $withholdingrate += $form->{"$form->{acc_trans}{$key}->[$i-1]->{accno}_rate"}; - } + } + print(STDERR $form->{acc_trans}{$key}->[$i - 1]->{amount}, " ACC_TRANS\n"); + print(STDERR "$key KEY, $k Zeile\n"); + $index = $form->{acc_trans}{$key}->[$i - 1]->{index}; + $form->{"tax_$index"} = $form->{acc_trans}{$key}->[$i - 1]->{amount}; } else { - $form->{"${akey}_$i"} = + $k++; + $form->{"${akey}_$k"} = $form->round_amount( $form->{acc_trans}{$key}->[$i - 1]->{amount} / $exchangerate, 2); @@ -231,24 +239,25 @@ sub create_links { $form->{rowcount}++; $totalamount += $form->{"${akey}_$i"}; - $form->{"oldprojectnumber_$i"} = $form->{"projectnumber_$i"} = + $form->{"oldprojectnumber_$k"} = $form->{"projectnumber_$k"} = "$form->{acc_trans}{$key}->[$i-1]->{projectnumber}"; $form->{taxrate} = $form->{acc_trans}{$key}->[$i - 1]->{rate}; - $form->{"project_id_$i"} = + $form->{"project_id_$k"} = "$form->{acc_trans}{$key}->[$i-1]->{project_id}"; } - $form->{"${key}_$i"} = + $form->{"${key}_$k"} = "$form->{acc_trans}{$key}->[$i-1]->{accno}--$form->{acc_trans}{$key}->[$i-1]->{description}"; $form->{"${key}_$i"} = "$form->{acc_trans}{$key}->[$i-1]->{accno}--$form->{acc_trans}{$key}->[$i-1]->{description}"; $form->{"select${key}"} =~ - /(