diff options
Diffstat (limited to 'httemplate/edit')
-rw-r--r-- | httemplate/edit/cust_main/bottomfixup.js | 1 | ||||
-rw-r--r-- | httemplate/edit/prepay_credit.cgi | 5 | ||||
-rw-r--r-- | httemplate/edit/process/part_device.html | 4 | ||||
-rw-r--r-- | httemplate/edit/process/prepay_credit.cgi | 1 | ||||
-rwxr-xr-x | httemplate/edit/svc_acct.cgi | 2 | ||||
-rwxr-xr-x | httemplate/edit/svc_domain.cgi | 2 |
6 files changed, 3 insertions, 12 deletions
diff --git a/httemplate/edit/cust_main/bottomfixup.js b/httemplate/edit/cust_main/bottomfixup.js index 5d06f3c04..1a06d9497 100644 --- a/httemplate/edit/cust_main/bottomfixup.js +++ b/httemplate/edit/cust_main/bottomfixup.js @@ -225,7 +225,6 @@ function post_standardization() { } else { - cf.elements['geocode'].value = ''; post_geocode(); } diff --git a/httemplate/edit/prepay_credit.cgi b/httemplate/edit/prepay_credit.cgi index f7a1b0801..ed404b7cd 100644 --- a/httemplate/edit/prepay_credit.cgi +++ b/httemplate/edit/prepay_credit.cgi @@ -7,16 +7,13 @@ 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> -characters each +prepaid cards <BR>for <SELECT NAME="agentnum"><OPTION>(any agent) % foreach my $opt_agent ( qsearch('agent', { 'disabled' => '' } ) ) { diff --git a/httemplate/edit/process/part_device.html b/httemplate/edit/process/part_device.html index 399991fc8..2b7e1da49 100644 --- a/httemplate/edit/process/part_device.html +++ b/httemplate/edit/process/part_device.html @@ -1,10 +1,6 @@ <% include( 'elements/process.html', 'table' => 'part_device', 'viewall_dir' => 'browse', - 'process_m2m' => { - 'link_table' => 'export_device', - 'target_table' => 'part_export', - }, ) %> <%init> diff --git a/httemplate/edit/process/prepay_credit.cgi b/httemplate/edit/process/prepay_credit.cgi index a55522b86..8f2eb2b25 100644 --- a/httemplate/edit/process/prepay_credit.cgi +++ b/httemplate/edit/process/prepay_credit.cgi @@ -56,7 +56,6 @@ $hashref->{totalbytes} = $cgi->param('totalbytes') * $cgi->param('totalmultiplie $error ||= FS::prepay_credit::generate( $num, scalar($cgi->param('type')), - $cgi->param('length'), $hashref ); diff --git a/httemplate/edit/svc_acct.cgi b/httemplate/edit/svc_acct.cgi index 9c21c44bc..99e4b74a4 100755 --- a/httemplate/edit/svc_acct.cgi +++ b/httemplate/edit/svc_acct.cgi @@ -132,7 +132,7 @@ Service # <% $svcnum ? "<B>$svcnum</B>" : " (NEW)" %><BR> </TR> % } else { - <INPUT TYPE="hidden" NAME="cgp_aliases" VALUE="<% $svc_acct->cgp_aliases %>"> + <INPUT TYPE="text" NAME="cgp_aliases" VALUE="<% $svc_acct->cgp_aliases %>"> % } diff --git a/httemplate/edit/svc_domain.cgi b/httemplate/edit/svc_domain.cgi index c85dd3b72..78faf12b2 100755 --- a/httemplate/edit/svc_domain.cgi +++ b/httemplate/edit/svc_domain.cgi @@ -63,7 +63,7 @@ Available top-level domains: <% $export->option('tlds') %> </TR> % } else { - <INPUT TYPE="hidden" NAME="cgp_aliases" VALUE="<% $svc_domain->cgp_aliases %>"> + <INPUT TYPE="text" NAME="cgp_aliases" VALUE="<% $svc_domain->cgp_aliases %>"> % } % if ( $part_svc->part_svc_column('max_accounts')->columnflag =~ /^[FA]$/ ) { |