RT# 83450 - fixed rateplan export
[freeside.git] / FS / FS / part_export / artera_turbo.pm
index 48c17fa..e22bbf2 100644 (file)
@@ -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 <a href="http://www.arteraturbo.com/">Artera Turbo</a>
 Reseller API.  Requires installation of
 <a href="http://search.cpan.org/dist/Net-Artera">Net::Artera</a>
 from CPAN.  You probably also want to:
 <UL>
-  <LI>In the configuraiton UI section: set the <B>svc_external-skip_manual</B> and <B>svc_external-display_type</B> configuration values.
+  <LI>In the configuration UI section: set the <B>svc_external-skip_manual</B> and <B>svc_external-display_type</B> configuration values.
   <LI>In the message catalog: set <B>svc_external-id</B> to <I>Artera Serial Number</I> and set <B>svc_external-title</B> to <I>Artera Key Code</I>.
 </UL>
 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('%010d', $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"
@@ -132,7 +137,7 @@ sub _export_unsuspend {
   $self->queue_statusChange(15, $svc_external);
 }
 
-sub queueStatusChange {
+sub queue_statusChange {
   my( $self, $status, $svc_external ) = @_;
 
   my $queue = new FS::queue {
@@ -165,7 +170,7 @@ sub statusChange {
 
   my $result = $artera->statusChange(
     'asn'      => sprintf('%010d', $id),
-    'akc'      => sprintf('%010d', $title),
+    'akc'      => substr("0000000000$title", -10),
     'statusid' => $status,
   );