% include('/elements/header.html', 'Edit rates with Excel' ) %>
% if ( $have_conn ) {
WARNING: This functionality does not yet preserve connection charges.
2. Edit rates with Excel (or other .XLS-compatible application)
- To add rates, add four columns like an existing rate, with headers starting with "NEW: Rate Name" or "Rate Name".
- For rate addition, protection can be turned off in Excel via the Tools->Protection->Unprotect Sheet menu command. Note that only new rates can be added; modified grayed out cells will not be imported.
<% include('/elements/footer.html') %>
<%init>
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];
%init>