+void art_consultas_varias(char *nombre_indice, char *titulo, t_Lista *lista)
+{
+ int i, cant, error, editar;
+ char desc[51], *tmp;
+ t_Articulo articulo;
+ t_Form *form;
+ INDICE_DATO *datos;
+ CLAVE k;
+ EMUFS *fs;
+ EMUFS_REG_SIZE size;
+
+ fs = lst_articulos->fp;
+
+ /* El usuario ingresa rango a listar */
+ form = form_crear(lista->win);
+ form_agregar_widget(form, INPUT, titulo, 50, "");
+
+ werase(lista->win);
+ form_ejecutar(form, 2, 2);
+
+ tmp = form_obtener_valor_char(form, titulo);
+ strcpy(desc, tmp);
+
+ form_destruir(form);
+ werase(lista->win);
+ wrefresh(lista->win);
+
+ /* Leo los datos desde el archivo */
+ datos = emufs_buscar_registros(fs, nombre_indice, desc, &cant);
+ for(i=0; i<cant; i++) {
+ k.i_clave = datos[i].id;
+ error = 1;
+ tmp = (char *)fs->leer_registro(fs, k, &size, &error);
+ if (tmp != NULL) {
+ procesar_leer_articulo(&articulo, tmp, size, lst_articulos);
+ lista_agregar_fila(lista,
+ articulo.numero,
+ articulo.desc,
+ articulo.existencia,
+ articulo.emin
+ );
+ free(tmp);
+ } else {
+ PERR("NO SE PUDO RECUPERAR EL REGISTRO DE DATOS");
+ }
+ }
+ if (datos) free(datos);
+ curs_set(0);
+ editar = lista_ejecutar(lista);
+ curs_set(1);
+ if (editar != -1) {
+ char cc[20];
+ sprintf(cc, "%d", editar);
+ art_modificar(cc);
+ }
+
+}
+
+void art_consultas(char *s)
+{
+ t_Lista *lista;
+ WINDOW *win1, *win;
+ MENU(mi_menu) {
+ MENU_OPCION("por Codigos", "Consulta de Articulos por rango de codigo."),
+ MENU_OPCION("por Descripcion", "Consulta por descripcion"),
+ MENU_OPCION("por Presentacion", "Consulta por Presentacion"),
+ MENU_OPCION("por Sock Faltante", "Consulta de articulos por stock"),
+ MENU_OPCION("Modificar Precios", "Permite Modificar los PVU"),
+ MENU_OPCION("Volver", "Volver al menu anterior.")
+ };
+ int opt;
+
+ win = newwin(LINES-4, COLS-2, 2, 1);
+ win1 = derwin(win, LINES-6, COLS-4, 1, 1);
+ werase(win1);
+ werase(win);
+ box(win, 0, 0);
+ wrefresh(win1);
+ wrefresh(win);
+
+ /* Creo la lista donde mostrar la consulta*/
+ /* Muestro solo info relevante */
+ lista = lista_crear(4, win1, COLS-4, LINES-6);
+
+ /* Creo las columnas */
+ lista_agregar_columna(lista, "Numero", DATO_INT, 0, 8); /* numero */
+ lista_agregar_columna(lista, "Descripcion", DATO_STR, 10, 51); /* desc */
+ lista_agregar_columna(lista, "Existencia", DATO_STR, 55, 9); /* existencia */
+ lista_agregar_columna(lista, "S. Minimo", DATO_STR, 66, 9); /* enim */
+
+ while ((opt = menu_ejecutar(mi_menu, 6, "Consulta de Articulos")) != 5) {
+ switch (opt) {
+ case 0:
+ art_consultas_codigos(s, lista);
+ break;
+ case 1:
+ art_consultas_varias("desc", "Descripcion", lista);
+ break;
+ case 2:
+ art_consultas_varias("presentacion", "Presentacion", lista);
+ break;
+ case 3:
+ art_consultas_stock(s, lista);
+ break;
+ case 4:
+ art_consultas_cambiar_precio(s, lista);
+ }
+ lista_clear(lista);
+ werase(win1);
+ werase(win);
+ box(win, 0, 0);
+ wrefresh(win1);
+ wrefresh(win);
+ }
+ werase(win1);
+ werase(win);
+ wrefresh(win);
+ delwin(win);
+}
+
+
+void imprimir(WINDOW *win, int y, int x, char *s, char *b)
+{
+ wmove(win, y, x);
+ waddstr(win, s);
+ waddstr(win, b);
+}
+
+void mostrar_art(WINDOW *win, CLAVE k, char *s, INDICE *idx)
+{
+ t_Articulo *art;
+ EMUFS_REG_ID dummy;
+ int y = 3;
+ char numero[10];
+ /* XXX SOLO PARA CODIGO XXX */
+
+ wattron(win, COLOR_PAIR(COLOR_RED));
+ mvwaddstr(win, 1, 5, "Recorriendo Articulos por indice ");
+ waddstr(win, s);
+ wattroff(win, COLOR_PAIR(COLOR_RED));
+
+ wattron(win, A_BOLD);
+ mvwaddstr(win, 18, 5, "Teclas:");
+ wattroff(win, A_BOLD);
+ mvwaddstr(win, 19, 5, " L = Siguiente");
+ mvwaddstr(win, 20, 5, " K = Anterior");
+
+ if (strcmp(s, "codigo") == 0) {
+ art = art_obtener(lst_articulos, k.i_clave, &dummy);
+ } else {
+ INDICE_DATO *datos;
+ EMUFS_REG_SIZE size;
+ int cant, error;
+ char *tmp;
+
+ art = (t_Articulo *)malloc(sizeof(t_Articulo));
+ /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
+ PERR("Busco todos los datos que tengan esta clave");
+ datos = idx->buscar_entradas(idx, k, &cant);
+ if (datos == NULL) {
+ free(art);
+ art = NULL;
+ } else {
+ error = 1;
+ k.i_clave = datos[0].id;
+ PERR("Leo el primer dato");
+ tmp = lst_articulos->fp->leer_registro(lst_articulos->fp, k, &size, &error);
+ if (tmp == NULL) {
+ free(art);
+ art = NULL;
+ } else {
+ if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
+ free(art);
+ free(tmp);
+ art = NULL;
+ }
+ }
+ free(datos);
+ }
+ }
+
+
+ if (art != NULL) {
+ sprintf(numero, "%08d", art->numero);
+
+ imprimir(win, y++, 5, "Numero : ", numero);
+ imprimir(win, y++, 5, "Descripcion : ", art->desc);
+ imprimir(win, y++, 5, "Presentacion: ", art->presentacion);
+ imprimir(win, y++, 5, "Existencia : ", art->existencia);
+ imprimir(win, y++, 5, "Ubicacion : ", art->ubicacion);
+ imprimir(win, y++, 5, "P. Unitario : ", art->pvu);
+ imprimir(win, y++, 5, "Stock Minimo: ", art->emin);
+
+ free(art);
+ } else {
+ PERR("NO EXISTE EL ARTICULO");
+ }
+
+}
+
+void art_recorrer_con_indice(char *s)
+{
+ WINDOW *win, *win1;
+ INDICE *idx;
+ CLAVE stack[1000]; /* shhhh */
+ CLAVE k;
+ int stack_pos=0, c;
+
+ PERR("Busco indice");
+ idx = emufs_buscar_indice_por_nombre(lst_articulos->fp, s);
+
+ win = newwin(LINES-4, COLS-2, 2, 1);
+ win1 = derwin(win, LINES-6, COLS-4, 1, 1);
+ werase(win);
+ werase(win1);
+ box(win, 0, 0);
+ wrefresh(win1);
+ wrefresh(win);