diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-02-25 19:31:40 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-02-25 19:31:40 -0800 |
commit | 789d0834df90e8930145946705357083cec67fe3 (patch) | |
tree | 3a42416511ec135624608197437ecad53cd69895 /FS/bin | |
parent | bf5576362a192f74efe6cedc4ff258842c34bbcd (diff) |
add domain and locale options to command-line phone number list, RT#21054
Diffstat (limited to 'FS/bin')
-rwxr-xr-x | FS/bin/freeside-phonenum_list | 28 |
1 files changed, 23 insertions, 5 deletions
diff --git a/FS/bin/freeside-phonenum_list b/FS/bin/freeside-phonenum_list index 029d0ed14..800056594 100755 --- a/FS/bin/freeside-phonenum_list +++ b/FS/bin/freeside-phonenum_list @@ -1,17 +1,21 @@ #!/usr/bin/perl use strict; -use vars qw( $opt_c $opt_p $opt_b $opt_d $opt_s $opt_t ); +use vars qw( $opt_c $opt_o $opt_l $opt_p $opt_b $opt_d $opt_s $opt_t ); use Getopt::Std; use FS::UID qw(adminsuidsetup); +use FS::Conf; use FS::Record qw(qsearch); use FS::svc_phone; -getopts('cp:b:d:s:t:'); +getopts('colp:b:d:s:t:'); my $user = shift or &usage; adminsuidsetup $user; +my $conf = new FS::Conf; +my $default_locale = $conf->config('locale') || 'en_US'; + my %search = (); $search{payby} = [ split(/\s*,\s*/, $opt_p) ] if $opt_p; @@ -24,11 +28,17 @@ my @svc_phone = qsearch( FS::svc_phone->search(\%search) ); foreach my $svc_phone (@svc_phone) { print $svc_phone->countrycode if $opt_c; - print $svc_phone->phonenum. "\n"; + print $svc_phone->phonenum; + print ','. $svc_phone->domain if $opt_o; + if ( $opt_l ) { + my $cust_pkg = $svc_phone->cust_svc->cust_pkg; + print ','. ($cust_pkg && $cust_pkg->cust_main->locale || $default_locale); + } + print "\n"; } sub usage { - die "usage: freeside-phonenum_list [ -c ] [ -p payby,payby... ] [ -b balance [ -d balance_days ] ] [ -s svcpart,svcpart... ] username \n"; + die "usage: freeside-phonenum_list [ -c ] [ -o ] [ -l ] [ -p payby,payby... ] [ -b balance [ -d balance_days ] ] [ -s svcpart,svcpart... ] username \n"; } =head1 NAME @@ -42,7 +52,15 @@ freeside-phonenum_list Command-line tool to list phone numbers. --c: Include country code in results +Display options: + +-c: Include country code + +-o: Include domain + +-l: Include customer locale + +Selection options: -p: Customer payby (CARD, BILL, etc.). Separate multiple values with commas. |