From 7c12696f0598ca04c56699e8e6ff4c307000affa Mon Sep 17 00:00:00 2001 From: ivan Date: Sun, 21 Mar 2010 23:13:26 +0000 Subject: connection fee for initial N seconds support, RT#7018 --- httemplate/misc/rate_edit_excel.html | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'httemplate/misc/rate_edit_excel.html') diff --git a/httemplate/misc/rate_edit_excel.html b/httemplate/misc/rate_edit_excel.html index e73133c05..442d83aca 100644 --- a/httemplate/misc/rate_edit_excel.html +++ b/httemplate/misc/rate_edit_excel.html @@ -1,5 +1,9 @@ <% include('/elements/header.html', 'Edit rates with Excel' ) %> +% if ( $have_conn ) { + WARNING: This functionality does not yet preserve connection charges.

+% } + <% include( '/elements/form-file_upload.html', 'name' => 'RateImportForm', 'action' => 'process/rate_edit_excel.html', @@ -58,4 +62,9 @@ die "access denied" unless $FS::CurrentUser::CurrentUser->access_right('Configuration'); +my $sth = dbh->prepare('SELECT COUNT(*) FROM rate_detail WHERE conn_charge > 0 OR conn_sec > 0 LIMIT 1') + or die dbh->errstr; +$sth->execute or die $sth->errstr; +my $have_conn = $sth->fetchrow_arrayref->[0]; + -- cgit v1.2.1