7 use FS::UID qw(adminsuidsetup);
8 use FS::Record qw(qsearch qsearchs);
11 &untaint_argv; #what it sounds like (eww)
12 use vars qw($opt_d $opt_v);
14 my $user = shift or die &usage;
18 $FS::cust_main::Debug = 1 if $opt_v;
21 ? map { qsearchs('cust_main', { custnum => $_ } ) } @ARGV
22 : qsearch('cust_main', {} )
25 #we're at now now (and later).
26 my($time)= $opt_d ? str2time($opt_d) : $^T;
29 foreach $cust_main ( @cust_main ) {
33 $error = $cust_main->bill( 'time' => $time );
34 warn "Error billing, custnum ". $cust_main->custnum. ": $error" if $error;
36 $cust_main->apply_payments;
37 $cust_main->apply_credits;
39 $error=$cust_main->collect( 'invoice_time' => $time );
40 warn "Error collecting, custnum". $cust_main->custnum. ": $error" if $error;
47 foreach $_ ( $[ .. $#ARGV ) { #untaint @ARGV
48 #$ARGV[$_] =~ /^([\w\-\/]*)$/ || die "Illegal arguement \"$ARGV[$_]\"";
50 $ARGV[$_] =~ /^(.*)$/ || die "Illegal arguement \"$ARGV[$_]\"";
56 die "Usage:\n\n freeside-daily [ -d 'date' ] user [ custnum custnum ... ]\n";
61 freeside-daily - Run daily billing and invoice collection events.
65 freeside-daily [ -d 'date' ] user [ custnum custnum ... ]
69 Bills customers and runs invoice collection events. Should be run from
72 This script replaces freeside-bill from 1.3.1.
74 Bills customers. Searches for customers who are due for billing and calls
75 the bill and collect methods of a cust_main object. See L<FS::cust_main>.
77 -d: Pretend it's 'date'. Date is in any format Date::Parse is happy with,
80 user: From the mapsecrets file - see config.html from the base documentation
82 custnum: if one or more customer numbers are specified, only bills those
83 customers. Otherwise, bills all customers.
89 L<FS::cust_main>, config.html from the base documentation