X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/09c8c053181f182143beff935d011af15afddb01..bc0e2edad8e8f94f85f2a59ceb784b8eb0cda97c:/bin/mozilla/rp.pl?ds=inline diff --git a/bin/mozilla/rp.pl b/bin/mozilla/rp.pl index b612a0c8d..c1b3c63de 100644 --- a/bin/mozilla/rp.pl +++ b/bin/mozilla/rp.pl @@ -44,6 +44,7 @@ use SL::DB::Customer; use SL::RP; use SL::Iconv; use SL::Locale::String qw(t8); +use SL::Presenter::Tag; use SL::ReportGenerator; use Data::Dumper; use List::MoreUtils qw(any); @@ -1008,7 +1009,7 @@ sub aging { my @columns = qw(statement ct invnumber transdate duedate amount open); my %column_defs = ( - 'statement' => { raw_header_data => $::request->presenter->checkbox_tag("checkall", checkall => '[name^=statement_]'), 'visible' => $form->{ct} eq 'customer' ? 'HTML' : 0, align => "center" }, + 'statement' => { raw_header_data => SL::Presenter::Tag::checkbox_tag("checkall", checkall => '[name^=statement_]'), 'visible' => $form->{ct} eq 'customer' ? 'HTML' : 0, align => "center" }, 'ct' => { 'text' => $form->{ct} eq 'customer' ? $locale->text('Customer') : $locale->text('Vendor'), }, 'invnumber' => { 'text' => $locale->text('Invoice'), }, 'transdate' => { 'text' => $locale->text('Date'), },