diff options
author | Mitch Jackson <mitch@freeside.biz> | 2018-11-30 02:15:19 -0500 |
---|---|---|
committer | Mitch Jackson <mitch@freeside.biz> | 2018-11-30 02:15:19 -0500 |
commit | fbaf3e9e3233bff32eded049ef9923b397e7c90c (patch) | |
tree | 1c6b2c66ee28cf7a52ef15a503d8689f4ef8b69c /FS/FS | |
parent | bb9e4d6e36cd509a307dbed69b2d3cee3078da17 (diff) |
Revert "RT# 79636,42357 Suppress $0.00 summary line items"
This reverts commit a66fcac48d676a3218f5d25aa270a2e18554acd5.
Diffstat (limited to 'FS/FS')
-rw-r--r-- | FS/FS/Template_Mixin.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/Template_Mixin.pm b/FS/FS/Template_Mixin.pm index 14999933c..d1d84a7c9 100644 --- a/FS/FS/Template_Mixin.pm +++ b/FS/FS/Template_Mixin.pm @@ -1088,7 +1088,7 @@ sub print_generic { } } else { # subtotal sectioning is the same as for the actual invoice sections - @summary_subtotals = grep $_->{subtotal}, @sections; + @summary_subtotals = @sections; } # Hereafter, push sections to both @sections and @summary_subtotals |