From: ivan Date: Fri, 25 Feb 2005 20:21:15 +0000 (+0000) Subject: oops, need to check this in, adding "options" option to part_pkg::insert to specify... X-Git-Tag: BEFORE_FINAL_MASONIZE~698 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=fe9ee3d7adb3f651613db5d0ccfd242459dcd10d oops, need to check this in, adding "options" option to part_pkg::insert to specify part_pkg_option records --- diff --git a/FS/FS/part_pkg.pm b/FS/FS/part_pkg.pm index f210a67d4..63cf00f57 100644 --- a/FS/FS/part_pkg.pm +++ b/FS/FS/part_pkg.pm @@ -116,8 +116,8 @@ sub clone { Adds this package definition to the database. If there is an error, returns the error, otherwise returns false. -Currently available options are: I, I, I and -I. +Currently available options are: I, I, I, +I and I. If I is set to a hashref with svcparts as keys and quantities as values, appropriate FS::pkg_svc records will be inserted. @@ -131,6 +131,9 @@ record itself), the object will be updated to point to this package definition. In conjunction with I, if I is set to a scalar reference, the scalar will be updated with the custnum value from the cust_pkg record. +If I is set to a hashref of options, appropriate FS::part_pkg_option +records will be inserted. + =cut sub insert { @@ -163,7 +166,8 @@ sub insert { } if ( $plandata ) { - warn " inserting part_pkg_option records for plandata" if $DEBUG; + + warn " inserting part_pkg_option records for plandata" if $DEBUG; foreach my $part_pkg_option ( map { /^(\w+)=(.*)$/ or do { $dbh->rollback if $oldAutoCommit; return "illegal plandata: $plandata"; @@ -182,6 +186,27 @@ sub insert { return $error; } } + + } elsif ( $options{'options'} ) { + + warn " inserting part_pkg_option records for options hashref" if $DEBUG; + foreach my $optionname ( %{$options{'options'}} ) { + + my $part_pkg_option = + new FS::part_pkg_option { + 'pkgpart' => $self->pkgpart, + 'optionname' => $optionname, + 'optionvalue' => $options{'options'}->{$optionname}, + }; + + my $error = $part_pkg_option->insert; + if ( $error ) { + $dbh->rollback if $oldAutoCommit; + return $error; + } + + } + } my $conf = new FS::Conf;