summaryrefslogtreecommitdiff
path: root/FS/FS/cdr
diff options
context:
space:
mode:
authorChristopher Burger <burgerc@freeside.biz>2017-05-26 12:20:21 -0400
committerChristopher Burger <burgerc@freeside.biz>2017-05-26 14:25:06 -0400
commita014b7e4702aee213e31ade6cd30febd0cfd5c4f (patch)
treeca6ee06841d9dac54f4496361569627e8c3c3fd8 /FS/FS/cdr
parentb078a4cb7efdf0da5b3995901b9f065ac338f6bd (diff)
RT# 74523 - added command line option to use a status table
Diffstat (limited to 'FS/FS/cdr')
-rw-r--r--FS/FS/cdr/Import.pm14
1 files changed, 7 insertions, 7 deletions
diff --git a/FS/FS/cdr/Import.pm b/FS/FS/cdr/Import.pm
index 5046caf..35069ae 100644
--- a/FS/FS/cdr/Import.pm
+++ b/FS/FS/cdr/Import.pm
@@ -45,7 +45,7 @@ sub dbi_import {
my %args = @_; #args are specifed by the script using this sub
my %opt; #opt is specified for each install / run of the script
- getopts('H:U:P:D:T:c:L:', \%opt);
+ getopts('H:U:P:D:T:c:L:S:', \%opt);
my $user = shift(@ARGV) or die $class->cli_usage;
$opt{D} ||= $args{database};
@@ -91,9 +91,9 @@ sub dbi_import {
#my @cols = values %{ $args{column_map} };
my $sql = "SELECT $table.* FROM $table "; # join(',', @cols). " FROM $table ".
- $sql .= 'LEFT JOIN '. $args{status_table}.
- " ON ( $table.$pkey = ". $args{status_table}. ".$pkey )"
- if $args{status_table};
+ $sql .= 'LEFT JOIN '. $opt{S}.
+ " ON ( $table.$pkey = ". $opt{S}. ".$pkey )"
+ if $opt{S};
$sql .= ' WHERE freesidestatus IS NULL ';
#$sql .= ' LIMIT '. $opt{L} if $opt{L};
@@ -141,10 +141,10 @@ sub dbi_import {
$imported++;
my $st_sql;
- if ( $args{status_table} ) {
+ if ( $opt{S} ) {
$st_sql =
- 'INSERT INTO '. $args{status_table}. " ( $pkey, freesidestatus ) ".
+ 'INSERT INTO '. $opt{S}. " ( $pkey, freesidestatus ) ".
" VALUES ( ?, 'done' )";
} else {
@@ -175,7 +175,7 @@ sub dbi_import {
sub cli_usage {
#"Usage: \n $0\n\t[ -H hostname ]\n\t-D database\n\t-U user\n\t-P password\n\tfreesideuser\n";
#"Usage: \n $0\n\t-H hostname\n\t-D database\n\t-U user\n\t-P password\n\t[ -c cdrtypenum ]\n\tfreesideuser\n";
- "Usage: \n $0\n\t-H hostname\n\t[ -D database ]\n\t-U user\n\t-P password\n\t[ -c cdrtypenum ]\n\t[ -L num_cdrs_limit ]\n\tfreesideuser\n";
+ "Usage: \n $0\n\t-H hostname\n\t[ -D database ]\n\t-U user\n\t-P password\n\t[ -c cdrtypenum ]\n\t[ -L num_cdrs_limit ]\n\t[ -T table ]\n\t[ -S status table ]\n\tfreesideuser\n";
}
=head1 BUGS