diff options
author | Mark Wells <mark@freeside.biz> | 2015-09-10 16:27:43 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2015-09-10 16:27:51 -0700 |
commit | 9896275b96170e2a97e313e64c7aa5bfaf12a087 (patch) | |
tree | fe08862d6d8913aeae922df0539f4dec1243f19d /FS/FS/Template_Mixin.pm | |
parent | 8d76610b4329151076c7e2b81891406df36d18bb (diff) |
improve usage_class_summary with number of calls and total minutes, #37122
Diffstat (limited to 'FS/FS/Template_Mixin.pm')
-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 e9b60a86c..206c03cde 100644 --- a/FS/FS/Template_Mixin.pm +++ b/FS/FS/Template_Mixin.pm @@ -1519,7 +1519,7 @@ sub print_generic { # usage subtotals if ( $conf->exists('usage_class_summary') and $self->can('_items_usage_class_summary') ) { - my @usage_subtotals = $self->_items_usage_class_summary(escape => $escape_function); + my @usage_subtotals = $self->_items_usage_class_summary(escape => $escape_function, 'money_char' => $other_money_char); if ( @usage_subtotals ) { unshift @sections, $usage_subtotals[0]->{section}; # do not summarize unshift @detail_items, @usage_subtotals; |