X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fpart_export%2Fartera_turbo.pm;h=bbc6be945d1d6430a3fd9df19a43617477aeede7;hb=f441bdef352ddd432e305da35e80813ca30e517f;hp=68910ed75f391e9ad51694aac231e29467a5615f;hpb=e438cf154c913221a998464a45a3388584d0cefb;p=freeside.git diff --git a/FS/FS/part_export/artera_turbo.pm b/FS/FS/part_export/artera_turbo.pm index 68910ed75..bbc6be945 100644 --- a/FS/FS/part_export/artera_turbo.pm +++ b/FS/FS/part_export/artera_turbo.pm @@ -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(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, );