X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fcust_main%2FPackages.pm;h=bea4c026038f7c3ad786b8c762a88d73351dad04;hb=627d6da8386f7390025bd9647f01e94e6cab3f5a;hp=7bb32726c7e211159159c0efaacf46ad3358a29f;hpb=8b22ad69bf38267f34077a82e088dae515d3337e;p=freeside.git diff --git a/FS/FS/cust_main/Packages.pm b/FS/FS/cust_main/Packages.pm index 7bb32726c..bea4c0260 100644 --- a/FS/FS/cust_main/Packages.pm +++ b/FS/FS/cust_main/Packages.pm @@ -59,6 +59,15 @@ jobs will have a dependancy on the supplied job (they will not run until the specific job completes). This can be used to defer provisioning until some action completes (such as running the customer's credit card successfully). +=item noexport + +This option is option is deprecated but still works for now (use +I instead for new code). If I is set true, no +provisioning jobs (exports) are scheduled. (You can schedule them later with +the B method for each cust_pkg object. Using the B method +on the cust_main object is not recommended, as existing services will also be +reexported.) + =item ticket_subject Optional subject for a ticket created and attached to this customer @@ -81,6 +90,8 @@ sub order_pkg { join(', ', map { "$_: $opt->{$_}" } keys %$opt ). "\n" if $DEBUG; + local $FS::svc_Common::noexport_hack = 1 if $opt->{'noexport'}; + my $cust_pkg = $opt->{'cust_pkg'}; my $svcs = $opt->{'svcs'} || []; @@ -184,18 +195,14 @@ sub order_pkg { 'custnum' => $self->custnum, 'main_pkgnum' => $cust_pkg->pkgnum, # try to prevent as many surprises as possible - 'pkgbatch' => $cust_pkg->pkgbatch, - 'start_date' => $cust_pkg->start_date, - 'order_date' => $cust_pkg->order_date, - 'expire' => $cust_pkg->expire, - 'adjourn' => $cust_pkg->adjourn, - 'contract_end' => $cust_pkg->contract_end, - 'refnum' => $cust_pkg->refnum, - 'discountnum' => $cust_pkg->discountnum, - 'waive_setup' => $cust_pkg->waive_setup, 'allow_pkgpart' => $opt->{'allow_pkgpart'}, + map { $_ => $cust_pkg->$_() } + qw( pkgbatch + start_date order_date expire adjourn contract_end + refnum discountnum waive_setup + ) }); - $error = $self->order_pkg('cust_pkg' => $pkg, + $error = $self->order_pkg('cust_pkg' => $pkg, 'locationnum' => $cust_pkg->locationnum); if ( $error ) { $dbh->rollback if $oldAutoCommit; @@ -235,7 +242,8 @@ on the supplied jobnum (they will not run until the specific job completes). This can be used to defer provisioning until some action completes (such as running the customer's credit card successfully). -The I option is deprecated. If I is set true, no +The I option is deprecated but still works for now (use +I instead for new code). If I is set true, no provisioning jobs (exports) are scheduled. (You can schedule them later with the B method for each cust_pkg object. Using the B method on the cust_main object is not recommended, as existing services will also be @@ -566,6 +574,21 @@ sub active_pkgs { $self->unsuspended_pkgs; } +=item ncancelled_active_pkgs + +Returns all non-cancelled packages (see L) for this customer that +are active (recurring). + +=cut + +sub ncancelled_active_pkgs { + my $self = shift; + grep { my $part_pkg = $_->part_pkg; + $part_pkg->freq ne '' && $part_pkg->freq ne '0'; + } + $self->ncancelled_pkgs; +} + =item billing_pkgs Returns active packages, and also any suspended packages which are set to