diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-06-08 01:30:52 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-06-08 01:30:52 -0700 |
commit | e96a2a6fd3a8885b0fb035ecc55bdf50dbe5a4aa (patch) | |
tree | 1be65eac435d9445d71a2c63e33fefe94db96349 /httemplate/browse/agent.cgi | |
parent | 0f21021fea8f99d28b4507c3cffa55cbdd6f110d (diff) |
multi-currency, RT#21565
Diffstat (limited to 'httemplate/browse/agent.cgi')
-rwxr-xr-x | httemplate/browse/agent.cgi | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/httemplate/browse/agent.cgi b/httemplate/browse/agent.cgi index fc9ce5413..b9190ecb5 100755 --- a/httemplate/browse/agent.cgi +++ b/httemplate/browse/agent.cgi @@ -38,6 +38,10 @@ full offerings (via their type).<BR><BR> <TH CLASS="grid" BGCOLOR="#cccccc">Ticketing</TH> % } +% if ( $conf->config('currencies') ) { + <TH CLASS="grid" BGCOLOR="#cccccc">Currencies</TH> +% } + <TH CLASS="grid" BGCOLOR="#cccccc"><FONT SIZE=-1>Payment Gateway Overrides</FONT></TH> <TH CLASS="grid" BGCOLOR="#cccccc"><FONT SIZE=-1>Configuration Overrides</FONT></TH> </TR> @@ -361,19 +365,23 @@ Unused <BR><A HREF="<%$p%>edit/prepay_credit.cgi?agentnum=<% $agent->agentnum %>">Generate cards</A> </TD> -% if ( $conf->config('ticket_system') ) { - +% if ( $conf->config('ticket_system') ) { <TD CLASS="grid" BGCOLOR="<% $bgcolor %>"> -% if ( $agent->ticketing_queueid ) { - - Queue: <% $agent->ticketing_queueid %>: <% $agent->ticketing_queue %><BR> +% if ( $agent->ticketing_queueid ) { + Queue: <% $agent->ticketing_queueid %>: + <% $agent->ticketing_queue %> + <BR> +% } + </TD> % } +% if ( $conf->config('currencies') ) { + <TD CLASS="grid" BGCOLOR="<% $bgcolor %>"> + <% join('<BR>', sort keys %{ $agent->agent_currency_hashref } ) %> </TD> % } - <TD CLASS="inv" BGCOLOR="<% $bgcolor %>"> <TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0> % foreach my $override ( |