X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FCA.pm;h=e24be69c3c68d7964459deb8c5f542933c3359c8;hb=1c10936df76a1740bf9c45445b007494495e4c5f;hp=c200b664eafa3223d88e46077fc4dec498080bcd;hpb=a434f98f4deea7656dafb52939430b29ab4f29b4;p=kivitendo-erp.git diff --git a/SL/CA.pm b/SL/CA.pm index c200b664e..e24be69c3 100644 --- a/SL/CA.pm +++ b/SL/CA.pm @@ -84,7 +84,7 @@ sub all_accounts { $amount{ $ref->{accno} } = $ref->{amount}; } - my $where = "AND c.id = $chart_id" if ($chart_id ne ''); + my $where = $chart_id ne '' ? "AND c.id = $chart_id" : ''; $query = qq{ SELECT @@ -113,7 +113,7 @@ sub all_accounts { LEFT JOIN tax tx ON (tk.tax_id = tx.id) WHERE 1=1 $where - GROUP BY c.accno, c.id, c.description, c.charttype, c.gifi_accno, + GROUP BY c.accno, c.id, c.description, c.charttype, c.category, c.link, c.pos_bwa, c.pos_bilanz, c.pos_eur, c.valid_from, c.datevautomatik ORDER BY c.accno @@ -203,22 +203,6 @@ sub all_transactions { $project = qq| AND ac.project_id = ? |; @project_values = (conv_i($form->{project_id})); } - my $acc_cash_where = ""; - my $ar_cash_where = ""; - my $ap_cash_where = ""; - - - if ($form->{method} eq "cash") { - $where = qq| (ac.trans_id IN (SELECT id FROM ar WHERE datepaid>= ? AND datepaid<= ? UNION SELECT id FROM ap WHERE datepaid>= ? AND datepaid<= ? UNION SELECT id FROM gl WHERE transdate>= ? AND transdate<= ?)) |; - @where_values = (); - push(@where_values, conv_date($form->{fromdate})); - push(@where_values, conv_date($form->{todate})); - push(@where_values, conv_date($form->{fromdate})); - push(@where_values, conv_date($form->{todate})); - push(@where_values, conv_date($form->{fromdate})); - push(@where_values, conv_date($form->{todate})); - } - if ($form->{accno}) {