Amigos, en la columna donde dice Solicitar (SI/NO) necesito que me muestre SI necesita solicitar más producto o NO necesita mas producto dependiente de prioridades (ALTA, MEDIA y BAJA).
Como puedo establecer esas prioridades?
Si es ALTA la condición es que si hay una tarjeta en deposito diga que SI se necesita solicitar mas.
Si es MEDIA la condición es que si hay 1 tarjeta o mas NO se necesita tarjeta.
Si es BAJA la condición es que si hay 1 tarjeta o mas NO se necesita tarjeta.
Código PHP:
<?php
$host ="localhost";
$user ="root";
$password ="2012";
$db ="deposito";
$enlace = mysql_connect($host,$user,$password);
mysql_select_db($db,$enlace);
$consulta = mysql_query("SELECT cant_ins,equipo,cod_m,nombre,cod_p, count(cod_p) as total from inventario group by nombre",$enlace);
echo "<table width='100%'>";
echo "<thead>";
echo "<tr>";
echo "<th width='10%'>Equipo</th>";
echo "<th width='40%'>Nombre</th>";
echo "<th width='10%'>Cod Material</th>";
echo "<th width='5%'>Cant. Instaladas</th>";
echo "<th width='5%'>Cant. en Deposito</th>";
echo "<th width='10%'>Solicitar (SI/NO)</th>";
echo "</tr>";
while ($row = mysql_fetch_array($consulta))
{
echo "<tr>\n";
echo "<td width='10%'>" . $row["equipo"] . "</td>\n";
echo "<td width='40%'>" . $row["nombre"] . "</td>\n";
echo "<td width='10%'>" . $row["cod_m"] . "</td>\n";
echo "<td width='5%'>" . $row["cant_ins"] . "</td>\n";
echo "<td width='5%'>" . $row["total"] . "</td>\n";
echo "<td width='10%'>" . (($row["total"] >= ($row["cant_ins"] * 10/100)) ? 'NO' : 'SI') . "</td>\n";
echo "</tr>";
}
echo "</table>";
?>