so Search.tsf and Search.rdf work
[freeside.git] / sql-ledger / templates / Italian-invoice.html
1
2 <body bgcolor=ffffff>
3
4 <table width=100%>
5 <tr valign=bottom>
6   <td width=10>&nbsp;</td>
7   <td>
8   
9   <table width=100%>
10   <tr>
11     <td>
12       <h4>
13       <%company%>
14       <br><%address%>
15       </h4>
16     </td>
17
18     <td align=right>
19       <h4>
20       Tel: <%tel%>
21       <br>Fax: <%fax%>
22       </h4>
23     </td>
24   </tr>
25
26   <tr>
27     <th colspan=3>
28       <h4>FATTURA</h4>
29     </th>
30   </tr>
31
32   </table>
33
34
35   <table width=100% callspacing=0 cellpadding=0>
36     
37   <tr>
38     <td align=right>
39     <table>
40     <tr>
41       <th align=right>Data fattura</th><td width=10>&nbsp;</td><td><%invdate%></td>
42     </tr>
43   
44     <tr>
45       <th align=right>Scadenza</th><td width=10>&nbsp;</td><td><%duedate%></td>
46     </tr>
47
48     <tr>
49       <th align=right>Numero fattura</th><td>&nbsp;</td><td><%invnumber%></td></tr>
50     </tr>
51   
52     <tr>
53       <td>&nbsp;</td>
54     </tr>
55     </td>
56     </table>
57   </tr>
58
59   <tr>
60     <td>
61     <table width=100%>
62     <tr bgcolor=000000>
63       <th align=left><font color=ffffff>Sede legale:</th>
64       <th align=left><font color=ffffff>Inviare fattura a:</th>
65     </tr>
66
67     <tr>
68       <td><%name%>
69       <br><%address1%>
70       <%if address2%>
71 <br><%address2%>
72 <%end address2%>
73       <br><%city%> <%state%> <%zipcode%>
74       <%if country%>
75 <%country%>
76 <%end country%>
77       </td>
78       
79       <td><%shiptoname%>
80       <br><%shiptoaddress1%>
81       <%if shiptoaddress2%>
82 <br><%shiptoaddress2%>
83 <%end shiptoaddress2%>
84       <br><%shiptocity%> <%shiptostate%> <%shiptozipcode%>
85       <%if shiptocountry%>
86 <%shiptocountry%>
87 <%end shiptocountry%>
88       </td>
89     </tr>
90     </table>
91     </td>
92   </tr>
93
94   <tr>
95     <td>&nbsp;</td>
96   </tr>
97   
98   <tr>
99     <td>
100     <table width=100%>
101     <tr bgcolor=000000>
102 <!--      <th align=right><font color=ffffff>No.</th>  -->
103       <th align=left><font color=ffffff>Numero</th>
104       <th align=left><font color=ffffff>Descrizione</th>
105       <th><font color=ffffff>Quantit&agrave;</th>
106       <th>&nbsp;</th>
107       <th><font color=ffffff>Prezzo</th>
108       <th><font color=ffffff>Sconto</th>
109       <th><font color=ffffff>Totale riga</th>
110     </tr>
111
112 <%foreach number%>
113     <tr valign=top>
114 <!--      <td align=right><%runningnumber%>.</td>
115 adjust the colspan if you include this to shift subtotal one to the right
116 -->
117       <td><%number%></td>
118       <td><%description%></td>
119       <td align=right><%qty%></td>
120       <td><%unit%></td>
121       <td align=right><%sellprice%></td>
122       <td align=right><%discount%></td>
123       <td align=right><%linetotal%></td>
124     </tr>
125 <%end number%>
126
127 <!--
128 you can also use netprice instead of sellprice if you
129 don't want to show the discount
130 netprice = sellprice - discount
131 to show the percentage for a discount use <%discountrate%>
132 -->
133
134     <tr>
135       <td colspan=7><hr noshade></td>
136     </tr>
137     
138     <tr>
139       <th colspan=5 align=right>Totale righe</th>
140       <td colspan=2 align=right><%subtotal%></td>
141     </tr>
142
143 <%foreach tax%>
144     <tr>
145       <th colspan=5 align=right><%taxdescription%>: <%taxrate%>% su <%taxbase%></th>
146       <td colspan=2 align=right><%tax%></td>
147     </tr>
148 <%end tax%>
149
150 <%if paid%>
151     <tr>
152       <th colspan=5 align=right>Importo gi&agrave; pagato</th>
153       <td colspan=2 align=right>- <%paid%></td>
154     </tr>
155 <%end paid%>
156
157     <tr>
158       <td colspan=3>&nbsp;</td>
159       <td colspan=4><hr noshade></td>
160     </tr>
161
162     <tr>
163       <td colspan=3>Scadenza a <b><%terms%></b> giorni data fattura.</td>
164       <th colspan=2 align=right>Totale da pagare</th>
165       <th colspan=2 align=right><%total%></th>
166     </tr>
167
168     <tr>
169       <td>&nbsp;</td>
170     </tr>
171
172     </table>
173     </td>
174   </tr>
175
176 <tr>
177   <td>
178   <table width=100%>
179     <tr valign=top>
180       <td>Note</td>
181       <td><%notes%></td>
182       <td align=right>
183       I prezzi sono espressi in valuta <b><%currency%></b>.
184       <br><%shippingpoint%>
185       </td>
186     </tr>
187
188   </table>
189   </td>
190 </tr>
191
192 <tr><td>&nbsp;</td></tr>
193   
194 <tr>
195   <td>
196     Per i pagamenti successivi alla scadenza della fattura sar&agrave;
197     addebitato l'interesse legale, aumentato di due punti percentuali, fino al
198     pagamento completo.
199   </td>
200 </tr>
201
202 </table>
203
204 </td>
205 </tr>
206 </table>
207
208 </body>
209 </html>