diff options
Diffstat (limited to 'sql-ledger/templates/Default-statement.html')
-rw-r--r-- | sql-ledger/templates/Default-statement.html | 29 |
1 files changed, 21 insertions, 8 deletions
diff --git a/sql-ledger/templates/Default-statement.html b/sql-ledger/templates/Default-statement.html index 6fca322ee..f00ad0ebf 100644 --- a/sql-ledger/templates/Default-statement.html +++ b/sql-ledger/templates/Default-statement.html @@ -36,10 +36,14 @@ <table width=100%> <tr valign=top> <td><%name%> - <br><%addr1%> - <br><%addr2%> - <br><%addr3%> - <br><%addr4%> + <br><%address1%> + <%if address2%> + <br><%address2%> + <%end address2%> + <br><%city%> <%state%> <%zipcode%> + <%if country%> + <br><%country%> + <%end country%> <br> <%if customerphone%> <br>Tel: <%customerphone%> @@ -62,8 +66,10 @@ <table width=100%> <tr> <th align=left>Invoice #</th> - <th width=15%>Date</th> - <th width=15%>Due</th> + <th align=left>Order#</th> +<th align=left>Notes</th> + <th width=10%>Date</th> + <th width=10%>Due</th> <th width=10%>Current</th> <th width=10%>30</th> <th width=10%>60</th> @@ -72,6 +78,8 @@ <%foreach invnumber%> <tr> <td><%invnumber%></td> +<td><%ordnumber%></td> +<td><%notes%></td> <td><%invdate%></td> <td><%duedate%></td> <td align=right><%c0%></td> @@ -81,12 +89,14 @@ </tr> <%end invnumber%> <tr> - <td colspan=7><hr size=1></td> + <td colspan=9><hr size=1></td> </tr> <tr> <td> </td> <td> </td> <td> </td> + <td> </td> + <td> </td> <th align=right><%c0total%></td> <th align=right><%c30total%></td> <th align=right><%c60total%></td> @@ -116,6 +126,9 @@ <td>Please make check payable to <b><%company%></b>. </td> </tr> - <tr height=20></tr> + </table> +</body> +</html> + |