Cita:
Iniciado por GatorV Faltaría ver que es lo que hace el método $this->getDetalle(), ya que con la información que expones no es suficiente.
Saludos.
Hola, hace exactamente lo mismo, solo que recibe como parametro un id
function getDetalle($id)
{
$SQL = "select d.id_articulo, concat(inventario.nombre, ' - ', marcas.nombre, ' - ', presentaciones.nombre) as descrip, d.cantidad ";
$SQL .= "from det_tipos_servicios d, inventario, marcas, presentaciones ";
$SQL .= "where d.id_tipo_servicio = $id and (inventario.id_articulo = d.id_articulo and marcas.id_marca = inventario.id_marca ";
$SQL .= "and presentaciones.id_presentacion = inventario.id_presentacion) order by d.id_articulo";
if ($rs = $this->query($SQL))
{
while ($row = mysql_fetch_assoc($rs))
{
$datos[] = $row;
}
}
else
{
$datos = null;
}
return $datos;
}