diff options
| author | Alex Brelsfoard <alex@freeside.biz> | 2015-02-10 00:11:07 -0500 |
|---|---|---|
| committer | Alex Brelsfoard <alex@freeside.biz> | 2015-02-10 00:11:07 -0500 |
| commit | ec7e8155fce544f19f2b6734476ed6db8c200aa9 (patch) | |
| tree | 8b336b67d075006b6fcbcaa110307cc2413f5554 /conf/invoice_html | |
| parent | d422d2530bda9de3af830f1e1ab1084061b486f5 (diff) | |
| parent | 0238fd7aa7a92887970507346ac7e6ad8ed5492c (diff) | |
Merge branch 'master' of git.freeside.biz:/home/git/freeside
Diffstat (limited to 'conf/invoice_html')
| -rw-r--r-- | conf/invoice_html | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/conf/invoice_html b/conf/invoice_html index e9b0bdf95..06ee77588 100644 --- a/conf/invoice_html +++ b/conf/invoice_html @@ -166,15 +166,12 @@ &{$section->{description_generator}}($line); } else { my $class = 'invoice_desc_more'; - if ( $line->{'ref'} and $line->{'ref'} ne $lastref ) { + if ( ($line->{'ref'} || 0) ne $lastref ) { # then it's a new package (not a continuation) $class = 'invoice_desc'; } $OUT .= '<tr class="'.$class.'"> <td align="center">'; - #if ( $line->{'ref'} ne $lastref ) { - # $OUT .= $line->{'ref'}; - #} $OUT .= '</td> <td align="left">'. $line->{'description'}. '</td>'; if ( $unitprices ) { @@ -185,7 +182,7 @@ $OUT .= '<td align="right">'. $line->{'amount'}. '</td>'; } $OUT .= '</tr>'; - $lastref = $line->{'ref'}; + $lastref = $line->{'ref'} || 0; if ( @{$line->{'ext_description'} } ) { unless ( $section->{description_generator} ) { $OUT .= '<tr class="invoice_extdesc"><td></td><td'; |
