diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-01-18 15:13:28 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-01-18 15:13:28 -0800 |
commit | 0b6bd6405107c1abf8f2c5e2bc1b569870a02309 (patch) | |
tree | 45b7249057e5b24768e62413a706b87a8de7b7de /conf/invoice_latex | |
parent | f5a77514d6816225b378ced1d598ba745d0c22b4 (diff) |
remove Ref field from quotations and invoices, RT#22232
Diffstat (limited to 'conf/invoice_latex')
-rw-r--r-- | conf/invoice_latex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/conf/invoice_latex b/conf/invoice_latex index 99d12d5c7..822afcbdd 100644 --- a/conf/invoice_latex +++ b/conf/invoice_latex @@ -176,7 +176,7 @@ \newcommand{\FShead}{
\hline
\rule{0pt}{2.5ex}
- \makebox[1.4cm]{\textbf{Ref}} &
+ \makebox[1.4cm]{} &
\multicolumn{\FSdescriptioncolumncount}{l}{\makebox[\FSdescriptionlength][l]{\textbf{[@-- emt('Description') --@]}}}&
\FSunitcolumns
\makebox[1.6cm][r]{\textbf{[@-- emt('Amount') --@]}} \\
@@ -332,7 +332,7 @@ $OUT .= &{$section->{description_generator}}($line);
} else {
$OUT .= '\FSdesc'.
- '{' . ( $line->{'ref'} ne $lastref ? $line->{'ref'} : '' ) . '}'.
+ '{}'. #'{' . ( $line->{'ref'} ne $lastref ? $line->{'ref'} : '' ) . '}'.
'{' . $line->{'description'} . '}' ;
if ( $unitprices and length($line->{'unit_amount'}) ) {
# then show the unit amount and quantity
|