From: ivan Date: Fri, 22 Oct 2004 10:14:31 +0000 (+0000) Subject: add option to specify a static aid X-Git-Tag: BEFORE_FINAL_MASONIZE~898 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=62f11a61ae7c51b55d85cbeec5eac72cef545492 add option to specify a static aid --- diff --git a/FS/FS/part_export/artera_turbo.pm b/FS/FS/part_export/artera_turbo.pm index 1e2296155..13a4f39a7 100644 --- a/FS/FS/part_export/artera_turbo.pm +++ b/FS/FS/part_export/artera_turbo.pm @@ -18,6 +18,7 @@ tie my %options, 'Tie::IxHash', 'agent_aid' => { 'label' => 'Export agentnum values to Artera AID', 'type' => 'checkbox', }, + 'aid' => { 'label' => 'Artera Agent ID to use if not using agentnum values', }, 'production' => { 'label' => 'Production mode (leave unchecked for staging)', 'type' => 'checkbox', }, @@ -80,7 +81,9 @@ sub _export_insert { 'email' => $email, 'cname' => $cust_main->name, 'ref' => $svc_external->svcnum, - 'aid' => ( $self->option('agent_aid') ? $cust_main->agentnum : '' ), + 'aid' => ( $self->option('agent_aid') + ? $cust_main->agentnum + : $self->option('aid') ), 'add1' => $cust_main->address1, 'add2' => $cust_main->address2, 'add3' => $cust_main->city,