diff options
| author | Mark Wells <mark@freeside.biz> | 2014-05-15 19:16:43 -0700 |
|---|---|---|
| committer | Mark Wells <mark@freeside.biz> | 2014-05-15 19:16:43 -0700 |
| commit | 726ceca7c0810b7f9c1e888a7880fd1dfb749c2e (patch) | |
| tree | b657d1a4c81d3f7c30e7c0e4d84bdb030dd64669 /httemplate | |
| parent | cd5882bb376d0e46f97d760072311b912f921e26 (diff) | |
allow non-integer minutes in CDR usage pools, #5738, see also #28308
Diffstat (limited to 'httemplate')
| -rw-r--r-- | httemplate/view/cust_main/packages/package.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/view/cust_main/packages/package.html b/httemplate/view/cust_main/packages/package.html index d83bab4b4..9f6169c1e 100644 --- a/httemplate/view/cust_main/packages/package.html +++ b/httemplate/view/cust_main/packages/package.html @@ -277,7 +277,7 @@ % $trstyle = ' CLASS="shared"' if $part->shared; <TR<%$trstyle%>> <TD ALIGN="right"><% $part->description %>: </TD> - <TD <%$color%> ALIGN="right"><% $usage->minutes %></TD> + <TD <%$color%> ALIGN="right"><% sprintf('%.1f', $usage->minutes) %></TD> <TD <%$color%>> / </TD> <TD <%$color%>><% $part->minutes %></TD> % if ( $part->shared ) { |
