X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/4249ea44f0c6772c019a6d3fbfcd5fe879556ef6..refs/heads/swiss:/SL/RP.pm diff --git a/SL/RP.pm b/SL/RP.pm index b2fd5e069..dd006e22d 100644 --- a/SL/RP.pm +++ b/SL/RP.pm @@ -1871,4 +1871,93 @@ sub income_statement { } $main::lxdebug->leave_sub(); } + +sub erfolgsrechnung { + $main::lxdebug->enter_sub(); + + my ($self, $myconfig, $form) = @_; + ($form->{company}, $form->{adress}) = get_defaults_ch(); + + # wrong user inputs should be handled during users input + # e.g. spaces, tabs, wrong format or wrong dates + $form->{fromdate} = "01.01.2000" if ! $form->{fromdate}; + $form->{todate} = $form->current_date(%{$myconfig}) if ! $form->{todate}; + + my %categories = (I => "ERTRAG", E => "AUFWAND"); + my $fromdate = conv_dateq($form->{fromdate}); + my $todate = conv_dateq($form->{todate}); + + $form->{total} = 0; + foreach my $category (keys %categories) { + my %category = ( + name => $categories{$category}, + total => 0, + accounts => get_accounts_ch($category), + ); + foreach my $account (@{$category{accounts}}) { + $account->{total} += ($account->{category} eq $category ? 1 : -1) * get_total_ch($account->{id}, $fromdate, $todate); + $category{total} += $account->{total}; + $account->{total} = $form->format_amount($myconfig, $form->parse_amount($myconfig, $account->{total}), 2); + } + $form->{total} += $category{total}; + $category{total} = $form->format_amount($myconfig, $form->parse_amount($myconfig, $category{total}), 2); + push(@{$form->{categories}}, \%category); + } + $form->{total} = $form->format_amount($myconfig, $form->parse_amount($myconfig, $form->{total}), 2); + + $main::lxdebug->leave_sub(); + return {}; +} + +sub get_defaults_ch { + $main::lxdebug->enter_sub(); + + my $query = q|SELECT company, address FROM defaults|; + my $row = @{_query($query)}[0]; + my ($company, $adress) = ($row->{company}, $row->{address}); + + $main::lxdebug->leave_sub(); + return ($company, $adress); +} + +sub get_accounts_ch { + $main::lxdebug->enter_sub(); + + my ($category) = @_; + my ($query, $inclusion); + if ($category eq 'I') {$inclusion = "AND pos_eur = NULL OR pos_eur > '0' AND pos_eur <= '5'";} + elsif ($category eq 'E') {$inclusion = "AND pos_eur = NUll OR pos_eur >= '6' AND pos_eur < '100'";} + else {$inclusion = "";} + $query = qq| + SELECT id, accno, description, category + FROM chart + WHERE category = '$category' $inclusion + ORDER BY accno + |; + my $accounts = _query($query); + + $main::lxdebug->leave_sub(); + return $accounts; +} + +sub get_total_ch { + $main::lxdebug->enter_sub(); + + my ($chart_id, $fromdate, $todate) = @_; + my $total = 0; + my $query = qq| + SELECT amount + FROM acc_trans + WHERE chart_id = '$chart_id' + AND transdate >= $fromdate + AND transdate <= $todate + |; + $total += $_->{amount} foreach (_query($query)); + + $main::lxdebug->leave_sub(); + return $total; +} + +sub _query {return selectall_hashref_query($::form, $::form->get_standard_dbh, $_[0]);} + 1;