summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjeff <jeff>2008-06-17 19:30:07 +0000
committerjeff <jeff>2008-06-17 19:30:07 +0000
commit098e780ae972ff57914ab2f31977832f84cc58b1 (patch)
tree3f272e17f6dffea8eb80d31e386fc028a4120993
parent1f999d43cb6e8b9844b3d79d24b14de283806fd3 (diff)
fixup damage from quantity addition
-rw-r--r--conf/invoice_latex6
1 files changed, 4 insertions, 2 deletions
diff --git a/conf/invoice_latex b/conf/invoice_latex
index a1f9da7e7..ef92cf3fd 100644
--- a/conf/invoice_latex
+++ b/conf/invoice_latex
@@ -166,7 +166,7 @@
\newcommand{\FSextdesc}[1]{
\multicolumn{1}{l}{\rule{0pt}{1.0ex}} &
%% \multicolumn{2}{l}{\small{~-~#1}}\\
- ~~~#1\\
+#1\\
}
% ...and total line items.
\newcommand{\FStotaldesc}[2]{
@@ -284,7 +284,9 @@ Terms: [@-- $terms --@]\\
if ( $ext_desc !~ /[^\\]&/ ) {
$ext_desc = substr($ext_desc, 0, 80) . '...'
if (length($ext_desc) > 80);
- $ext_desc = '\small{'. $ext_desc. '}';
+ $ext_desc = '\multicolumn{6}{l}{\small{~~~'. $ext_desc. '}}';
+ }else{
+ $ext_desc = "~~~$ext_desc";
}
$OUT .= '\FSextdesc{' . $ext_desc . '}' . "${rowbreak}\n";
}