X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fpart_export%2Fartera_turbo.pm;h=c006db9cdb78cc804fadbf2d98b0741803e9b18b;hb=f4723862a096bd9eecd47727c9a99ebedc131ac9;hp=2fde0d11770ac5edfe124b6b013d5b8632ea7442;hpb=b5f5f30af1a68a03eae894753bdbd7c66a122670;p=freeside.git diff --git a/FS/FS/part_export/artera_turbo.pm b/FS/FS/part_export/artera_turbo.pm index 2fde0d117..c006db9cd 100644 --- a/FS/FS/part_export/artera_turbo.pm +++ b/FS/FS/part_export/artera_turbo.pm @@ -43,7 +43,7 @@ Reseller API. Requires installation of Net::Artera from CPAN. You probably also want to: END @@ -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, );