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:28:33 -0700 |
commit | f023ced4d618137a5e2f1d3d519d23ecdeb7fc7d (patch) | |
tree | 17fd0ff931806ab790f3a47c05503ead2f3e9045 /FS/FS/Template_Mixin.pm | |
parent | ba74d54e5955b22ab4b20f73c408eede3bfbe23f (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; |