[freeside-commits] freeside/FS/FS part_pkg.pm, 1.111.2.9, 1.111.2.10
Ivan,,,
ivan at wavetail.420.am
Thu Sep 8 15:04:09 PDT 2011
- Previous message: [freeside-commits] freeside/FS/FS part_pkg.pm,1.123.2.2,1.123.2.3
- Next message: [freeside-commits] freeside/FS/FS/part_pkg delayed_Mixin.pm, 1.2, 1.3 discount_Mixin.pm, 1.9, 1.10 flat.pm, 1.66, 1.67 global_Mixin.pm, 1.1, 1.2 prorate_Mixin.pm, 1.15, 1.16 sql_external.pm, 1.15, 1.16 usage_Mixin.pm, 1.1, 1.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /home/cvs/cvsroot/freeside/FS/FS
In directory wavetail.420.am:/tmp/cvs-serv19719
Modified Files:
Tag: FREESIDE_2_1_BRANCH
part_pkg.pm
Log Message:
fix very obsolote eval callbacks for part_pkg.setup and recur, RT#14372
Index: part_pkg.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/part_pkg.pm,v
retrieving revision 1.111.2.9
retrieving revision 1.111.2.10
diff -u -w -d -r1.111.2.9 -r1.111.2.10
--- part_pkg.pm 11 Aug 2011 00:38:59 -0000 1.111.2.9
+++ part_pkg.pm 8 Sep 2011 22:04:07 -0000 1.111.2.10
@@ -782,10 +782,7 @@
sub is_free {
my $self = shift;
- unless ( $self->plan ) {
- $self->setup =~ /^\s*0+(\.0*)?\s*$/
- && $self->recur =~ /^\s*0+(\.0*)?\s*$/;
- } elsif ( $self->can('is_free_options') ) {
+ if ( $self->can('is_free_options') ) {
not grep { $_ !~ /^\s*0*(\.0*)?\s*$/ }
map { $self->option($_) }
$self->is_free_options;
@@ -1195,38 +1192,11 @@
$self;
}
-#fallbacks that eval the setup and recur fields, for backwards compat
-
-sub calc_setup {
- my $self = shift;
- warn 'no price plan class for '. $self->plan. ", eval-ing setup\n";
- $self->_calc_eval('setup', @_);
-}
-
-sub calc_recur {
- my $self = shift;
- warn 'no price plan class for '. $self->plan. ", eval-ing recur\n";
- $self->_calc_eval('recur', @_);
-}
-
-use vars qw( $sdate @details );
-sub _calc_eval {
- #my( $self, $field, $cust_pkg ) = @_;
- my( $self, $field, $cust_pkg, $sdateref, $detailsref ) = @_;
- *sdate = $sdateref;
- *details = $detailsref;
- $self->$field() =~ /^(.*)$/
- or die "Illegal $field (pkgpart ". $self->pkgpart. '): '.
- $self->$field(). "\n";
- my $prog = $1;
- return 0 if $prog =~ /^\s*$/;
- my $value = eval $prog;
- die $@ if $@;
- $value;
-}
+#fatal fallbacks
+sub calc_setup { die 'no calc_setup for '. shift->plan. "\n"; }
+sub calc_recur { die 'no calc_recur for '. shift->plan. "\n"; }
#fallback that return 0 for old legacy packages with no plan
-
sub calc_remain { 0; }
sub calc_cancel { 0; }
sub calc_units { 0; }
- Previous message: [freeside-commits] freeside/FS/FS part_pkg.pm,1.123.2.2,1.123.2.3
- Next message: [freeside-commits] freeside/FS/FS/part_pkg delayed_Mixin.pm, 1.2, 1.3 discount_Mixin.pm, 1.9, 1.10 flat.pm, 1.66, 1.67 global_Mixin.pm, 1.1, 1.2 prorate_Mixin.pm, 1.15, 1.16 sql_external.pm, 1.15, 1.16 usage_Mixin.pm, 1.1, 1.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the freeside-commits
mailing list