diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-05-16 13:31:32 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-05-16 13:31:32 -0700 |
commit | a1a1fbca688fda6c737bf016f6f3565b5192497b (patch) | |
tree | cc349e64ae77ee1c7aa5c761fce395e47f957ab9 /conf | |
parent | 67d6d7a6c446837af1855eef8495c286a58a9ac1 (diff) |
statement link display by default, better label, statements say "statement" and have no dates/numbers, RT#23148
Diffstat (limited to 'conf')
-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) --@]}} & \\
|