X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2Fpart_export%2Fcust_http.pm;h=c13e18db11b13caa71d76ac208d42297d9efd275;hp=e8b677be233810f2c69a3df30b3b026be2ce30ab;hb=5372897f367498972c96f5494e142e6e11b29eb8;hpb=d86c2687d55370e9aee258b7ed9b34ab181ffbf1 diff --git a/FS/FS/part_export/cust_http.pm b/FS/FS/part_export/cust_http.pm index e8b677be2..c13e18db1 100644 --- a/FS/FS/part_export/cust_http.pm +++ b/FS/FS/part_export/cust_http.pm @@ -13,16 +13,19 @@ tie %options, 'Tie::IxHash', options =>[qw(POST)], default =>'POST' }, 'url' => { label => 'URL', default => 'http://', }, + 'ssl_no_verify' => { label => 'Skip SSL certificate validation', + type => 'checkbox', + }, 'insert_data' => { label => 'Insert data', type => 'textarea', default => join("\n", "action 'insert'", "custnum \$cust_main->custnum", - "first \$cust_main->first", - "last \$cust_main->get('last')", - ( map "$_ \$cust_main->$_", qw( company address1 address2 city county state zip country daytime night fax last ) ), - "email \$cust_main->invoicing_list_emailonly_scalar", +# "first \$cust_main->first", +# "last \$cust_main->get('last')", +# ( map "$_ \$cust_main->$_", qw( company address1 address2 city county state zip country daytime night fax ) ), +# "email \$cust_main->invoicing_list_emailonly_scalar", ), }, 'delete_data' => { @@ -39,10 +42,10 @@ tie %options, 'Tie::IxHash', default => join("\n", "action 'replace'", "custnum \$new_cust_main->custnum", - "first \$new_cust_main->first", - "last \$new_cust_main->get('last')", - ( map "$_ \$cust_main->$_", qw( company address1 address2 city county state zip country daytime night fax last ) ), - "email \$new_cust_main->invoicing_list_emailonly_scalar", +# "first \$new_cust_main->first", +# "last \$new_cust_main->get('last')", +# ( map "$_ \$cust_main->$_", qw( company address1 address2 city county state zip country daytime night fax ) ), +# "email \$new_cust_main->invoicing_list_emailonly_scalar", ), }, 'success_regexp' => { @@ -52,9 +55,10 @@ tie %options, 'Tie::IxHash', ; %info = ( - 'svc' => 'cust_main', + 'svc' => [qw( cust_main )], 'desc' => 'Send an HTTP or HTTPS GET or POST request, for customers.', 'options' => \%options, + 'no_machine' => 1, 'notes' => <<'END' Send an HTTP or HTTPS GET or POST to the specified URL on customer addition, modification and deletion. For HTTPS support,