summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormark <mark>2011-11-23 22:15:50 +0000
committermark <mark>2011-11-23 22:15:50 +0000
commit8e1192a5bdcc2b1f8e2d4b8bb0b0e7d9b4cbca3b (patch)
tree7396a13d749f84bbaca9ab006892e9f4c3d8d238
parentd838063ab25f047e88c3e5ae16f77fc4f3481ce9 (diff)
Excel currency format, #1313
-rw-r--r--httemplate/search/elements/search-xls.html46
1 files changed, 36 insertions, 10 deletions
diff --git a/httemplate/search/elements/search-xls.html b/httemplate/search/elements/search-xls.html
index 8323f55de..0b5636c0e 100644
--- a/httemplate/search/elements/search-xls.html
+++ b/httemplate/search/elements/search-xls.html
@@ -37,8 +37,30 @@ my $header_format = $workbook->add_format(
bg_color => 55, #22,
bottom => 3,
);
+my $default_format = $workbook->add_format(locked => 0);
+
+my %money_format;
+my $money_char = FS::Conf->new->config('money_char') || '$';
+
+my $writer = sub {
+ # Wrapper for $worksheet->write.
+ # Do any massaging of the value/format here.
+ my ($r, $c, $value, $format) = @_;
+ if ( $value =~ /^\Q$money_char\E(\d+\.?\d*)$/ ) {
+ # Currency: strip the symbol, clone the requested format,
+ # and format it for currency
+ $value = $1;
+ 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};
+ }
+ $worksheet->write($r, $c, $value, $format);
+};
-$worksheet->write($r, $c++, $_, $header_format ) foreach @$header;
+$writer->( $r, $c++, $_, $header_format ) foreach @$header;
foreach my $row ( @$rows ) {
$r++;
@@ -53,27 +75,31 @@ 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;
}
}