diff options
author | mark <mark> | 2010-03-09 21:57:52 +0000 |
---|---|---|
committer | mark <mark> | 2010-03-09 21:57:52 +0000 |
commit | 2dbf3fa84c7825aa02e168bc07a167ca9ad79620 (patch) | |
tree | 317bccc51f934e9b9425280c03e711168ab3c6e6 /httemplate/edit/prepay_credit.cgi | |
parent | e84081ace9a19bd8007a74e8c062f4bc8d573e5d (diff) |
RT#7407, variable length prepaid card codes
Diffstat (limited to 'httemplate/edit/prepay_credit.cgi')
-rw-r--r-- | httemplate/edit/prepay_credit.cgi | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/httemplate/edit/prepay_credit.cgi b/httemplate/edit/prepay_credit.cgi index ed404b7cd..f7a1b0801 100644 --- a/httemplate/edit/prepay_credit.cgi +++ b/httemplate/edit/prepay_credit.cgi @@ -7,13 +7,16 @@ Generate <INPUT TYPE="text" NAME="num" VALUE="<% $cgi->param('num') || '(quantity)' |h %>" SIZE=10 MAXLENGTH=10 onFocus="if ( this.value == '(quantity)' ) { this.value = ''; }"> +prepaid cards of + +<INPUT TYPE="text" NAME="length" SIZE=3 MAXLENGTH=2 VALUE=8> <SELECT NAME="type"> % foreach (qw(alpha alphanumeric numeric)) { <OPTION<% $cgi->param('type') eq $_ ? ' SELECTED' : '' %>><% $_ %> % } </SELECT> -prepaid cards +characters each <BR>for <SELECT NAME="agentnum"><OPTION>(any agent) % foreach my $opt_agent ( qsearch('agent', { 'disabled' => '' } ) ) { |