excel number format fix, #17971
authorMark Wells <mark@freeside.biz>
Fri, 6 Jul 2012 20:00:17 +0000 (13:00 -0700)
committerMark Wells <mark@freeside.biz>
Fri, 6 Jul 2012 20:00:17 +0000 (13:00 -0700)
httemplate/search/cust_bill_pkg_referral.html
httemplate/search/elements/search-xls.html

index f17cea3..1bb6b91 100644 (file)
@@ -190,7 +190,7 @@ my @orwhere;
 push @orwhere, "(cust_bill_pkg.setup > 0)" if $setup;
 push @orwhere, "($recur_sql > 0)"          if $recur;
 push @orwhere, "($usage_sql > 0)"          if $usage;
-push @where, join(' OR ', @orwhere);
+push @where, '('.join(' OR ', @orwhere).')' if @orwhere;
 
 $join_cust =  '        JOIN cust_bill     USING ( invnum )
                   LEFT JOIN cust_main     USING ( custnum )
index 6a19cf2..a3a8226 100644 (file)
@@ -49,7 +49,7 @@ 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*)$/ ) {
+  if ( $value =~ /^\Q$money_char\E(-?\d+\.?\d*)$/ ) {
     # Currency: strip the symbol, clone the requested format,
     # and format it for currency
     $value = $1;