X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fsearch%2Felements%2Fsearch-xls.html;h=8334497d2ec00a59973257ed5dedc2e0d4717048;hb=9f17681a11d2e20f5baa7acf19873daf33058aa9;hp=8323f55de924056e6037fd701b8e7432706a3853;hpb=b5c4237a34aef94976bc343c8d9e138664fc3984;p=freeside.git diff --git a/httemplate/search/elements/search-xls.html b/httemplate/search/elements/search-xls.html index 8323f55de..8334497d2 100644 --- a/httemplate/search/elements/search-xls.html +++ b/httemplate/search/elements/search-xls.html @@ -1,4 +1,3 @@ -<% $data %> <%init> my %args = @_; @@ -7,14 +6,22 @@ my $header = $args{'header'}; my $rows = $args{'rows'}; my %opt = %{ $args{'opt'} }; +my $style = $opt{'style'}; + +my $override = scalar(@$rows) >= 65536 ? 'XLSX' : ''; + +my $format = $FS::CurrentUser::CurrentUser->spreadsheet_format($override); + +my $filename = $opt{'name'} || PL($opt{'name_singular'}); +$filename .= $format->{extension}; + #http_header('Content-Type' => 'application/excel' ); #eww #http_header('Content-Type' => 'application/msexcel' ); #alas #http_header('Content-Type' => 'application/x-msexcel' ); #? #http://support.microsoft.com/kb/199841 -http_header('Content-Type' => 'application/vnd.ms-excel' ); -http_header('Content-Disposition' => - 'attachment;filename="'.($opt{'name'} || PL($opt{'name_singular'}) ).'.xls"'); +http_header('Content-Type' => $format->{mime_type} ); +http_header('Content-Disposition' => qq!attachment;filename="$filename"! ); #http://support.microsoft.com/kb/812935 #http://support.microsoft.com/kb/323308 @@ -22,10 +29,13 @@ $HTML::Mason::Commands::r->headers_out->{'Cache-control'} = 'max-age=0'; my $data = ''; my $XLS = new IO::Scalar \$data; -my $workbook = Spreadsheet::WriteExcel->new($XLS) - or die "Error opening .xls file: $!"; +my $workbook = $format->{class}->new($XLS) + or die "Error opening Excel file: $!"; -my $worksheet = $workbook->add_worksheet(substr($opt{'title'},0,31)); +my $title = $opt{'title'}; +$title =~ s/[\[\]\:\*\?\/\/]//g; +$title = substr($title, 0, 31); +my $worksheet = $workbook->add_worksheet($title); $worksheet->protect(); @@ -37,8 +47,75 @@ my $header_format = $workbook->add_format( bg_color => 55, #22, bottom => 3, ); +my $footer_format = $workbook->add_format( + italic => 1, + locked => 1, + bg_color => 55, + top => 3, +); +my $default_format = $workbook->add_format(locked => 0); + +my %money_format; +my $money_char = FS::Conf->new->config('money_char') || '$'; -$worksheet->write($r, $c++, $_, $header_format ) foreach @$header; +my %date_format; +xl_parse_date_init(); + +my %bold_format; + +my $writer = sub { + # Wrapper for $worksheet->write. + # Do any massaging of the value/format here. + my ($r, $c, $value, $format) = @_; + #warn "writer called with format $format\n"; + + if ( $style->[$c] eq 'b' or $value =~ //i ) { # the only one in common use + $value =~ s[][]ig; + if ( !exists($bold_format{$format}) ) { + $bold_format{$format} = $workbook->add_format(); + $bold_format{$format}->copy($format); + $bold_format{$format}->set_bold(); + } + $format = $bold_format{$format}; + } + + # convert HTML entities + # both Spreadsheet::WriteExcel and Excel::Writer::XLSX accept UTF-8 strings + $value = decode_entities($value); + + if ( $value =~ /^\Q$money_char\E(-?\d+\.?\d*)$/ ) { + # Currency: strip the symbol, clone the requested format, + # and format it for currency + $value = $1; +# warn "formatting $value as money\n"; + if ( !exists($money_format{$format}) ) { + $money_format{$format} = $workbook->add_format(); + $money_format{$format}->copy($format); + $money_format{$format}->set_num_format($money_char.'#0.00#'); + } + $format = $money_format{$format}; + } + elsif ( $value =~ /^([A-Z][a-z]{2}) (\d{2}) (\d{4})$/ ) { + # Date: convert the value to an Excel date number and set + # the format + $value = xl_parse_date($value); +# warn "formatting $value as date\n"; + if ( !exists($date_format{$format}) ) { + $date_format{$format} = $workbook->add_format(); + $date_format{$format}->copy($format); + $date_format{$format}->set_num_format('mmm dd yyyy'); + } + $format = $date_format{$format}; + } + else { + # String: replace line breaks with newlines + $value =~ s/
/\n/gi; + } + #warn "writing with format $format\n"; + $worksheet->write($r, $c, $value, $format); +}; + +$writer->( $r, $c++, $_, $header_format ) foreach @$header; foreach my $row ( @$rows ) { $r++; @@ -53,33 +130,49 @@ foreach my $row ( @$rows ) { foreach my $field ( @{$opt{'fields'}} ) { - my $format = shift @$formats; - $format = &{$format}($row) if ref($format) eq 'CODE'; - $format ||= {}; - my $xls_format = $workbook->add_format(locked=>0, %$format); + my $xls_format = $default_format; + + if ( my $format = shift @$formats ) { + $format = &{$format}($row) if ref($format) eq 'CODE'; + $format ||= {}; + $xls_format = $workbook->add_format(locked=>0, %$format); + } if ( ref($field) eq 'CODE' ) { foreach my $value ( &{$field}($row) ) { if ( ref($value) eq 'ARRAY' ) { - $worksheet->write($r, $c++, '(N/A)' ); #unimplemented + $writer->($r, $c++, '(N/A)' ); #unimplemented } else { - $worksheet->write($r, $c++, $value, $xls_format ); + $writer->($r, $c++, $value, $xls_format ); } } } else { - $worksheet->write($r, $c++, $row->$field(), $xls_format ); + $writer->( $r, $c++, $row->$field(), $xls_format ); } } } else { - my $xls_format = $workbook->add_format(locked=>0); - $worksheet->write($r, $c++, $_, $xls_format ) foreach @$row; + # no need for each row to need a new format + #my $xls_format = $workbook->add_format(locked=>0); + $writer->( $r, $c++, $_, $default_format ) foreach @$row; } } +if ( $opt{'footer'} ) { + $r++; + $c = 0; + foreach my $item (@{ $opt{'footer'} }) { + if ( ref($item) eq 'CODE' ) { + $item = &{$item}(); + } + $writer->( $r, $c++, $item, $footer_format ); + } +} + $workbook->close();# or die "Error creating .xls file: $!"; http_header('Content-Length' => length($data) ); +$m->print($data);