[freeside-commits] freeside/httemplate/search/elements search-xls.html, 1.1, 1.2 search.html, 1.44, 1.45

Ivan,,, ivan at wavetail.420.am
Sun May 3 17:22:46 PDT 2009


Update of /home/cvs/cvsroot/freeside/httemplate/search/elements
In directory wavetail.420.am:/tmp/cvs-serv852/search/elements

Modified Files:
	search-xls.html search.html 
Log Message:
add menu item and page for d/ling and edit rates with excel.  RT#5108

Index: search.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/search/elements/search.html,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -d -r1.44 -r1.45
--- search.html	3 May 2009 22:45:40 -0000	1.44
+++ search.html	4 May 2009 00:22:44 -0000	1.45
@@ -148,11 +148,15 @@
     'align'       => 'lrc.',
    
     #listrefs of ( scalars or coderefs )
-    #currently only HTML, maybe eventually Excel too
+    # currently only HTML, maybe eventually Excel too
     'color'       => [],
     'size'        => [],
     'style'       => [], #<B> or <I>, etc.
     'cell_style'  => [], #STYLE= attribute of TR, very HTML-specific...
+
+    # Excel-specific listref of ( hashrefs or coderefs )
+    # each hashref: http://search.cpan.org/dist/Spreadsheet-WriteExcel/lib/Spreadsheet/WriteExcel.pm#Format_methods_and_Format_properties
+    'xls_format' => => [],
     
   );
 
@@ -227,7 +231,7 @@
     #false laziness w/statuspos above
     my $pos = $opt{'agent_pos'};
 
-    foreach my $att (qw( align style color size )) {
+    foreach my $att (qw( align color size style cell_style xls_format )) {
       $opt{$att} ||= [ map '', @{ $opt{'fields'} } ];
     }
 

Index: search-xls.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/search/elements/search-xls.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- search-xls.html	3 May 2009 22:45:40 -0000	1.1
+++ search-xls.html	4 May 2009 00:22:44 -0000	1.2
@@ -25,9 +25,18 @@
 
 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 @@
 
     #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(<A HREF="$a">);
-      #  }
-      #}
+
+      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;
   }
 
 }



More information about the freeside-commits mailing list