diff options
author | ivan <ivan> | 2010-03-08 07:03:00 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-03-08 07:03:00 +0000 |
commit | 3402ff329fde97d6ac96723b5c2a4ed46ed2ce25 (patch) | |
tree | 772159409479b9638dc4ff818d109f829869840f /httemplate/view | |
parent | 5ed4ecff45b97c219c918fb3ee0d88c98ae2e19e (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; |