Your IP : 216.73.216.40


Current Path : /var/www/html/mmishra/istore/
Upload File :
Current File : /var/www/html/mmishra/istore/zz.inc

<h2 align='left'>Pending Indents</h2>
<center>
<table width='100%' border='1' style='border-collapse: collapse' bgcolor='white'>
<tr><th width='5%'>Sr.</th><th>IndentNo.</th><th width='55%'>Item</th><th width='10%'>Qty<br>Demanded</th><th width='10%'>Qty<br>Approved</th><th>Qty<br>Issued</th></tr>

<?php
	$sr = mysql_query("select * from indent_items where status<>'Pending' and qty_approve=0 order by indent_no desc,item");
	while ($q = mysql_fetch_object($sr)) {
		$j++;
		echo "<tr><td>$j</td><td>$q->indent_no</td><td>".item_detail($q->item)."</td><td>$q->qty_demand $q->unit</td>
		<td>$q->qty_approve $q->unit</td><td>$q->qty_out $q->unit</td></tr>";
	}
	//if ($j == $k) mysql_query("update indents set status='Approved' where indent_no=$o->indent_no");
?>

</table>
</center>