ESH/download_template.php
2024-10-23 18:28:06 +05:30

55 lines
1.8 KiB
PHP

<?php
header("Content-type:application/octet-stream");
header("Content-type: application/x-msdownload");
header("Content-Disposition: attachment; filename=excel_procurement.xls");
header("Pragma: no-cache");
header("Expires: 0");
error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
?>
<?php
include('includes/config/config.php');
include('includes/functions.php')
//include('pop_up_top.php');
?>
<body>
<table border="1" width="100%">
<tr>
<td bgcolor="#eeeeee" align="left" width="15%">Invoice No.</td>
<td bgcolor="#eeeeee" align="left" width="10%">Invoice Date(DD/MM/YYYY)</td>
<td bgcolor="#eeeeee" valign="top" align="left" width="30%">Item Code</td>
<td bgcolor="#eeeeee" valign="top" width="5%" align="left">Quantity</td>
<td bgcolor="#eeeeee" valign="top" width="5%" align="left">Net Value</td>
<td bgcolor="#eeeeee" width="5%" valign="top" align="left">Batch</td>
<td bgcolor="#eeeeee" width="5%" valign="top" align="left">Per Unit Rate</td>
<td bgcolor="#eeeeee" width="5%" valign="top" align="left">Tax(%)</td>
<td bgcolor="#eeeeee" valign="top" width="10%" align="left">Expiry Date(DD/MM/YYYY)</td>
<td bgcolor="#eeeeee" valign="top" align="left" width="15%">Item Remarks</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</table>