summaryrefslogtreecommitdiff
path: root/httemplate/edit/process/svc_phone.html
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/edit/process/svc_phone.html')
-rw-r--r--httemplate/edit/process/svc_phone.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/httemplate/edit/process/svc_phone.html b/httemplate/edit/process/svc_phone.html
new file mode 100644
index 0000000..e02ec5c
--- /dev/null
+++ b/httemplate/edit/process/svc_phone.html
@@ -0,0 +1,29 @@
+<% include( 'elements/svc_Common.html',
+ 'table' => 'svc_phone',
+ 'args_callback' => $args_callback,
+ )
+%>
+<%init>
+
+die "access denied"
+ unless $FS::CurrentUser::CurrentUser->access_right('Provision customer service'); #something else more specific?
+
+my $args_callback = sub {
+ my( $cgi, $object ) = @_;
+
+ my %opt = ();
+ if ( $cgi->param('locationnum') == -1 ) {
+ my $cust_location = new FS::cust_location {
+ map { $_ => scalar($cgi->param($_)) }
+ qw( custnum address1 address2 city county state zip country )
+ };
+ $opt{'cust_location'} = $cust_location;
+ }
+
+ %opt;
+
+};
+
+
+
+</%init>