diff options
| -rw-r--r-- | conf/invoice_html | 10 | ||||
| -rw-r--r-- | conf/invoice_latex | 12 | 
2 files changed, 14 insertions, 8 deletions
| diff --git a/conf/invoice_html b/conf/invoice_html index fa1f9434e..f9fd847f4 100644 --- a/conf/invoice_html +++ b/conf/invoice_html @@ -26,13 +26,19 @@              <td>              </td>              <td align="left"> -              Invoice number<BR> +              Invoice #<BR>                <B><%= $invnum %></B>              </td> +            <td> +            </td> +            <td align="center"> +              Customer #<BR> +              <B><%= $custnum %></B> +            </td>            </tr>            <tr>              <th> </th> -            <th colspan=1 align="center"> +            <th colspan=3 align="center">                <FONT SIZE="+3">I</FONT><FONT SIZE="+2">NVOICE</FONT>              </th>              <th> </th> diff --git a/conf/invoice_latex b/conf/invoice_latex index cf557f4e4..660c4d586 100644 --- a/conf/invoice_latex +++ b/conf/invoice_latex @@ -101,10 +101,10 @@  \fancyhead[R]{
    \ifthenelse{\equal{\thepage}{1}}
    { % First page
 -    \begin{tabular}{rcl}
 -    Invoice date & & Invoice number \\
 +    \begin{tabular}{ccc}
 +    Invoice date & Invoice \#& Customer\#\\
      \vspace{0.2cm}
 -    \textbf{[@-- $date --@]} & & \textbf{[@-- $invnum --@]} \\\hline
 +    \textbf{[@-- $date --@]} & \textbf{[@-- $invnum --@]} & \textbf{[@-- $custnum --@]} \\\hline
      \rule{0pt}{5ex} &~~ \huge{\textsc{Invoice}} & \\
      \vspace{-0.2cm}
       & & \\\hline
 @@ -112,9 +112,9 @@    }
    { % ... pages
      \small{
 -      \begin{tabular}{ll}
 -      Invoice date & Invoice number\\
 -      \textbf{[@-- $date --@]} & \textbf{[@-- $invnum --@]}\\
 +      \begin{tabular}{lll}
 +      Invoice date & Invoice \#& Customer\#\\
 +      \textbf{[@-- $date --@]} & \textbf{[@-- $invnum --@]} & \textbf{[@-- $custnum --@]}\\
        \end{tabular}
      }
    }
 | 
