diff options
author | Ivan Kohler <ivan@freeside.biz> | 2014-01-05 00:30:46 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2014-01-05 00:30:46 -0800 |
commit | e70335c54c0e4dd39485f1c711c1a7cc037df695 (patch) | |
tree | dccd0536b1369c9e6d90ba57859f3c166c18e205 /FS | |
parent | d9dc1fc7a9540208f4088aed0cce8b7a9bbefb27 (diff) |
add devicename to phone_shellcommands device insert and delete, RT#25705
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/part_export/phone_shellcommands.pm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/FS/FS/part_export/phone_shellcommands.pm b/FS/FS/part_export/phone_shellcommands.pm index 411c263d2..593b14e47 100644 --- a/FS/FS/part_export/phone_shellcommands.pm +++ b/FS/FS/part_export/phone_shellcommands.pm @@ -54,6 +54,7 @@ old_ for replace operations): <LI><code>$pkgnum</code> - Internal package number <LI><code>$custnum</code> - Internal customer number <LI><code>$mac_addr</code> - MAC address (Device MAC address insert and delete commands only) + <LI><code>$devicename</code> - Device type (Device type insert and delete commands only) </UL> END ); @@ -83,14 +84,16 @@ sub _export_unsuspend { sub export_device_insert { my( $self, $svc_phone, $phone_device ) = @_; $self->_export_command('mac_insert', $svc_phone, - 'mac_addr'=>$phone_device->mac_addr + mac_addr => $phone_device->mac_addr, + devicename => $phone_device->part_device->devicename, ); } sub export_device_delete { my( $self, $svc_phone, $phone_device ) = @_; $self->_export_command('mac_delete', $svc_phone, - 'mac_addr'=>$phone_device->mac_addr + mac_addr => $phone_device->mac_addr, + devicename => $phone_device->part_device->devicename, ); } |