X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2Fcust_main%2FPackages.pm;h=d7a1e928a841a5c2aa853b2681791b766691196f;hp=41ef2289422a8d002fc57331ad962b03292f00ec;hb=dcc681be581db6779de6cf71f94ad2ea28614bed;hpb=1daf1a670d3cdfb307271fb7c7c98c83fb1fb464 diff --git a/FS/FS/cust_main/Packages.pm b/FS/FS/cust_main/Packages.pm index 41ef22894..d7a1e928a 100644 --- a/FS/FS/cust_main/Packages.pm +++ b/FS/FS/cust_main/Packages.pm @@ -1,7 +1,6 @@ package FS::cust_main::Packages; use strict; -use vars qw( $DEBUG $me ); use List::Util qw( min ); use FS::UID qw( dbh ); use FS::Record qw( qsearch qsearchs ); @@ -10,8 +9,7 @@ use FS::cust_svc; use FS::contact; # for attach_pkgs use FS::cust_location; # -$DEBUG = 0; -$me = '[FS::cust_main::Packages]'; +our ($DEBUG, $me) = (0, '[FS::cust_main::Packages]'); =head1 NAME @@ -59,6 +57,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 +88,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'} || []; @@ -130,13 +139,10 @@ sub order_pkg { } elsif ( $opt->{'cust_location'} ) { - if ( ! $opt->{'cust_location'}->locationnum ) { - # not inserted yet - my $error = $opt->{'cust_location'}->insert; - if ( $error ) { - $dbh->rollback if $oldAutoCommit; - return "inserting cust_location (transaction rolled back): $error"; - } + my $error = $opt->{'cust_location'}->find_or_insert; + if ( $error ) { + $dbh->rollback if $oldAutoCommit; + return "inserting cust_location (transaction rolled back): $error"; } $cust_pkg->locationnum($opt->{'cust_location'}->locationnum); @@ -186,20 +192,16 @@ sub order_pkg { 'pkglinknum' => $link->pkglinknum, 'custnum' => $self->custnum, 'main_pkgnum' => $cust_pkg->pkgnum, - 'locationnum' => $cust_pkg->locationnum, # 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; return "inserting supplemental package: $error"; @@ -231,14 +233,15 @@ Services can be new, in which case they are inserted, or existing unaudited services, in which case they are linked to the newly-created package. Currently available options are: I, I, I, -I, I, and I. +I, I, I, and I. If I is set, all provisioning jobs will have a dependancy 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 @@ -248,6 +251,8 @@ If I, I, I, or I is provided, the scalars (provided by references) will be incremented by the values of the prepaid card.` +I is passed to L->insert. + =cut sub order_pkgs { @@ -280,7 +285,7 @@ sub order_pkgs { 'cust_pkg' => $cust_pkg, 'svcs' => $cust_pkgs->{$cust_pkg}, map { $_ => $options{$_} } - qw( seconds_ref upbytes_ref downbytes_ref totalbytes_ref depend_jobnum ) + qw( seconds_ref upbytes_ref downbytes_ref totalbytes_ref depend_jobnum allow_pkgpart ) ); if ( $error ) { $dbh->rollback if $oldAutoCommit; @@ -504,8 +509,9 @@ sub sort_packages { return 0 if !$a_num_cust_svc && !$b_num_cust_svc; return -1 if $a_num_cust_svc && !$b_num_cust_svc; return 1 if !$a_num_cust_svc && $b_num_cust_svc; - my @a_cust_svc = $a->cust_svc; - my @b_cust_svc = $b->cust_svc; + return 0 if $a_num_cust_svc + $b_num_cust_svc > 20; #for perf, just give up + my @a_cust_svc = $a->cust_svc_unsorted; + my @b_cust_svc = $b->cust_svc_unsorted; return 0 if !scalar(@a_cust_svc) && !scalar(@b_cust_svc); return -1 if scalar(@a_cust_svc) && !scalar(@b_cust_svc); return 1 if !scalar(@a_cust_svc) && scalar(@b_cust_svc);