invoice template done

This commit is contained in:
unknown 2011-11-15 04:29:41 -05:00
parent 1b7664311f
commit 851cb8b264
4 changed files with 90 additions and 22 deletions

0
printaform/formaprint/templatetags/__init__.py Normal file → Executable file
View File

0
printaform/formaprint/templatetags/random.py Normal file → Executable file
View File

View File

@ -17,6 +17,7 @@ html, body {
body { body {
font-family:Helvetica, Arial, sans-serif; font-family:Helvetica, Arial, sans-serif;
font-size:12px;
} }
@ -31,7 +32,7 @@ display:block; page-break-before:always;
table { table {
margin:0 auto; margin:0 auto;
} font-size:12px;}
th { th {
text-align:left; text-align:left;
@ -42,6 +43,12 @@ td {
width: 40%; width: 40%;
} }
#tableAMC td {
width:75%;
}
</style> </style>
</head> </head>
@ -57,7 +64,7 @@ td {
<table width="90%" border="1" cellspacing="0" cellpadding="6" id="tableAMC"> <table width="90%" border="1" cellspacing="0" cellpadding="6">
<tr> <tr>
<th scope="row"><p>Parties</p></th> <th scope="row"><p>Parties</p></th>
<td><p>{{ company_name }}</p></td> <td><p>{{ company_name }}</p></td>
@ -91,9 +98,6 @@ td {
</ul> </ul>
</td> </td>
</tr> </tr>
</table>
<table width="90%" border="1" cellspacing="0" cellpadding="6" class="pageBreak">
<tr> <tr>
<th scope="row"><p>Considerations</p></th> <th scope="row"><p>Considerations</p></th>
<td colspan="2"> <td colspan="2">
@ -105,6 +109,9 @@ td {
</ul> </ul>
</td> </td>
</tr> </tr>
</table>
<table width="90%" border="1" cellspacing="0" cellpadding="6" class="pageBreak" id="tableAMC">
<tr> <tr>
<th scope="row"><p>Payment Schedule</p></th> <th scope="row"><p>Payment Schedule</p></th>
<td colspan="2"> <td colspan="2">

View File

@ -11,7 +11,16 @@
html, body { html, body {
width:100%; width:100%;
height:100%; height:100%;
font-size:14px;
}
body {
font-size:12px;
font-family:Helvetica, Arial, sans-serif;
}
table {
font-size:12px;
} }
.clear { .clear {
@ -22,8 +31,12 @@ html, body {
text-align:center; text-align:center;
} }
#companyAddress {
font-size:10px;
}
hr { hr {
width:70%; width:90%;
} }
#companyTitle { #companyTitle {
@ -31,14 +44,19 @@ hr {
font-size:120%; font-size:120%;
} }
#clientAddress { td {
width:75%;
}
/*#clientAddress {
float:left; float:left;
} }
#date { #date {
float:right; float:right;
} }
*/
</style> </style>
</head> </head>
@ -48,32 +66,75 @@ hr {
<div id="wrapper"> <div id="wrapper">
<div id="header"> <div id="header">
<p id="companyTitle">{{ company_name }}</p> <p id="companyTitle">{{ company_name }}</p>
<p>To:{{ company_address|markdown }}</p>
<div id="companyAddress"></div> <div id="companyAddress">
<p>{{ company_address|markdown }}</p>
<p>Tel No: {{ company_tel }}</p> <p>Tel No: {{ company_tel }}</p>
<p>Email: {{ company_email }}</p> <p>Email: {{ company_email }}</p>
<p>Pan No: {{ pan_no }}</p>
<hr> <hr>
</div>
</div><!-- HEADER CLOSING --> </div><!-- HEADER CLOSING -->
<div id="clientAddress">{{ client_address|markdown }} <div id="clientAddress"><strong>To:</strong>{{ client_address|markdown }}
<p>Tel No: {{ company_tel }}</p> <p>Tel No: {{ client_tel }}</p>
<p>Email: {{ company_email }}</p> <p>Email: {{ client_email }}</p>
</div><!-- CLIENT ADDRESS CLOSING --> </div><!-- CLIENT ADDRESS CLOSING -->
<div id="date">{{ date }}</div> <div id="date"><strong>Invoice Date</strong>{{ date }}</div>
<div id="invoiceNo"><strong>Invoice Number: </strong>{{ invoice_no }}</div>
<br>
<div class="clear"></div>
<div id="attention"><strong>Attn:</strong> {{ client_rep_name }}</div> <div id="attention"><strong>Attn:</strong> {{ client_rep_name }}</div>
<br>
<div id="invoiceNo"><strong>Invoice #: </strong>{{ invoice_no }}</div>
<div id="content"> <div id="content">
<p>Dear Sir,</p> <p>Dear {{ sir_or_madam }},</p>
<p>The following are my professional charges for Web Design and Development work done on your website {{ website_name }}.</p> <p>Below is a statement of professional fees for {{ website_name }}.</p>
</div> </div>
<div id="amount"></div> <div id="paymentTable">
<table width="90%" border="1" cellspacing="0" cellpadding="1">
<tr>
<th scope="col">Particulars</th>
<th scope="col">Amount</th>
</tr>
<tr>
<td>{{ particulars }};</td>
<td>{{ amount }}</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td><strong>Total Amount</strong>
<p>In words: {{ amount_words }}</p>
</td>
<td><strong>{{ amount_final }}</strong></td>
</tr>
</table>
<br>
</div>
<div class="paymentTo"><strong>Payment to:</strong> {{ company_name }}</div>
<div class="bankInfo">
<p><strong>{{ bank_name }}:</strong></p>
<p>{{ ifsc_code }}</p>
<p>{{ account_number }}</p>
<p>{{ account_branch }}</p>
</div>
<br>
<br>
<br>
<br>
<br>
<p style="text-align:right";><strong>{{ client_name }}</strong></p>
</div> </div>
</body> </body>