From: Ivan Kohler Date: Tue, 26 Sep 2017 18:38:49 +0000 (-0700) Subject: fix import of 0 custom price, RT#76992 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=1bc76eeede2fcdea26a9e634409445626f53cdc9;hp=1e7799dd8dd3fd1eda7b22e98edd7ae4702e2beb fix import of 0 custom price, RT#76992 --- diff --git a/FS/FS/cust_pkg/Import.pm b/FS/FS/cust_pkg/Import.pm index 3cf38cd41..b827bcfe1 100644 --- a/FS/FS/cust_pkg/Import.pm +++ b/FS/FS/cust_pkg/Import.pm @@ -141,15 +141,15 @@ warn join('-', @location_params); my $s = $param->{'quan_price.setup_fee'}; my $r = $param->{'quan_price.recur_fee'}; my $part_pkg = $record->part_pkg; - if ( ( $s && $s != $part_pkg->option('setup_fee') ) - or ( $r && $r != $part_pkg->option('recur_fee') ) + if ( ( length($s) && $s != $part_pkg->option('setup_fee') ) + or ( length($r) && $r != $part_pkg->option('recur_fee') ) ) { my $custom_part_pkg = $part_pkg->clone; $custom_part_pkg->disabled('Y'); my %options = $part_pkg->options; - $options{'setup_fee'} = $s if $s; - $options{'recur_fee'} = $r if $r; + $options{'setup_fee'} = $s if length($s); + $options{'recur_fee'} = $r if length($r); my $error = $custom_part_pkg->insert( options=>\%options ); return "error customizing package: $error" if $error; $record->pkgpart( $custom_part_pkg->pkgpart );