diff options
author | jeff <jeff> | 2007-02-21 02:53:14 +0000 |
---|---|---|
committer | jeff <jeff> | 2007-02-21 02:53:14 +0000 |
commit | 299f1b7b7b5691d70709aaacfd100d2e088ab0ff (patch) | |
tree | c56a721ebcf6aa995436b724287eae4a955697cc | |
parent | 262ad6a5821649093c104d59b33d838c12520d3e (diff) |
work around a claimed 50 char limit, and correct a description handling bug
-rw-r--r-- | FS/FS/part_export/prizm.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/FS/FS/part_export/prizm.pm b/FS/FS/part_export/prizm.pm index 711888d1f..ca02b8f3e 100644 --- a/FS/FS/part_export/prizm.pm +++ b/FS/FS/part_export/prizm.pm @@ -43,7 +43,7 @@ sub _export_insert { my $cust_main = $svc->cust_svc->cust_pkg->cust_main; - my $err_or_som = $self->prizm_command(CustomerIfService, 'getCustomers', + my $err_or_som = $self->prizm_command('CustomerIfService', 'getCustomers', ['import_id'], [$cust_main->custnum], ['='], @@ -118,7 +118,7 @@ sub _export_insert { $err_or_som = $self->prizm_command('NetworkIfService', 'addProvisionedElement', $networkid, $svc->mac_addr, - $name . " " . $svc->description, + $name, # we fix this below (bug in prizm?) $location, $contact, sprintf("%032X", $svc->authkey), @@ -141,7 +141,7 @@ sub _export_insert { $svc->latitude, $svc->longitude, $svc->altitude, - $name, + $name . " " . $svc->description, $location, $contact, ); |