X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2Fpart_export%2Facct_http.pm;h=b4c64ac62f286b8bc41441cd5634c9d053a071f4;hp=d6b7d38a09dc153ff582ebf84000a70433061f70;hb=74e058c8a010ef6feb539248a550d0bb169c1e94;hpb=1db88f014fc9206bf00ce74d04d9692bdae29abc diff --git a/FS/FS/part_export/acct_http.pm b/FS/FS/part_export/acct_http.pm index d6b7d38a0..b4c64ac62 100644 --- a/FS/FS/part_export/acct_http.pm +++ b/FS/FS/part_export/acct_http.pm @@ -6,24 +6,46 @@ use Tie::IxHash; @ISA = qw( FS::part_export::http ); -tie my %options, 'Tie::IxHash', %FS::part_export::http::options; - -$options{'insert_data'}->{'default'} = join("\n", - "action 'add'", - "username \$svc_x->username", - "password \$svc_x->_password", - "prismid \$cust_main->agent_custid ? \$cust_main->agent_custid : \$cust_main->custnum ", - "name \$cust_main->first.' '.\$cust_main->last", -); -$options{'delete_data'}->{'default'} = join("\n", - "action 'remove'", - "username \$svc_x->username", -); -$options{'replace_data'}->{'default'} = join("\n", - "action 'update'", - "username \$old->username", - "password \$new->_password", -); +tie %options, 'Tie::IxHash', + 'method' => { label =>'Method', + type =>'select', + #options =>[qw(POST GET)], + options =>[qw(POST)], + default =>'POST' }, + 'url' => { label => 'URL', default => 'http://', }, + 'insert_data' => { + label => 'Insert data', + type => 'textarea', + default => join("\n", + "action 'add'", + "username \$svc_x->username", + "password \$svc_x->_password", + "prismid \$cust_main->agent_custid ? \$cust_main->agent_custid : \$cust_main->custnum ", + "name \$cust_main->first.' '.\$cust_main->last", + ), + }, + 'delete_data' => { + label => 'Delete data', + type => 'textarea', + default => join("\n", + "action 'remove'", + "username \$svc_x->username", + ), + }, + 'replace_data' => { + label => 'Replace data', + type => 'textarea', + default => join("\n", + "action 'update'", + "username \$old->username", + "password \$new->_password", + ), + }, + 'success_regexp' => { + label => 'Success Regexp', + default => '', + }, +; %info = ( 'svc' => 'svc_acct',