File: Spanish_Letter-invoice.tex

package info (click to toggle)
sql-ledger 3.0.6-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 35,960 kB
  • ctags: 4,189
  • sloc: perl: 64,607; sql: 27,735; sh: 34; makefile: 21
file content (110 lines) | stat: -rw-r--r-- 2,370 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
% ve-invoice.tex
\documentclass[letterpaper,oneside]{article}
\usepackage[frame]{xy}
\usepackage{tabularx}
\usepackage[latin1]{inputenc}
%\usepackage{marvosym}  % Euro \EUR
\usepackage{fancyhdr}
\setlength{\topmargin}{0cm}
\setlength{\topskip}{0cm}
\setlength{\headheight}{0cm}
\setlength{\headsep}{0.5cm}
\setlength{\textheight}{24.2cm}
\setlength{\textwidth}{19cm}
\setlength{\oddsidemargin}{-1.4cm}
\setlength{\evensidemargin}{-1.4cm}
\setlength{\footskip}{1cm}

\setlength{\parindent}{0pt}
\renewcommand{\baselinestretch}{1}
\begin{document}

\newlength{\descrwidth}\setlength{\descrwidth}{13.0cm}

\newsavebox{\hdr}

%Or whatever font you want!
\fontfamily{cmss}\fontshape{n}\selectfont

\sbox{\hdr}{

\begin{minipage}[t]{0.6\linewidth}
\vspace{2.2cm}

\begin{tabular}[t]{p{1.7cm}p{2.4cm}p{1.7cm}}\\
\centering{Nmero} & \centering{Fecha} & C. Cliente\\
\centering{<%invnumber%>} & \centering{<%invdate%>} & \centering{<%customer_id%>}
\end{tabular}
\end{minipage}

\begin{minipage}[t]{0.4\linewidth}
\textbf{F A C T U R A} 
\vspace{1cm}

<%name%>

<%address1%>

<%address2%>

<%city%> <%state%> <%zipcode%>

<%country%>
\end{minipage}

}

\pagestyle{fancy}
\renewcommand{\headrulewidth}{0cm}
\renewcommand{\footrulewidth}{0cm}
\cfoot{\thepage}
%\markboth{\usebox{\hdr}}{\usebox{\hdr}}
%\thispagestyle{empty}     %use this with letterhead paper

<%pagebreak 65 27 37%>
\end{tabular*}
\newpage
\usebox{\hdr}
%\markboth{\usebox{\hdr}}{\usebox{\hdr}}
\vspace{0.5cm}

\begin{tabular*}{\textwidth}{rp{\descrwidth}rr}
  \textbf{Cant.} & \textbf{Descripcin} & \textbf{Precio} & \textbf{Importe} \\ \hline
<%end pagebreak%>

\fontfamily{cmss}\fontsize{10pt}{12pt}\selectfont

\usebox{\hdr}
\vspace{0.5cm}

\begin{tabular*}{\textwidth}{rp{\descrwidth}rr}
  \textbf{Cant.} & \textbf{Descripcin} & \textbf{Precio} & \textbf{Importe} \\ \hline
<%foreach number%>
  <%qty%> & <%description%> & <%sellprice%> & <%linetotal%> \\
<%end number%>
\end{tabular*}

\parbox{\textwidth}{
\vspace{12pt}
<%if notes%>
  <%notes%>
<%end if%>
}

\vfill

\begin{flushright}
\begin{tabularx}{10cm}{Xr@{}}
  \textbf{Base imponible} & \textbf{<%subtotal%>} \\
<%foreach tax%>
  IVA (<%taxrate%>\%) sobre <%taxbase%> & <%tax%> \\
<%end tax%>
  \hline
  \textbf{Total} & \textbf{<%invtotal%>} \\
\end{tabularx}
\end{flushright}

%\renewcommand{\thefootnote}{\fnsymbol{footnote}}

\end{document}