summaryrefslogtreecommitdiff
path: root/bin/cust_pkg-restore_setup
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2013-07-23 21:14:54 -0700
committerIvan Kohler <ivan@freeside.biz>2013-07-23 21:14:54 -0700
commita940c3bf8468cca2b8910516b4bee8d7390e7f78 (patch)
treea522ce760697021fd1a63b89183385325d4c33c6 /bin/cust_pkg-restore_setup
parent04e3881b4d2d515464eec0573782d4eac7e08e7c (diff)
script to restore removed setup dates, RT#24130
Diffstat (limited to 'bin/cust_pkg-restore_setup')
-rwxr-xr-xbin/cust_pkg-restore_setup119
1 files changed, 119 insertions, 0 deletions
diff --git a/bin/cust_pkg-restore_setup b/bin/cust_pkg-restore_setup
new file mode 100755
index 0000000..5467ead
--- /dev/null
+++ b/bin/cust_pkg-restore_setup
@@ -0,0 +1,119 @@
+#!/usr/bin/perl
+
+use strict;
+use vars qw( $opt_s $opt_e $opt_r $opt_u $opt_c );
+use Getopt::Std;
+use Date::Parse qw(str2time);
+use Date::Format;
+use FS::UID qw(adminsuidsetup dbh);
+use FS::Record qw(qsearch qsearchs);
+use FS::cust_pkg;
+use FS::h_cust_pkg;
+
+getopts('s:e:ruc');
+
+my $user = shift or &usage;
+adminsuidsetup $user;
+
+my $sdate = $opt_s ? str2time($opt_s) : 0;
+my $edate = $opt_e ? str2time($opt_e) + 86399 #not strictly correct on time zone boundary days, but good enough for this purpose
+ : 2147397248;
+
+my $oldAutoCommit = $FS::UID::AutoCommit;
+local $FS::UID::AutoCommit = 0;
+my $dbh = dbh;
+
+my $fuzz = 2;
+
+my $changed = 0;
+
+foreach my $cust_pkg (
+ qsearch({ table => 'cust_pkg',
+ hashref => {
+ setup => '',
+ },
+ })
+) {
+
+ #XXX only canceled packages?
+ #XXX only suspended packages?
+
+ my $h_cust_pkg =
+ qsearchs({ table => 'h_cust_pkg',
+ hashref => {
+ pkgnum => $cust_pkg->pkgnum,
+ history_action => 'replace_old',
+ setup => { op=>'!=', value=>'' },
+ ($opt_u ? ('susp' => { op=>'!=', value=>'' })
+ : ()
+ ),
+ ($opt_c ? ('cancel' => { op=>'!=', value=>'' })
+ : ()
+ ),
+ },
+ extra_sql => ' AND history_date >= ? AND history_date <= ? ',
+ extra_param => [ [$sdate,'int'], [$edate,'int'] ],
+ order_by => 'ORDER BY history_date DESC LIMIT 1',
+ })
+ or next;
+
+ $changed++;
+
+ #if ( $opt_r ) {
+ print "restoring setup for pkgnum ". $cust_pkg->pkgnum.
+ " (custnum ". $cust_pkg->custnum.
+ ") to ". time2str('%D', $h_cust_pkg->setup). "\n";
+ #}
+
+ $cust_pkg->set('setup', $h_cust_pkg->setup);
+ my $error = $cust_pkg->replace;
+ die $error if $error;
+
+}
+
+if ( $opt_r ) {
+ $dbh->rollback or die $dbh->errstr; #if $oldAutoCommit;
+} else {
+ $dbh->commit or die $dbh->errstr; #if $oldAutoCommit;
+}
+
+print "changed $changed packages\n";
+
+sub usage {
+ die "usage: cust_pkg-restore_setup [ -s history_start ] [ -e history_end ] [-r ] employee_username\n";
+}
+
+=head1 NAME
+
+cust_pkg-restore_setup
+
+=head1 SYNOPSIS
+
+ cust_pkg-restore_setup -d date -u history_username [ -r ] employee_username
+
+=head1 DESCRIPTION
+
+Command-line tool to restore removed setup dates.
+
+-s: Start date of time period to restore changes from
+
+-e: End date of time period to restore changes from
+
+-u: sUspended packages only
+
+-c: Cancelled packages only
+
+-r: dRy run
+
+employee_username
+
+=head1 BUGS
+
+=head1 SEE ALSO
+
+L<FS::part_pkg>
+
+=cut
+
+1;
+