diff options
author | ivan <ivan> | 2010-03-08 07:02:58 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-03-08 07:02:58 +0000 |
commit | 611624bc08f525d19e1bd548a7d005aa73a53145 (patch) | |
tree | f53bcfab25e8038ae485f707da619e37f46741a9 /httemplate/view | |
parent | 919bcddcb7a1ec551d27faac925fedc7d9644f3c (diff) |
domain names in netsapiens export (domain name association w/svc_phone), RT#5864
Diffstat (limited to 'httemplate/view')
-rw-r--r-- | httemplate/view/svc_phone.cgi | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/httemplate/view/svc_phone.cgi b/httemplate/view/svc_phone.cgi index 2733e258e..76ee7397d 100644 --- a/httemplate/view/svc_phone.cgi +++ b/httemplate/view/svc_phone.cgi @@ -1,16 +1,10 @@ <% include('elements/svc_Common.html', 'table' => 'svc_phone', - 'fields' => [qw( - countrycode - phonenum - pbx_title - sip_password - pin - phone_name - )], + 'fields' => \@fields, 'labels' => { 'countrycode' => 'Country code', 'phonenum' => 'Phone number', + 'domain' => 'Domain', 'pbx_title' => 'PBX', 'sip_password' => 'SIP password', 'pin' => 'PIN', @@ -21,6 +15,12 @@ %> <%init> +my $conf = new FS::Conf; + +my @fields = qw( countrycode phonenum ); +push @fields, 'domain' if $conf->exists('svc_phone-domain'); +push @fields, qw( pbx_title sip_password pin phone_name ); + my $html_foot = sub { my $svc_phone = shift; |