diff options
Diffstat (limited to 'conf/invoice_html')
-rw-r--r-- | conf/invoice_html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/conf/invoice_html b/conf/invoice_html index ae17da3db..e9b0bdf95 100644 --- a/conf/invoice_html +++ b/conf/invoice_html @@ -143,7 +143,7 @@ $OUT .= $header; $columncount = scalar(my @array = split /<\/th><th/i, $header); } else { - $OUT .= '<th align="center">' . emt('Ref') . '</th>'. + $OUT .= '<th align="center"></th>'. '<th align="left">' . emt('Description') . '</th>'. ( $unitprices ? '<th align="right">' . emt('Unit Price') . '</th>'. @@ -172,9 +172,9 @@ } $OUT .= '<tr class="'.$class.'"> <td align="center">'; - if ( $line->{'ref'} ne $lastref ) { - $OUT .= $line->{'ref'}; - } + #if ( $line->{'ref'} ne $lastref ) { + # $OUT .= $line->{'ref'}; + #} $OUT .= '</td> <td align="left">'. $line->{'description'}. '</td>'; if ( $unitprices ) { |