diff options
author | jeff <jeff> | 2008-02-13 23:42:00 +0000 |
---|---|---|
committer | jeff <jeff> | 2008-02-13 23:42:00 +0000 |
commit | 117b59b69ddc3dab173ec531762686d8c49ad08f (patch) | |
tree | ae9a025f28e015726c21fe2740301135464b0439 /httemplate/edit/rate_region.cgi | |
parent | dae4a46355c29df7518f95e7f2312eea50bac8f9 (diff) |
directory assistance (flat per-call) billing RT#3114
Diffstat (limited to 'httemplate/edit/rate_region.cgi')
-rw-r--r-- | httemplate/edit/rate_region.cgi | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/httemplate/edit/rate_region.cgi b/httemplate/edit/rate_region.cgi index 9dfcb3740..04f285f37 100644 --- a/httemplate/edit/rate_region.cgi +++ b/httemplate/edit/rate_region.cgi @@ -49,10 +49,10 @@ Rate plan </TH> <TH CLASS="grid" BGCOLOR="#cccccc"> - <FONT SIZE=-1>Included<BR>minutes</FONT> + <FONT SIZE=-1>Included<BR>minutes/calls</FONT> </TH> <TH CLASS="grid" BGCOLOR="#cccccc"> - <FONT SIZE=-1>Charge per<BR>minute</FONT> + <FONT SIZE=-1>Charge per<BR>minute/call</FONT> </TH> <TH CLASS="grid" BGCOLOR="#cccccc"> <FONT SIZE=-1>Granularity</FONT> @@ -81,11 +81,11 @@ </TD> <TD CLASS="grid" BGCOLOR="<% $bgcolor %>"> - <INPUT TYPE="text" SIZE=5 NAME="min_included<%$n%>" VALUE="<% $cgi->param("min_included$n") || $rate_detail->min_included |h %>"> + <INPUT TYPE="text" SIZE=9 NAME="min_included<%$n%>" VALUE="<% $cgi->param("min_included$n") || $rate_detail->min_included |h %>"> </TD> <TD CLASS="grid" BGCOLOR="<% $bgcolor %>"> - $<INPUT TYPE="text" SIZE=4 NAME="min_charge<%$n%>" VALUE="<% sprintf('%.2f', $cgi->param("min_charge$n") || $rate_detail->min_charge ) %>"> + $<INPUT TYPE="text" SIZE=6 NAME="min_charge<%$n%>" VALUE="<% sprintf('%.2f', $cgi->param("min_charge$n") || $rate_detail->min_charge ) %>"> </TD> <TD CLASS="grid" BGCOLOR="<% $bgcolor %>"> @@ -137,6 +137,7 @@ tie my %granularity, 'Tie::IxHash', '6' => '6 second', '30' => '30 second', # '1/2 minute', '60' => 'minute', + '0' => 'call', ; my @rate_prefix = $rate_region->rate_prefix; |