[freeside-commits] freeside/FS/FS/Cron bill.pm, 1.6, 1.7 expire_user_pref.pm, NONE, 1.1
Ivan,,,
ivan at wavetail.420.am
Wed Aug 1 15:24:39 PDT 2007
- Previous message: [freeside-commits] freeside/FS MANIFEST, 1.113, 1.114 README, 1.1, NONE
- Next message: [freeside-commits] freeside/FS/FS AccessRight.pm, 1.21, 1.22 Conf.pm, 1.202, 1.203 Record.pm, 1.141, 1.142 Schema.pm, 1.60, 1.61 Setup.pm, 1.9, 1.10 access_group.pm, 1.2, 1.3 access_user.pm, 1.15, 1.16 access_user_pref.pm, 1.1, 1.2 agent.pm, 1.15, 1.16 cust_bill.pm, 1.174, 1.175 cust_credit.pm, 1.25, 1.26 cust_event.pm, NONE, 1.1 cust_main.pm, 1.293, 1.294 cust_pay.pm, 1.53, 1.54 cust_pay_batch.pm, 1.23, 1.24 cust_pkg.pm, 1.79, 1.80 cust_refund.pm, 1.29, 1.30 m2name_Common.pm, 1.1, 1.2 option_Common.pm, 1.7, 1.8 part_bill_event.pm, 1.27, 1.28 part_event.pm, NONE, 1.1 part_event_condition.pm, NONE, 1.1 part_event_condition_option.pm, NONE, 1.1 part_event_condition_option_option.pm, NONE, 1.1 part_event_option.pm, NONE, 1.1 pay_batch.pm, 1.11, 1.12 payby.pm, 1.11, 1.12 pkg_referral.pm, NONE, 1.1 svc_Common.pm, 1.41, 1.42 svc_acct.pm, 1.233, 1.234 svc_domain.pm, 1.48, 1.49 svc_forward.pm, 1.20, 1.21 svc_www.pm, 1.15, 1.16
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /home/cvs/cvsroot/freeside/FS/FS/Cron
In directory wavetail:/tmp/cvs-serv23435/FS/FS/Cron
Modified Files:
bill.pm
Added Files:
expire_user_pref.pm
Log Message:
event refactor, landing on HEAD!
--- NEW FILE: expire_user_pref.pm ---
package FS::Cron::expire_user_pref;
use vars qw( @ISA @EXPORT_OK);
use Exporter;
use FS::UID qw(dbh);
@ISA = qw( Exporter );
@EXPORT_OK = qw( expire_user_pref );
sub expire_user_pref {
my $sql = "DELETE FROM access_user_pref WHERE expiration IS NOT NULL".
" AND expiration < ?";
my $sth = dbh->prepare($sql) or die dbh->errstr;
$sth->execute(time) or die $sth->errstr;
}
1;
Index: bill.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/Cron/bill.pm,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- bill.pm 13 Jul 2007 23:52:21 -0000 1.6
+++ bill.pm 1 Aug 2007 22:24:37 -0000 1.7
@@ -6,6 +6,8 @@
use Date::Parse;
use FS::Record qw(qsearch qsearchs);
use FS::cust_main;
+use FS::part_event;
+use FS::part_event_condition;
@ISA = qw( Exporter );
@EXPORT_OK = qw ( bill );
@@ -14,7 +16,11 @@
my %opt = @_;
+ my $check_freq = $opt{'check_freq'} || '1d';
+
$FS::cust_main::DEBUG = 1 if $opt{'v'};
+ $FS::cust_main::DEBUG = $opt{'l'} if $opt{'l'};
+ #$FS::cust_event::DEBUG = $opt{'l'} if $opt{'l'};
my %search = ();
$search{'payby'} = $opt{'p'} if $opt{'p'};
@@ -38,91 +44,76 @@
)
)
END
-
- # or
- my $where_bill_event = <<"END";
- 0 < ( select count(*) from cust_bill
- where cust_main.custnum = cust_bill.custnum
- and 0 < charged
- - coalesce(
- ( select sum(amount) from cust_bill_pay
- where cust_bill.invnum = cust_bill_pay.invnum )
- ,0
- )
- - coalesce(
- ( select sum(amount) from cust_credit_bill
- where cust_bill.invnum = cust_credit_bill.invnum )
- ,0
- )
- and 0 < ( select count(*) from part_bill_event
- where payby = cust_main.payby
- and ( disabled is null or disabled = '' )
- and seconds <= $time - cust_bill._date
- and 0 = ( select count(*) from cust_bill_event
- where cust_bill.invnum = cust_bill_event.invnum
- and part_bill_event.eventpart = cust_bill_event.eventpart
- and status = 'done'
- )
-
- )
- )
-END
-
- my $extra_sql = ( scalar(%search) ? ' AND ' : ' WHERE ' ). "( $where_pkg OR $where_bill_event )";
-
+
+ my $where_event = join(' OR ', map {
+ my $eventtable = $_;
+
+ my $join = FS::part_event_condition->join_conditions_sql( $eventtable );
+ my $where = FS::part_event_condition->where_conditions_sql( $eventtable,
+ 'time'=>$time,
+ );
+
+ my $are_part_event =
+ "0 < ( SELECT COUNT(*) FROM part_event $join
+ WHERE check_freq = '$check_freq'
+ AND eventtable = '$eventtable'
+ AND ( disabled = '' OR disabled IS NULL )
+ AND $where
+ )
+ ";
+
+ if ( $eventtable eq 'cust_main' ) {
+ $are_part_event;
+ } else {
+ "0 < ( SELECT COUNT(*) FROM $eventtable
+ WHERE cust_main.custnum = $eventtable.custnum
+ AND $are_part_event
+ )
+ ";
+ }
+
+ } FS::part_event->eventtables);
+
+ my $extra_sql = ( scalar(%search) ? ' AND ' : ' WHERE ' ).
+ "( $where_pkg OR $where_event )";
+
my @cust_main;
if ( @ARGV ) {
@cust_main = map { qsearchs('cust_main', { custnum => $_, %search } ) } @ARGV
} else {
- @cust_main = qsearch('cust_main', \%search, '', $extra_sql );
+
+ warn "searching for customers:\n".
+ join("\n", map " $_ => ".$search{$_}, keys %search). "\n".
+ " $extra_sql\n"
+ if $opt{'v'} || $opt{'l'};
+
+ @cust_main = qsearch({
+ 'table' => 'cust_main',
+ 'hashref' => \%search,
+ 'extra_sql' => $extra_sql,
+ });
+
}
- ;
my($cust_main,%saw);
foreach $cust_main ( @cust_main ) {
- my $custnum = $cust_main->custnum;
-
- # $^T not $time because -d is for pre-printing invoices
- foreach my $cust_pkg (
- grep { $_->expire && $_->expire <= $^T } $cust_main->ncancelled_pkgs
- ) {
- my $error = $cust_pkg->cancel;
- warn "Error cancelling expired pkg ". $cust_pkg->pkgnum.
- " for custnum $custnum: $error"
- if $error;
- }
- # $^T not $time because -d is for pre-printing invoices
- foreach my $cust_pkg (
- grep { ( $_->part_pkg->is_prepaid && $_->bill && $_->bill < $^T
- || $_->adjourn && $_->adjourn <= $^T
- )
- && ! $_->susp
- }
- $cust_main->ncancelled_pkgs
- ) {
- my $action = $cust_pkg->part_pkg->option('recur_action') || 'suspend';
- my $error = $cust_pkg->$action();
- warn "Error suspending package ". $cust_pkg->pkgnum.
- " for custnum $custnum: $error"
- if $error;
+ if ( $opt{'m'} ) {
+
+ die "XXX multi-process mode not yet completed";
+ #add job to queue that calls bill_and_collect with options
+
+ } else {
+
+ $cust_main->bill_and_collect(
+ 'time' => $time,
+ 'invoice_time' => $invoice_time,
+ 'check_freq' => $check_freq,
+ 'resetup' => $opt{'s'},
+ );
+
}
-
- my $error = $cust_main->bill( 'time' => $time,
- 'invoice_time' => $invoice_time,
- 'resetup' => $opt{'s'},
- );
- warn "Error billing, custnum $custnum: $error" if $error;
-
- $error = $cust_main->apply_payments_and_credits;
- warn "Error applying payments and credits, custnum $custnum: $error"
- if $error;
-
- $error = $cust_main->collect( 'invoice_time' => $time,
- 'freq' => $opt{'freq'},
- );
- warn "Error collecting, custnum $custnum: $error" if $error;
-
+
}
}
- Previous message: [freeside-commits] freeside/FS MANIFEST, 1.113, 1.114 README, 1.1, NONE
- Next message: [freeside-commits] freeside/FS/FS AccessRight.pm, 1.21, 1.22 Conf.pm, 1.202, 1.203 Record.pm, 1.141, 1.142 Schema.pm, 1.60, 1.61 Setup.pm, 1.9, 1.10 access_group.pm, 1.2, 1.3 access_user.pm, 1.15, 1.16 access_user_pref.pm, 1.1, 1.2 agent.pm, 1.15, 1.16 cust_bill.pm, 1.174, 1.175 cust_credit.pm, 1.25, 1.26 cust_event.pm, NONE, 1.1 cust_main.pm, 1.293, 1.294 cust_pay.pm, 1.53, 1.54 cust_pay_batch.pm, 1.23, 1.24 cust_pkg.pm, 1.79, 1.80 cust_refund.pm, 1.29, 1.30 m2name_Common.pm, 1.1, 1.2 option_Common.pm, 1.7, 1.8 part_bill_event.pm, 1.27, 1.28 part_event.pm, NONE, 1.1 part_event_condition.pm, NONE, 1.1 part_event_condition_option.pm, NONE, 1.1 part_event_condition_option_option.pm, NONE, 1.1 part_event_option.pm, NONE, 1.1 pay_batch.pm, 1.11, 1.12 payby.pm, 1.11, 1.12 pkg_referral.pm, NONE, 1.1 svc_Common.pm, 1.41, 1.42 svc_acct.pm, 1.233, 1.234 svc_domain.pm, 1.48, 1.49 svc_forward.pm, 1.20, 1.21 svc_www.pm, 1.15, 1.16
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the freeside-commits
mailing list