summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2004-10-22 10:14:31 +0000
committerivan <ivan>2004-10-22 10:14:31 +0000
commit62f11a61ae7c51b55d85cbeec5eac72cef545492 (patch)
tree9a3fbda43464890c4f2f86609a80a38c696ae24c
parentf55e1a91f7b9b0238791cdbf873f91a8c5a584a7 (diff)
add option to specify a static aid
-rw-r--r--FS/FS/part_export/artera_turbo.pm5
1 files changed, 4 insertions, 1 deletions
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,