diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-05-16 13:31:33 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-05-16 13:31:33 -0700 |
commit | dd66730eb92b6b87cd68f3bd3bc46786bf33799c (patch) | |
tree | b553e41ba8164cf472e046dc21717da3b450144c | |
parent | 67067dc8ca1c3cd57e2a310b98b40754a45f156f (diff) |
statement link display by default, better label, statements say "statement" and have no dates/numbers, RT#23148
-rw-r--r-- | conf/invoice_latex | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/conf/invoice_latex b/conf/invoice_latex index 533e8340d..b169b617f 100644 --- a/conf/invoice_latex +++ b/conf/invoice_latex @@ -127,7 +127,11 @@ \ifthenelse{\equal{\thepage}{1}}
{ % First page
\begin{tabular}{ccc}
- [@-- join(' & ', emt('Invoice date'), emt('Invoice #'), emt('Customer #') ) --@]\\
+ [@-- join(' & ', ( $no_date ? '' : emt('Invoice date') ),
+ ( $no_number ? '' : emt('Invoice #') ),
+ emt('Customer #')
+ )
+ --@]\\
\vspace{0.2cm}
\textbf{[@-- $date --@]} & \textbf{[@-- $invnum --@]} & \textbf{[@-- $custnum --@]} \\\hline
\rule{0pt}{5ex} &~~ \huge{\textsc{[@-- emt($notice_name) --@]}} & \\
|