From: ivan Date: Thu, 16 May 2002 14:27:58 +0000 (+0000) Subject: add (stub) bsdshell and textradius exports X-Git-Tag: freeside_1_4_0_pre13~7 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=da311364707d64a2188cb959b3779178563d0ac8 add (stub) bsdshell and textradius exports --- diff --git a/FS/MANIFEST b/FS/MANIFEST index a95470bb4..4c6d243df 100644 --- a/FS/MANIFEST +++ b/FS/MANIFEST @@ -49,11 +49,13 @@ FS/part_bill_event.pm FS/export_svc.pm FS/part_export.pm FS/part_export_option.pm -FS/part_export/infostreet.pm -FS/part_export/sqlradius.pm -FS/part_export/cyrus.pm +FS/part_export/bsdshell.pm FS/part_export/cp.pm +FS/part_export/cyrus.pm +FS/part_export/infostreet.pm FS/part_export/shellcommands.pm +FS/part_export/sqlradius.pm +FS/part_export/textradius.pm FS/part_export/vpopmail.pm FS/part_pkg.pm FS/part_pop_local.pm @@ -110,11 +112,13 @@ t/part_bill_event.t t/export_svc.t t/part_export.t t/part_export_option.t -t/part_export-infostreet.t -t/part_export-sqlradius.t -t/part_export-cyrus.t +t/part_export-bsdshell.t t/part_export-cp.t +t/part_export-cyrus.t +t/part_export-infostreet.t t/part_export-shellcommands.t +t/part_export-sqlradius.t +t/part_export-textradius.t t/part_export-vpopmail.t t/part_pkg.t t/part_pop_local.t diff --git a/eg/export_template.pm b/eg/export_template.pm index 1d441bda1..00942fd12 100644 --- a/eg/export_template.pm +++ b/eg/export_template.pm @@ -9,7 +9,7 @@ sub rebless { shift; } sub _export_insert { my($self, $svc_something) = (shift, shift); - $err_or_queue = $self->myexport_queue( $svc_acct->svcnum, 'insert', + $err_or_queue = $self->myexport_queue( $svc_something->svcnum, 'insert', $svc_something->username, $svc_something->_password ); ref($err_or_queue) ? '' : $err_or_queue; } @@ -26,7 +26,7 @@ sub _export_replace { sub _export_delete { my( $self, $svc_something ) = (shift, shift); - $err_or_queue = $self->myexport_queue( $svc_acct->svcnum, + $err_or_queue = $self->myexport_queue( $svc_something->svcnum, 'delete', $svc_something->username ); ref($err_or_queue) ? '' : $err_or_queue; }