svc_cable SQL export, RT#75250
authorIvan Kohler <ivan@freeside.biz>
Thu, 6 Apr 2017 22:58:27 +0000 (15:58 -0700)
committerIvan Kohler <ivan@freeside.biz>
Thu, 6 Apr 2017 22:58:27 +0000 (15:58 -0700)
FS/FS/part_export/cable_sql.pm [new file with mode: 0644]

diff --git a/FS/FS/part_export/cable_sql.pm b/FS/FS/part_export/cable_sql.pm
new file mode 100644 (file)
index 0000000..9310b04
--- /dev/null
@@ -0,0 +1,23 @@
+package FS::part_export::cable_sql;
+use base qw( FS::part_export::sql_Common );
+
+use strict;
+use vars qw( %info );
+#use Tie::IxHash;
+
+#tie my %options, 'Tie::IxHash',
+#  %{__PACKAGE__->sql_options},
+#  #more options...
+#;
+
+%info = (
+  'svc'     => 'svc_cable',
+  'desc'    => 'Real time export of cable service to SQL databases',
+  'options' => __PACKAGE__->sql_options, #\%options,
+  'no_machine' => 1,
+  'notes'      => <<END
+Export cable service to SQL databases.
+END
+);
+
+1;