diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-01-11 21:22:22 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-01-11 21:22:22 -0800 |
commit | 66eaa4a82b7fc52e711ecdefc95feedf629f71b1 (patch) | |
tree | 90737f540471a91f4a6ab5f2709b09559c54680f /httemplate | |
parent | 73954e6f0f1f31cb33f231bc381ab93ddabd8c02 (diff) |
add svc_phone.sim_imsi, RT#20768
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/edit/svc_phone.cgi | 5 | ||||
-rw-r--r-- | httemplate/view/svc_phone.cgi | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/httemplate/edit/svc_phone.cgi b/httemplate/edit/svc_phone.cgi index 9647b6887..8ee71b82d 100644 --- a/httemplate/edit/svc_phone.cgi +++ b/httemplate/edit/svc_phone.cgi @@ -28,6 +28,11 @@ my $begin_callback = sub { type => 'select-did', label => 'Phone number', multiple => $bulk, + }, + { field => 'sim_imsi', + type => 'text', + size => 15, + maxlength => 15, }; push @$fields, { field => 'domsvc', diff --git a/httemplate/view/svc_phone.cgi b/httemplate/view/svc_phone.cgi index 323be63dc..e956e7d49 100644 --- a/httemplate/view/svc_phone.cgi +++ b/httemplate/view/svc_phone.cgi @@ -16,7 +16,7 @@ my %labels = map { $_ => ( ref($fields->{$_}) ); } keys %$fields; -my @fields = qw( countrycode phonenum ); +my @fields = qw( countrycode phonenum sim_imsi ); push @fields, 'domain' if $conf->exists('svc_phone-domain'); push @fields, qw( pbx_title sip_password pin phone_name forwarddst email ); |