X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fsearch%2Felements%2Fsearch-xls.html;h=8a05e477c2964e21eabcb7b3218300122313b952;hp=8a6ad5cac914c3554494ada29f8fdef9964d1151;hb=9f73c5d4c0954b3a03bfcb5e010fc288a7071209;hpb=b9ec1f7c51efb5122b7dc88ccadb34e9e99a3b6f diff --git a/httemplate/search/elements/search-xls.html b/httemplate/search/elements/search-xls.html index 8a6ad5cac..8a05e477c 100644 --- a/httemplate/search/elements/search-xls.html +++ b/httemplate/search/elements/search-xls.html @@ -25,9 +25,18 @@ my $workbook = Spreadsheet::WriteExcel->new($XLS) my $worksheet = $workbook->add_worksheet(substr($opt{'title'},0,31)); +$worksheet->protect(); + my($r,$c) = (0,0); -$worksheet->write($r, $c++, $_) foreach @$header; +my $header_format = $workbook->add_format( + bold => 1, + locked => 1, + bg_color => 55, #22, + bottom => 3, +); + +$worksheet->write($r, $c++, $_, $header_format ) foreach @$header; foreach my $row ( @$rows ) { $r++; @@ -37,39 +46,32 @@ foreach my $row ( @$rows ) { #my $links = $opt{'links'} ? [ @{$opt{'links'}} ] : ''; #my $aligns = $opt{'align'} ? [ @{$opt{'align'}} ] : ''; + #could also translate color, size, style into xls equivalents? + my $formats = $opt{'xls_format'} ? [ @{$opt{'xls_format'}} ] : []; foreach my $field ( @{$opt{'fields'}} ) { - #my $align = $aligns ? shift @$aligns : ''; - #$align = " ALIGN=$align" if $align; - #my $a = ''; - #if ( $links ) { - # my $link = shift @$links; - # $link = &{$link}($row) if ref($link) eq 'CODE'; - # if ( $link ) { - # my( $url, $method ) = @{$link}; - # if ( ref($method) eq 'CODE' ) { - # $a = $url. &{$method}($row); - # } else { - # $a = $url. $row->$method(); - # } - # $a = qq(); - # } - #} + + my $format = shift @$formats; + $format = &{$format}($row) if ref($format) eq 'CODE'; + $format ||= {}; + my $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 } else { - $worksheet->write($r, $c++, $value ); + $worksheet->write($r, $c++, $value, $xls_format ); } } } else { - $worksheet->write($r, $c++, $row->$field() ); + $worksheet->write($r, $c++, $row->$field(), $xls_format ); } } } else { - $worksheet->write($r, $c++, $_) foreach @$row; + my $xls_format = $workbook->add_format(locked=>0); + $worksheet->write($r, $c++, $_, $xls_format ) foreach @$row; } }