import torrus 1.0.9
[freeside.git] / httemplate / edit / process / prepay_credit.cgi
index ca74724..a55522b 100644 (file)
@@ -1,4 +1,37 @@
-<%
+%unless ( ref($error) ) {
+%  $cgi->param('error', $error );
+<% $cgi->redirect(popurl(3). "edit/prepay_credit.cgi?". $cgi->query_string ) %>
+% } else { 
+
+<% include('/elements/header.html', "$num prepaid cards generated".
+              ( $agent ? ' for '.$agent->agent : '' )
+          )
+%>
+
+<FONT SIZE="+1">
+% foreach my $card ( @$error ) { 
+
+  <code><% $card %></code>
+  -
+  <% $hashref->{amount} ? sprintf('$%.2f', $hashref->{amount} ) : '' %>
+  <% $hashref->{amount} && $hashref->{seconds} ? 'and' : '' %>
+  <% $hashref->{seconds} ? duration_exact($hashref->{seconds}) : '' %>
+  <% $hashref->{upbytes}   ? FS::UI::bytecount::bytecount_unexact($hashref->{upbytes}) : '' %>
+  <% $hashref->{downbytes} ? FS::UI::bytecount::bytecount_unexact($hashref->{downbytes}) : '' %>
+  <% $hashref->{totalbytes} ? FS::UI::bytecount::bytecount_unexact($hashref->{totalbytes}) : '' %>
+  <br>
+% } 
+
+</FONT>
+
+<% include('/elements/footer.html') %>
+
+% } 
+<%init>
+
+die "access denied"
+  unless $FS::CurrentUser::CurrentUser->access_right('Configuration');
+
 my $hashref = {};
 
 my $agent = '';
@@ -15,37 +48,16 @@ if ( $cgi->param('num') =~ /^\s*(\d+)\s*$/ ) {
   $error = 'Illegal number of prepaid cards: '. $cgi->param('num');
 }
 
-$hashref->{amount} = $cgi->param('amount');
-$hashref->{seconds} = $cgi->param('seconds') * $cgi->param('multiplier');
+$hashref->{amount}    = $cgi->param('amount');
+$hashref->{seconds}   = $cgi->param('seconds') * $cgi->param('multiplier');
+$hashref->{upbytes}   = $cgi->param('upbytes') * $cgi->param('upmultiplier');
+$hashref->{downbytes} = $cgi->param('downbytes') * $cgi->param('downmultiplier');
+$hashref->{totalbytes} = $cgi->param('totalbytes') * $cgi->param('totalmultiplier');
 
 $error ||= FS::prepay_credit::generate( $num,
                                         scalar($cgi->param('type')), 
+                                        $cgi->param('length'),
                                         $hashref
                                       );
 
-unless ( ref($error) ) {
-  $cgi->param('error', $error );
-%><%=
-  $cgi->redirect(popurl(3). "edit/prepay_credit.cgi?". $cgi->query_string )
-%><% } else { %>
-
-<%= include("/elements/header.html", "$num prepaid cards generated".
-              ( $agent ? ' for '.$agent->agent : '' ),
-            menubar( 'Main menu' => popurl(3) )
-          )
-%>
-
-<FONT SIZE="+1">
-<% foreach my $card ( @$error ) { %>
-  <code><%= $card %></code>
-  -
-  <%= $hashref->{amount} ? sprintf('$%.2f', $hashref->{amount} ) : '' %>
-  <%= $hashref->{amount} && $hashref->{seconds} ? 'and' : '' %>
-  <%= $hashref->{seconds} ? duration_exact($hashref->{seconds}) : '' %>
-  <br>
-<% } %>
-
-</FONT>
-
-</BODY></HTML>
-<% } %>
+</%init>