X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fpart_export%2Fphone_shellcommands.pm;h=3f01de36b73606f13bf2e603da1e8fefa0fce61d;hb=2e2d726f93bb72ce1f79f011baaf98212e09f225;hp=593b14e47e0d47a2940bb237d71592dad4fd67ed;hpb=4d75191d9cc9ef91b82cd6ff4be96cdc8f82e480;p=freeside.git diff --git a/FS/FS/part_export/phone_shellcommands.pm b/FS/FS/part_export/phone_shellcommands.pm index 593b14e47..3f01de36b 100644 --- a/FS/FS/part_export/phone_shellcommands.pm +++ b/FS/FS/part_export/phone_shellcommands.pm @@ -5,6 +5,7 @@ use vars qw(@ISA %info); use Tie::IxHash; use String::ShellQuote; use FS::part_export; +use Carp qw(carp); @ISA = qw(FS::part_export); @@ -53,6 +54,7 @@ old_ for replace operations):
  • $cust_name - Customer name (quoted for the shell)
  • $pkgnum - Internal package number
  • $custnum - Internal customer number +
  • $phone_name - Phone name (quoted for the shell)
  • $mac_addr - MAC address (Device MAC address insert and delete commands only)
  • $devicename - Device type (Device type insert and delete commands only) @@ -102,6 +104,12 @@ sub _export_command { my $command = $self->option($action); return '' if $command =~ /^\s*$/; + if ( $FS::svc_Common::noexport_hack ) { + carp "_export_command($action) suppressed by noexport_hack" + if $self->option('debug'); + return; + } + #set variable for the command no strict 'vars'; { @@ -115,6 +123,7 @@ sub _export_command { my $cust_name = $cust_pkg ? $cust_pkg->cust_main->name : ''; $cust_name = shell_quote $cust_name; my $sip_password = shell_quote $svc_phone->sip_password; + my $phone_name = shell_quote $svc_phone->phone_name; #done setting variables for the command $self->shellcommands_queue( $svc_phone->svcnum,