just 0-pad the key codes, don't try fancy things with hex and sprintf
authorivan <ivan>
Thu, 6 Jan 2005 20:20:24 +0000 (20:20 +0000)
committerivan <ivan>
Thu, 6 Jan 2005 20:20:24 +0000 (20:20 +0000)
FS/FS/cust_svc.pm
FS/FS/part_export/artera_turbo.pm

index aa0ac5a..c91eba1 100644 (file)
@@ -316,7 +316,7 @@ sub _svc_label {
     my $conf = new FS::Conf;
     if ( $conf->config('svc_external-display_type') eq 'artera_turbo' ) {
       $tag = sprintf('%010d', $svc_x->id). '-'.
-             uc( sprintf('%010x', hex($svc_x->title)) );
+             substr('0000000000'.uc($svc_x->title), -10);
     } else {
       $tag = $svc_x->id. ': '. $svc_x->title;
     }
index 2fde0d1..bbc6be9 100644 (file)
@@ -104,7 +104,7 @@ sub _export_insert {
   if ( $result->{'id'} == 1 ) {
     my $new = new FS::svc_external { $svc_external->hash };
     $new->id(sprintf('%010d', $result->{'ASN'}));
-    $new->title(uc(sprintf('%010x', hex($result->{'AKC'}) )));
+    $new->title( substr('0000000000'.uc($result->{'AKC'}), -10) );
     $new->replace($svc_external);
   } else {
     $result->{'message'} || 'No response from Artera';
@@ -169,7 +169,7 @@ sub statusChange {
 
   my $result = $artera->statusChange(
     'asn'      => sprintf('%010d', $id),
-    'akc'      => sprintf('%010x', hex($title)),
+    'akc'      => substr("0000000000$title", -10),
     'statusid' => $status,
   );