summaryrefslogtreecommitdiff
path: root/httemplate/edit/phone_device.html
blob: a1aa166207a751dc793dd3863460912578a8e4bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<% include( 'elements/edit.html',
                 'name'   => 'Phone device',
                 'table'  => 'phone_device',
                 'labels' => { 
                               'devicenum'  => 'Device',
                               'devicepart' => 'Device type',
                               'mac_addr'   => 'MAC address',
                             },
                 'fields' => [ { 'field'    => 'devicepart',
                                 'type'     => 'select-table',
                                 'table'    => 'part_device',
                                 'name_col' => 'devicename',
                                 'empty_label' =>'Select device type',
                                 #'hashref'        =>{ disabled => '' },
                               },
                               'mac_addr',
                               { 'field' => 'svcnum',
                                 'type'  => 'hidden',
                               },
                             ],
                 'menubar' => [], #disable viewall
                 #'viewall_dir' => 'browse',
                 'new_callback' => sub {
                                     my( $cgi, $object ) = @_;
                                     $object->svcnum( $cgi->param('svcnum') );
                                   },
           )
%>
<%init>

# :/  needs agent-virt so you can't futz with arbitrary devices

die "access denied"
  unless $FS::CurrentUser::CurrentUser->access_right('Provision customer service'); #something else more specific?


</%init>