This commit was generated by cvs2svn to compensate for changes in r11022,
[freeside.git] / httemplate / edit / rate_region.cgi
1 <% include("/elements/header.html","$action Region", menubar(
2       'View all regions' => "${p}browse/rate_region.html",
3     ))
4 %>
5
6 <% include('/elements/error.html') %>
7
8 <FORM ACTION="<%$p1%>process/rate_region.cgi" METHOD=POST>
9
10 <INPUT TYPE="hidden" NAME="regionnum" VALUE="<% $rate_region->regionnum %>">
11
12 %# region info
13
14 <% ntable('#cccccc') %>
15
16   <TR>
17     <TH ALIGN="right">Region name</TH>
18     <TD><INPUT TYPE="text" NAME="regionname" SIZE=32 VALUE="<% $rate_region->regionname %>"></TR>
19   </TR>
20
21   <TR>
22     <TH ALIGN="right">Country code</TH>
23     <TD><INPUT TYPE="text" NAME="countrycode" SIZE=4 MAXLENGTH=3 VALUE="<% $countrycode %>"></TR>
24   </TR>
25
26   <TR>
27     <TD ALIGN="right">
28       <B>Prefixes</B>
29       <BR><FONT SIZE="-1">(comma-separated)</FONT>
30     </TD>
31     <TD>
32       <TEXTAREA NAME="npa" WRAP=SOFT><% join(', ', map { $_->npa. (length($_->nxx) ? '-'.$_->nxx : '') } @rate_prefix ) %></TEXTAREA>
33     </TD>
34   </TR>
35
36 </TABLE>
37
38 <BR>
39 <INPUT TYPE="submit" VALUE="<% $rate_region->regionnum ? "Apply changes" : "Add region" %>">
40 </FORM>
41 %# rate plan info, if the region has been created yet
42
43 % if($rate_region->regionnum) {
44 <BR><BR><FONT SIZE="+2">Rates in this region</FONT>
45 % if ( my $select_cdr_type = include('/elements/select-cdr_type.html',
46 %  'curr_value'   => $cdrtypenum,
47 %  'onchange'     => 'form.submit();',
48 %  'name_col'     => 'cdrtypename',
49 %  'value_col'    => 'cdrtypenum',
50 %  'empty_label'  => '(default)',
51 % ) ) {
52 <FORM ACTION="<%$cgi->url%>" METHOD="GET">
53 <INPUT TYPE="hidden" NAME="regionnum"   VALUE="<% $rate_region->regionnum %>">
54 <FONT SIZE="+1">Usage type: <% $select_cdr_type %></FONT>
55 </FORM>
56 % }
57 <% include('/edit/elements/rate_detail.html',
58             'regionnum'   => $rate_region->regionnum,
59             'cdrtypenum'  => $cdrtypenum,
60 ) %>
61 % }
62
63 <% include('/elements/footer.html') %>
64 <%once>
65
66 tie my %conn_secs,   'Tie::IxHash', FS::rate_detail::conn_secs();
67
68 </%once>
69 <%init>
70
71 die "access denied"
72   unless $FS::CurrentUser::CurrentUser->access_right('Configuration');
73
74 my $conf = new FS::Conf;
75 my $money_char = $conf->config('money_char') || '$';
76
77 my $rate_region;
78 if ( $cgi->param('error') ) {
79   $rate_region = new FS::rate_region ( {
80     map { $_, scalar($cgi->param($_)) } fields('rate_region')
81   } );
82 } elsif ( $cgi->param('regionnum') ) {
83   $cgi->param('regionnum') =~ /^(\d+)$/ or die "unparseable regionnum";
84   $rate_region = qsearchs( 'rate_region', { 'regionnum' => $1 } )
85     or die "unknown regionnum $1\n";
86 } else { #adding
87   $rate_region = new FS::rate_region {};
88 }
89 my $action = $rate_region->regionnum ? 'Edit' : 'Add';
90
91 my $p1 = popurl(1);
92
93 tie my %granularity, 'Tie::IxHash', FS::rate_detail::granularities();
94
95 my @rate_prefix = $rate_region->rate_prefix;
96 my $countrycode = '';
97 if ( @rate_prefix ) {
98   $countrycode = $rate_prefix[0]->countrycode;
99   foreach my $rate_prefix ( @rate_prefix ) {
100     errorpage('multiple country codes per region not yet supported by web UI')
101       unless $rate_prefix->countrycode eq $countrycode;
102   }
103 }
104 my $cdrtypenum = '';
105 if ( $cgi->param('cdrtypenum') =~ /^(\d+)$/ ) {
106   $cdrtypenum = $1;
107 }
108 </%init>