$rsT->moveNext(); } $rs->fields['turnos'] = json_encode($turnos); array_push($datos, $rs->fields); $rs->moveNext(); } $smarty->assign("lista", $datos); break; case 'cconsultorio': switch ($objModulo->getAction()) { case 'add': $obj = new TConsultorio($_POST['id']); $obj->setSupervisor($_POST['supervisor']); $obj->setResponsable($_POST['responsable']); $obj->setClave($_POST['clave']); $obj->setNombre($_POST['nombre']); $obj->setCiudad($_POST['ciudad']); $obj->setEstado($_POST['estado']); $obj->setCubiculos($_POST['cubiculos']); echo json_encode(array("band" => $obj->guardar())); break; case 'del': $obj = new TConsultorio($_POST['id']); echo json_encode(array("band" => $obj->eliminar())); break; case 'addTurno': $obj = new TConsultorio($_POST['consultorio']); echo json_encode(array("band" => $obj->addTurno($_POST['turno']))); break; case 'delTurno': $obj = new TConsultorio($_POST['consultorio']);