X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fedit%2Frate_region.cgi;h=f77c0dbe770b403d385627fa025f866657be140f;hp=04f285f3709774d53a3afb9a80099f3b423a44e7;hb=bf4223e554e0eb72f45f82392442780e8af4e0f9;hpb=c648976f0b7975f2328ebd7ba8c711fad0ca4195 diff --git a/httemplate/edit/rate_region.cgi b/httemplate/edit/rate_region.cgi index 04f285f37..f77c0dbe7 100644 --- a/httemplate/edit/rate_region.cgi +++ b/httemplate/edit/rate_region.cgi @@ -29,7 +29,7 @@
(comma-separated) - + @@ -52,11 +52,20 @@ Included
minutes/calls
+ Connection
charge
+ + + Connection
charge for
+ + Charge per
minute/call
Granularity + + Usage class + % foreach my $rate ( qsearch('rate', {}) ) { @@ -85,7 +94,20 @@ - $min_charge ) %>"> + <%$money_char%>conn_charge |h %>"> + + + + min_charge |h %>"> @@ -96,6 +118,19 @@ + + <% include( '/elements/select-table.html', + 'element_name' => "classnum$n", + 'table' => 'usage_class', + 'name_col' => 'classname', + 'empty_label' => '(default)', + 'hashref' => { disabled => '' }, + 'curr_value' => ( $cgi->param("classnum$n") || + $rate_detail->classnum ), + ) + %> + + % } @@ -109,12 +144,19 @@ <% include('/elements/footer.html') %> +<%once> +tie my %conn_secs, 'Tie::IxHash', FS::rate_detail::conn_secs(); + + <%init> die "access denied" unless $FS::CurrentUser::CurrentUser->access_right('Configuration'); +my $conf = new FS::Conf; +my $money_char = $conf->config('money_char') || '$'; + my $rate_region; if ( $cgi->param('error') ) { $rate_region = new FS::rate_region ( { @@ -132,13 +174,7 @@ my $action = $rate_region->regionnum ? 'Edit' : 'Add'; my $p1 = popurl(1); -tie my %granularity, 'Tie::IxHash', - '1', => '1 second', - '6' => '6 second', - '30' => '30 second', # '1/2 minute', - '60' => 'minute', - '0' => 'call', -; +tie my %granularity, 'Tie::IxHash', FS::rate_detail::granularities(); my @rate_prefix = $rate_region->rate_prefix; my $countrycode = '';