From 62f11a61ae7c51b55d85cbeec5eac72cef545492 Mon Sep 17 00:00:00 2001 From: ivan Date: Fri, 22 Oct 2004 10:14:31 +0000 Subject: [PATCH] add option to specify a static aid --- FS/FS/part_export/artera_turbo.pm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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, -- 2.11.0