Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions FS/FS/Template_Mixin.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1240,6 +1240,9 @@ sub print_generic {
if ( $section_with_taxes && ref $line_item->{pkg_tax} ) {
for my $line_tax ( @{$ line_item->{pkg_tax} } ) {

# Verify $line_tax is a HASH
next unless ref $line_tax eq 'HASH';

# It is rarely possible for the same tax record to be presented here
# multiple times. See cust_bill_pkg::_pkg_tax_list for more info
next if $seen_tax_lines{ $line_tax->{billpkgtaxlocationnum} };
Expand Down