diff options
author | Jeremy Davis <jeremyd@freeside.biz> | 2014-11-24 10:33:48 -0500 |
---|---|---|
committer | Jeremy Davis <jeremyd@freeside.biz> | 2014-11-24 10:33:48 -0500 |
commit | b5037970e79b6488263ccd196ddc07f3d38e802a (patch) | |
tree | 920fe73b0a01cdea66755afd20e91459615c012a | |
parent | a3b7282fda1955c41e97b619ba4e27af39e8afaf (diff) |
#32332 allow recurring packages to be removed from quotes
-rw-r--r-- | FS/FS/Template_Mixin.pm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/FS/FS/Template_Mixin.pm b/FS/FS/Template_Mixin.pm index 0928ee52f..7018223b4 100644 --- a/FS/FS/Template_Mixin.pm +++ b/FS/FS/Template_Mixin.pm @@ -2740,6 +2740,10 @@ sub _items_cust_bill_pkg { 'pkgnum' => $cust_bill_pkg->pkgpart, #so it displays in Ref 'description' => "$desc (". $cust_bill_pkg->part_pkg->freq_pretty.")", 'amount' => sprintf("%.2f", $cust_bill_pkg->recur), + 'preref_html' => ( $opt{preref_callback} + ? &{ $opt{preref_callback} }( $cust_bill_pkg ) + : '' + ), }; } |