+
+
+ 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);
+
+ PERR("Obtengo clave menor");
+ k = idx->obtener_menor_clave(idx);
+
+ PERR("Muestro el primer elemento");
+
+
+ mostrar_art(win1, k, s, idx);
+ wrefresh(win1);
+ wrefresh(win);
+ PERR("Sigue el usuario");
+ curs_set(0);
+ stack[0] = k;
+ while ((c=wgetch(win)) != 13) {
+ switch (c) {
+ case 'L':
+ case 'l':
+ stack[stack_pos++] = k; /* Guardo la clave para poder volver */
+ k = idx->obtener_sig_clave(idx, k);
+ /* TODO Verificar que no me pase del fin */
+ break;
+ case 'K':
+ case 'k':
+ /* recupero la anterior */
+ stack_pos--;
+ if (stack_pos < 0) stack_pos = 0;
+ k = stack[stack_pos];
+ break;
+ default:
+ continue;
+ }
+ werase(win1);
+ werase(win);
+ mostrar_art(win1, k, s, idx);
+ wrefresh(win1);
+ wrefresh(win);
+ }
+ curs_set(1);
+
+ werase(win1);
+ werase(win);
+ wrefresh(win);
+ delwin(win);
+}
+
+void art_recorrer()
+{
+ char *ind[3] = {"codigo", "desc", "presentacion"};
+ MENU(mi_menu) {
+ MENU_OPCION("Codigos", "Recorrer por Indice Codigo"),
+ MENU_OPCION("Descripcion", "Recorrer por Indice Descripcionn"),
+ MENU_OPCION("Presentacion", "Recorrer por Indice Presentacion"),
+ MENU_OPCION("Volver", "Volver al menu anterior.")
+ };
+ int opt;
+ while ((opt = menu_ejecutar(mi_menu, 4, "Recorrer Articulos")) != 3) {
+ art_recorrer_con_indice(ind[opt]);
+ }
+}
+
+void art_ver_ventas()
+{
+#ifdef cONDORITO
+ char desde_fecha[10], hasta_fecha[10];
+ t_Lista *lista;
+ t_Form *form;
+ WINDOW *win, *win1;
+ INDICE *idx;
+ CLAVE k_menor, k_mayor;
+
+ 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);
+
+ /* El usuario ingresa rango a listar */
+ form = form_crear(win1);
+ form_agregar_widget(form, INPUT, "Desde Fecha", 8, "");
+ form_agregar_widget(form, INPUT, "Hasta Fecha", 8, "");
+ form_ejecutar(form, 2, 2);
+
+ strcpy(desde_fecha, form_obtener_valor_char(form, "Desde Fecha"));
+ strcpy(hasta_fecha, form_obtener_valor_char(form, "Hasta Fecha"));
+
+ form_destruir(form);
+ werase(win1);
+ wrefresh(win1);
+ werase(win);
+ wrefresh(win);
+
+ /* Si el usuario no ingreso alguno de los datos, lo obtengo del indice */
+ /*idx = emufs_buscar_indice_por_nombre(fact_get_lst()->fp, "emision");*/
+
+ /* Uso el indice por numero de articulo */
+ idx = fact_get_lst()->fp->externo;
+
+ if (idx==NULL) PERR("INDICE EMISION NO SE ENCUENTRA!!");
+ if (strlen(desde_fecha) == 0) {
+ k_menor = idx->obtener_menor_clave(idx);
+ emufs_indice_obtener_valor_desde_clave(idx, k_menor, desde_fecha);
+ PERR("OBTUVE MENOR CLAVE DESDE EL INDICE");
+ PERR(desde_fecha);
+ }
+ if (strlen(hasta_fecha) == 0) {
+ k_mayor = idx->obtener_mayor_clave(idx);
+ emufs_indice_obtener_valor_desde_clave(idx, k_mayor, hasta_fecha);
+ PERR("OBTUVE MAYOR CLAVE DESDE EL INDICE");
+ PERR(hasta_fecha);
+ }
+
+ /* 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, "Fecha", DATO_STR, 0, 9); /* emision */
+ lista_agregar_columna(lista, "Numero", DATO_INT, 20, 8); /* numero articulo */
+ lista_agregar_columna(lista, "Cantidad", DATO_INT, 30, 10); /* estado */
+
+ /* Leo los datos desde el archivo */
+ while (k_menor.i_clave != -1) {
+ t_Factura fact;
+ int error, cant, i;
+ char *leo;
+ EMUFS_REG_SIZE size;
+ INDICE_DATO *datos;
+ CLAVE k1;
+ datos = idx->buscar_entradas(idx, k_menor, &cant);
+ for(i=0; i<cant; i++) {
+ error = 1;
+ k1.i_clave = datos[i].id;
+ leo = lst_facturas->fp->leer_registro(lst_facturas->fp, k1, &size, &error);
+ if (leo != NULL) {
+ procesar_leer_factura(&fact, leo, size, lst_facturas);
+ free(leo);
+ }
+ lista_agregar_fila(lista,
+ fact.emision,
+ get_estado(fact.estado),
+ get_forma_pago(fact.fp),
+ get_importe_factura(fact.items, fact.cant_items, fact.procdoi)
+ );
+ }
+ if (datos) free(datos);
+ if (fact.items) free(fact.items);
+ k_menor = idx->obtener_sig_clave(idx, k_menor);
+ }
+
+ curs_set(0);
+ lista_ejecutar(lista);
+ curs_set(1);
+ wrefresh(win1);
+ wrefresh(win);
+ werase(win1);
+ werase(win);
+ wrefresh(win);
+ delwin(win);
+#endif
+}
+
+void art_actualizar_stock(int numero, int cv)
+{
+ t_Articulo *articulo;
+ EMUFS_REG_ID dummy;
+ char *tmp;
+ EMUFS_REG_SIZE size;
+ int error, stock;
+
+ articulo = art_obtener(lst_articulos, numero, &dummy);
+ if (articulo != NULL) {
+ /* Actualizo el stock */
+ stock = atoi(articulo->existencia);
+ stock -= cv;
+ sprintf(articulo->existencia, "%d", stock);
+ tmp = procesar_guardar_articulo(articulo, &size, lst_articulos);
+ if (tmp) {
+ CLAVE k;
+ INDICE_DATO dummy1;
+ k.i_clave = numero;
+ EMUFS *fp;
+ /* dummy se pasa porque esto se hace por clave primaria, y el INDICE_DATO que se
+ * pasa solo es requerido cuando son claves multiples
+ */
+ PERR("Guardando modificacion de Stock");
+ error = 0;
+ fp = lst_articulos->fp;
+ PERR("Pase1");
+ fp->modificar_registro(fp, k, tmp, size, &error, dummy1);
+ PERR("Pase2");
+ PERR("Listo");
+ free(tmp);
+ }
+ }
+}
+
+static void dump_articulos(char *tmpfile)
+{
+ t_Articulo *art;
+ EMUFS_REG_ID id;
+ FILE *fp;
+ CLAVE k;
+ INDICE *idx;
+
+ idx = lst_articulos->fp->indices;
+
+ k = idx->obtener_menor_clave(idx);
+
+ if (!(fp = fopen(tmpfile, "wb"))) return;
+
+ while (k.i_clave != -1) {
+ art = art_obtener(lst_articulos, k.i_clave, &id);
+ if (art != NULL) {
+ fwrite(art, 1, sizeof(t_Articulo), fp);
+ free(art);
+ }
+ k = idx->obtener_sig_clave(idx, k);
+ }
+
+ fclose(fp);
+ return;