From f04616ad2c32641c1b85820cb97bcb22edbbc9f5 Mon Sep 17 00:00:00 2001 From: ivan Date: Fri, 9 Oct 2009 21:37:02 +0000 Subject: [PATCH] add cust_pkg_ref option to charge --- FS/FS/cust_main.pm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm index 8dcbd8d71..9d40e7306 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -7169,6 +7169,9 @@ New-style, with a hashref of options: #vendor taxation 'taxproduct' => 2, #part_pkg_taxproduct 'override' => {}, #XXX describe + + #will be filled in with the new object + 'cust_pkg_ref' => \$cust_pkg, } ); @@ -7184,6 +7187,7 @@ sub charge { my ( $pkg, $comment, $additional ); my ( $setuptax, $taxclass ); #internal taxes my ( $taxproduct, $override ); #vendor (CCH) taxes + my $cust_pkg_ref = ''; if ( ref( $_[0] ) ) { $amount = $_[0]->{amount}; $quantity = exists($_[0]->{quantity}) ? $_[0]->{quantity} : 1; @@ -7197,6 +7201,7 @@ sub charge { $additional = $_[0]->{additional} || []; $taxproduct = $_[0]->{taxproductnum}; $override = { '' => $_[0]->{tax_override} }; + $cust_pkg_ref = exists($_[0]->{cust_pkg_ref}) ? $_[0]->{cust_pkg_ref} : ''; } else { $amount = shift; $quantity = 1; @@ -7268,6 +7273,8 @@ sub charge { if ( $error ) { $dbh->rollback if $oldAutoCommit; return $error; + } elsif ( $cust_pkg_ref ) { + ${$cust_pkg_ref} = $cust_pkg; } $dbh->commit or die $dbh->errstr if $oldAutoCommit; -- 2.11.0