diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2016-04-26 20:39:13 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2016-04-26 20:39:13 -0500 |
commit | e50c06b014a5727385087fac381f978603e227ad (patch) | |
tree | 167244952d185472c9de687fe5ba67218c59abea /FS/FS/Template_Mixin.pm | |
parent | 08d94428f0807c3ae2921b5c1f4fe40b5631365f (diff) |
RT#39819: Packages with Show zero setup/recurring do not print on quotations [v3 only]
Diffstat (limited to 'FS/FS/Template_Mixin.pm')
-rw-r--r-- | FS/FS/Template_Mixin.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/Template_Mixin.pm b/FS/FS/Template_Mixin.pm index 031c1f25c..5e79ae18b 100644 --- a/FS/FS/Template_Mixin.pm +++ b/FS/FS/Template_Mixin.pm @@ -3285,7 +3285,7 @@ sub _items_cust_bill_pkg { my @details = $cust_bill_pkg->details; # and I guess they're never bundled either? - if ( $cust_bill_pkg->setup != 0 ) { + if (( $cust_bill_pkg->setup != 0 ) || ( $cust_bill_pkg->setup_show_zero )) { my $description = $desc; $description .= ' Setup' if $cust_bill_pkg->recur != 0 @@ -3306,7 +3306,7 @@ sub _items_cust_bill_pkg { ), }; } - if ( $cust_bill_pkg->recur != 0 ) { + if (( $cust_bill_pkg->recur != 0 ) || ( $cust_bill_pkg->recur_show_zero )) { #push @b, { $r = { 'pkgnum' => $cust_bill_pkg->pkgpart, #so it displays in Ref |