X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FRP.pm;h=016e268ec50498c5d677e530ca0760bcfed97840;hb=8ded2eedc25dbec2e489f81f6355fc5f0998f46d;hp=452f1164d66ee44375a071cb05824849c79ccb42;hpb=3231d8fdbc4d2f756fb631e5768ca4a992150157;p=kivitendo-erp.git diff --git a/SL/RP.pm b/SL/RP.pm index 452f1164d..016e268ec 100644 --- a/SL/RP.pm +++ b/SL/RP.pm @@ -1646,6 +1646,15 @@ sub bwa { &get_accounts_g($dbh, $last_period, $kummfromdate, $kummtodate, $form, "pos_bwa"); } + my %charts_by_category = + partition_by { $_->{pos_bwa} } + sort_by { $_->{accno} } + map { $form->{charts}->{$_} } + keys %{ $form->{charts} }; + $form->{"charts_by_category"} = \%charts_by_category; + + $form->{category_names} = AM->get_bwa_categories($myconfig, $form); + my @periods = qw(jetzt kumm); my @gesamtleistung = qw(1 3); my @gesamtkosten = qw (10 11 12 13 14 15 16 17 18 20); @@ -1893,6 +1902,7 @@ sub erfolgsrechnung { my %categories = (I => "ERTRAG", E => "AUFWAND"); my $fromdate = conv_dateq($form->{fromdate}); my $todate = conv_dateq($form->{todate}); + my $department_id = conv_i((split /--/, $form->{department})[1], 'NULL'); $form->{total} = 0; @@ -1900,18 +1910,18 @@ sub erfolgsrechnung { my %category = ( name => $categories{$category}, total => 0, - accounts => get_accounts_ch($category), + accounts => get_accounts_ch($category) ); foreach my $account (@{$category{accounts}}) { - $account->{total} += get_total_ch($account->{id}, $fromdate, $todate); + $account->{total} = get_total_ch($department_id, $account->{id}, $fromdate, $todate); $category{total} += $account->{total}; - $account->{total} = $form->format_amount($myconfig, $form->parse_amount($myconfig, $account->{total}), 2); + $account->{total} = $form->format_amount($myconfig, $form->round_amount($account->{total}, 2), 2); } $form->{total} += $category{total}; - $category{total} = $form->format_amount($myconfig, $form->parse_amount($myconfig, $category{total}), 2); + $category{total} = $form->format_amount($myconfig, $form->round_amount($category{total}, 2), 2); push(@{$form->{categories}}, \%category); } - $form->{total} = $form->format_amount($myconfig, $form->parse_amount($myconfig, $form->{total}), 2); + $form->{total} = $form->format_amount($myconfig, $form->round_amount($form->{total}, 2), 2); $main::lxdebug->leave_sub(); return {}; @@ -1921,7 +1931,7 @@ sub get_accounts_ch { $main::lxdebug->enter_sub(); my ($category) = @_; - my ($inclusion); + my $inclusion = '' ; if ($category eq 'I') { $inclusion = "AND pos_er = NULL OR pos_er = '1'"; @@ -1946,7 +1956,7 @@ sub get_accounts_ch { sub get_total_ch { $main::lxdebug->enter_sub(); - my ($chart_id, $fromdate, $todate) = @_; + my ($department_id, $chart_id, $fromdate, $todate) = @_; my $total = 0; my $query = qq| SELECT SUM(amount) @@ -1955,7 +1965,16 @@ sub get_total_ch { AND transdate >= ? AND transdate <= ? |; - $total += _query($query, $chart_id, $fromdate, $todate)->[0]->{sum}; + if ($department_id) { + $query .= qq| AND COALESCE( + (SELECT department_id FROM ar WHERE ar.id=trans_id), + (SELECT department_id FROM gl WHERE gl.id=trans_id), + (SELECT department_id FROM ap WHERE ap.id=trans_id) + ) = ? |; + $total += _query($query, $chart_id, $fromdate, $todate, $department_id)->[0]->{sum}; + } else { + $total += _query($query, $chart_id, $fromdate, $todate)->[0]->{sum}; + } $main::lxdebug->leave_sub(); return $total;