X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FController%2FYearEndTransactions.pm;h=a81fa3bbc968b0738b2728dd854bda6d59462f47;hb=f2b3e089d77206252a24be4f565c608d28f88c12;hp=4a9f06c4793f9cb344c31af55ac231d1db9f1f1a;hpb=cb0414d6fc74555cf85cc74152c5d7c2cb0168e2;p=kivitendo-erp.git diff --git a/SL/Controller/YearEndTransactions.pm b/SL/Controller/YearEndTransactions.pm index 4a9f06c47..a81fa3bbc 100644 --- a/SL/Controller/YearEndTransactions.pm +++ b/SL/Controller/YearEndTransactions.pm @@ -15,6 +15,8 @@ use SL::DB::GLTransaction; use SL::DB::AccTransaction; use SL::DB::Helper::AccountingPeriod qw(get_balance_starting_date); +use SL::Presenter::Tag qw(checkbox_tag); + use Rose::Object::MakeMethods::Generic ( 'scalar --get_set_init' => [ qw(charts charts9000 cbob_chart cb_date cb_startdate ob_date cb_reference ob_reference cb_description ob_description) ], ); @@ -56,7 +58,7 @@ sub action_list { ); $self->setup_list_action_bar; - $report->generate_with_headers(action_bar => 1); + $report->generate_with_headers(); $main::lxdebug->leave_sub(); } @@ -110,7 +112,7 @@ sub prepare_report { my $idx = 1; my %column_defs = ( - 'ids' => { raw_header_data => $self->presenter->checkbox_tag("", id => "check_all", + 'ids' => { raw_header_data => checkbox_tag("", id => "check_all", checkall => "[data-checkall=1]"), 'align' => 'center' }, 'chart' => { text => $::locale->text('Account'), }, 'description' => { text => $::locale->text('Description'), }, @@ -152,7 +154,7 @@ sub prepare_report { my $chart_id = $chart->id; my $row = { map { $_ => { 'data' => '' } } @columns }; $row->{ids} = { - 'raw_data' => $self->presenter->checkbox_tag("multi_id_${idx}", value => $chart_id, "data-checkall" => 1), + 'raw_data' => checkbox_tag("multi_id_${idx}", value => $chart_id, "data-checkall" => 1), 'valign' => 'center', 'align' => 'center', };