Added new Print Formats as part of repository

This commit is contained in:
Anand Doshi 2011-11-16 13:18:45 +05:30
parent 86e91e5dce
commit e3559853bd
18 changed files with 429 additions and 9 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -98,7 +98,7 @@
'Quotation Detail', 'Quotation Detail',
[// Here specify the table columns to be displayed [// Here specify the table columns to be displayed
'SR', 'item_code', 'item_name', 'description', 'qty', 'stock_uom', 'SR', 'item_code', 'item_name', 'description', 'qty', 'stock_uom',
'basic_rate', 'amount' 'export_rate', 'export_amount'
], ],
[// Here specify the labels of column headings [// Here specify the labels of column headings
'Sr', 'Item Code', 'Item Name', 'Description', 'Qty', 'Sr', 'Item Code', 'Item Name', 'Description', 'Qty',
@ -168,7 +168,7 @@
<td width=60%><table width=100% cellspacing=0><tbody> <td width=60%><table width=100% cellspacing=0><tbody>
<tr> <tr>
<td width=39%><b>Name</b></td> <td width=39%><b>Name</b></td>
<td><script>doc.lead_name</script></td> <td><script>doc.customer?doc.customer:doc.lead_name</script></td>
</tr> </tr>
<tr> <tr>
<td><b>Address</b></td> <td><b>Address</b></td>
@ -224,7 +224,7 @@
<td>Net Total</td> <td>Net Total</td>
<td></td> <td></td>
<td width=38%><script> <td width=38%><script>
fmt_money(doc.net_total) fmt_money(doc.net_total/doc.conversion_rate)
</script></td> </script></td>
</tr> </tr>
<tr><td colspan=3><script>si_std.print_other_charges()</script></td></tr> <tr><td colspan=3><script>si_std.print_other_charges()</script></td></tr>

View File

@ -121,7 +121,7 @@
'Quotation Detail', 'Quotation Detail',
[// Here specify the table columns to be displayed [// Here specify the table columns to be displayed
'SR', 'item_code', 'item_name', 'description', 'qty', 'stock_uom', 'SR', 'item_code', 'item_name', 'description', 'qty', 'stock_uom',
'basic_rate', 'amount' 'export_rate', 'export_amount'
], ],
[// Here specify the labels of column headings [// Here specify the labels of column headings
'Sr', 'Item Code', 'Item Name', 'Description', 'Qty', 'Sr', 'Item Code', 'Item Name', 'Description', 'Qty',
@ -191,7 +191,7 @@
<td width=60%><table width=100% cellspacing=0><tbody> <td width=60%><table width=100% cellspacing=0><tbody>
<tr> <tr>
<td width=39%><b>Name</b></td> <td width=39%><b>Name</b></td>
<td><script>doc.lead_name</script></td> <td><script>doc.customer?doc.customer:doc.lead_name</script></td>
</tr> </tr>
<tr> <tr>
<td><b>Address</b></td> <td><b>Address</b></td>
@ -251,7 +251,7 @@
<td>Net Total</td> <td>Net Total</td>
<td></td> <td></td>
<td width=38%><script> <td width=38%><script>
fmt_money(doc.net_total) fmt_money(doc.net_total/doc.conversion_rate)
</script></td> </script></td>
</tr> </tr>
<tr><td colspan=3><script>si_std.print_other_charges()</script></td></tr> <tr><td colspan=3><script>si_std.print_other_charges()</script></td></tr>

View File

@ -120,7 +120,7 @@
'Quotation Detail', 'Quotation Detail',
[// Here specify the table columns to be displayed [// Here specify the table columns to be displayed
'SR', 'item_code', 'item_name', 'description', 'qty', 'stock_uom', 'SR', 'item_code', 'item_name', 'description', 'qty', 'stock_uom',
'basic_rate', 'amount' 'export_rate', 'export_amount'
], ],
[// Here specify the labels of column headings [// Here specify the labels of column headings
'Sr', 'Item Code', 'Item Name', 'Description', 'Qty', 'Sr', 'Item Code', 'Item Name', 'Description', 'Qty',
@ -190,7 +190,7 @@
<td width=60%><table width=100% cellspacing=0><tbody> <td width=60%><table width=100% cellspacing=0><tbody>
<tr> <tr>
<td width=39%><b>Name</b></td> <td width=39%><b>Name</b></td>
<td><script>doc.lead_name</script></td> <td><script>doc.customer?doc.customer:doc.lead_name</script></td>
</tr> </tr>
<tr> <tr>
<td><b>Address</b></td> <td><b>Address</b></td>
@ -246,7 +246,7 @@
<td>Net Total</td> <td>Net Total</td>
<td></td> <td></td>
<td width=38%><script> <td width=38%><script>
fmt_money(doc.net_total) fmt_money(doc.net_total/doc.conversion_rate)
</script></td> </script></td>
</tr> </tr>
<tr><td colspan=3><script>si_std.print_other_charges()</script></td></tr> <tr><td colspan=3><script>si_std.print_other_charges()</script></td></tr>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long