X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2Fpart_export%2Fartera_turbo.pm;h=e22bbf2af2b7ab134d590290119d96169ab8b940;hp=8e2ed85695b9ba4ba77199c8d7b3784df5971586;hb=5372897f367498972c96f5494e142e6e11b29eb8;hpb=c836e10e2ba51bf5f0e1671484db367248218a0c diff --git a/FS/FS/part_export/artera_turbo.pm b/FS/FS/part_export/artera_turbo.pm index 8e2ed8569..e22bbf2af 100644 --- a/FS/FS/part_export/artera_turbo.pm +++ b/FS/FS/part_export/artera_turbo.pm @@ -25,6 +25,9 @@ tie my %options, 'Tie::IxHash', 'debug' => { 'label' => 'Enable debug logging', 'type' => 'checkbox', }, + 'enable_edit' => { 'label' => 'Enable local editing of Artera serial numbers and key codes (note that the changes will NOT be exported to Artera)', + 'type' => 'checkbox', + }, ; %info = ( @@ -34,13 +37,14 @@ tie my %options, 'Tie::IxHash', 'Real-time export to Artera Turbo Reseller API', 'options' => \%options, #'nodomain' => 'Y', + 'no_machine' => 1, 'notes' => <<'END' Real-time export to Artera Turbo Reseller API. Requires installation of Net::Artera from CPAN. You probably also want to: END @@ -101,7 +105,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'; @@ -110,6 +114,7 @@ sub _export_insert { sub _export_replace { my( $self, $new, $old ) = (shift, shift, shift); + return '' if $self->option('enable_edit'); return "can't change serial number with Artera" if $old->id != $new->id && $old->id; return "can't change key code with Artera" @@ -165,7 +170,7 @@ sub statusChange { my $result = $artera->statusChange( 'asn' => sprintf('%010d', $id), - 'akc' => sprintf('%010x', hex($title)), + 'akc' => substr("0000000000$title", -10), 'statusid' => $status, );