blob: 54af9dd80f3e761d1f72fc7a9ee7b2a2f7c6732d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
#!/usr/bin/perl -w
use strict;
use vars qw($opt_s $opt_u $opt_p);
use Getopt::Std;
use FS::UID qw(adminsuidsetup);
use FS::Record qw(qsearch qsearchs);
use FS::part_export;
use FS::svc_acct;
use FS::cust_svc;
my $user = shift or die &usage;
adminsuidsetup $user;
my $export_x = shift or die &usage;
my @part_export;
if ( $export_x =~ /^(\d+)$/ ) {
@part_export = qsearchs('part_export', { exportnum=>$1 } )
or die "exportnum $export_x not found\n";
} else {
@part_export = qsearch('part_export', { exporttype=>$export_x } )
or die "no exports of type $export_x found\n";
}
getopts('s:u:p:');
my @svc_x = ();
if ( $opt_s ) {
my $cust_svc = qsearchs('cust_svc', { svcnum=>$opt_s } )
or die "svcnum $opt_s not found\n";
push @svc_x, $cust_svc->svc_x;
} elsif ( $opt_u ) {
my $svc_x = qsearchs('svc_acct', { username=>$opt_u } )
or die "username $opt_u not found\n";
push @svc_x, $svc_x;
} elsif ( $opt_p ) {
push @svc_x, map { $_->svc_x } qsearch('cust_svc', { svcpart=>$opt_p } );
die "no services with svcpart $opt_p found\n" unless @svc_x;
}
foreach my $part_export ( @part_export ) {
foreach my $svc_x ( @svc_x ) {
my $error = $part_export->export_insert($svc_x);
die $error if $error;
}
}
sub usage {
die "Usage:\n\n freeside-reexport user exportnum|exporttype [ -s svcnum | -u username | -p svcpart ]\n";
}
=head1 NAME
freeside-reexport - Command line tool to re-trigger export jobs for existing services
=head1 SYNOPSIS
freeside-reexport user exportnum|exporttype [ -s svcnum | -u username | -p svcpart ]
=head1 DESCRIPTION
Re-queues the export job for the specified exportnum or exporttype(s) and
specified service (selected by svcnum or username).
=head1 SEE ALSO
L<freeside-sqlradius-reset>, L<FS::part_export>
=cut
|