summaryrefslogtreecommitdiff
path: root/httemplate/edit/process
diff options
context:
space:
mode:
authorivan <ivan>2009-06-30 01:42:56 +0000
committerivan <ivan>2009-06-30 01:42:56 +0000
commit665067cef48a5516e0bfb2dd79d99b8495e25ee5 (patch)
tree40b11281ad950b57c1dc940e35a691ae62811a17 /httemplate/edit/process
parentf544c8f095cfb2e844810d31b6230b96033cb1e8 (diff)
phone devices (for netsapiens integration), RT#5226
Diffstat (limited to 'httemplate/edit/process')
-rw-r--r--httemplate/edit/process/part_device.html11
-rw-r--r--httemplate/edit/process/phone_device.html18
2 files changed, 29 insertions, 0 deletions
diff --git a/httemplate/edit/process/part_device.html b/httemplate/edit/process/part_device.html
new file mode 100644
index 000000000..2b7e1da49
--- /dev/null
+++ b/httemplate/edit/process/part_device.html
@@ -0,0 +1,11 @@
+<% include( 'elements/process.html',
+ 'table' => 'part_device',
+ 'viewall_dir' => 'browse',
+ )
+%>
+<%init>
+
+die "access denied"
+ unless $FS::CurrentUser::CurrentUser->access_right('Configuration');
+
+</%init>
diff --git a/httemplate/edit/process/phone_device.html b/httemplate/edit/process/phone_device.html
new file mode 100644
index 000000000..df9d5e793
--- /dev/null
+++ b/httemplate/edit/process/phone_device.html
@@ -0,0 +1,18 @@
+<% include( 'elements/process.html',
+ 'table' => 'phone_device',
+ 'redirect' => sub {
+ my( $cgi, $phone_device ) = @_;
+ popurl(3).'view/svc_phone.cgi?'.
+ 'svcnum='. $phone_device->svcnum.
+ ';devicenum=';
+ },
+ )
+%>
+<%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>