void menu_estadisticas();
void menu_ver_registros();
void menu_ver_bloques();
-void preguntar_nuevo_tipo(int *tipo, int *tam_bloque, int *tam_reg);
+void preguntar_nuevo_tipo(const char *title, int *tipo, int *tam_bloque, int *tam_reg);
+char *preguntar_file();
void ver_estadisticas(EMUFS *fp);
if (((n == 1) || (n == 3)) && ((i+2)>=argc))
return BLOQUE_NO_DEFINIDO;
parametros.tipo_arch_fact = n;
- parametros.tam_bloque_fact = atoi(argv[i+2]);
- if (parametros.tam_bloque_fact <= 0) return NULL_BLOCK_FOUND;
+ if (n != 2) {
+ parametros.tam_bloque_fact = atoi(argv[i+2]);
+ if (parametros.tam_bloque_fact <= 0) return NULL_BLOCK_FOUND;
+ }
parametros.xml_fact = i;
} else {
/* Ops, no hay mas parametros */
WINDOW *dialog;
while ((opt = menu_ejecutar(mi_menu, 4, "Menu Ver Registros")) != 3) {
- switch (opt) {
- case 0:
- dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
- ver_registros(dialog, COLS-2, LINES-4, 0);
- werase(dialog);
- wrefresh(dialog);
- delwin(dialog);
- refresh();
- break;
- case 1:
- dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
- ver_registros(dialog, COLS-2, LINES-4, 1);
- werase(dialog);
- wrefresh(dialog);
- delwin(dialog);
- refresh();
- /* break; */
- /* case 2: */
- }
+ dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
+ ver_registros(dialog, COLS-2, LINES-4, opt);
+ werase(dialog);
+ wrefresh(dialog);
+ delwin(dialog);
+ refresh();
}
}
MENU_OPCION("Compactar Notas","Elimina espacio no utilizado."),
MENU_OPCION("Cambiar tipo Archivo Articulos","Permite cambiar el tipo del archivo."),
MENU_OPCION("Cambiar tipo Archivo Facturas","Permite cambiar el tipo del archivo."),
- MENU_OPCION("Cambiar tipo Archivo Notas","Permite cambiar el tipo del archivo."),
+ MENU_OPCION("Exportar Articulos", "Genera un archivo XML con los articulos."),
+ MENU_OPCION("Expostar Facturas", "Genera un archivo XML con las facturas."),
MENU_OPCION("Volver", "Volver al menu anterior.")
};
int opt;
- int nuevo_tam_registro, nuevo_tam_bloque;
- int nuevo_tipo;
+ int nuevo_tam_registro, nuevo_tam_bloque, nuevo_tipo;
+ int nuevo_tam_registro1, nuevo_tam_bloque1, nuevo_tipo1;
WINDOW *dlg;
+ char *s;
- while ((opt = menu_ejecutar(mi_menu, 7, "Menu Mantenimiento")) != 6) {
+ while ((opt = menu_ejecutar(mi_menu, 8, "Menu Mantenimiento")) != 7) {
switch (opt) {
case 0:
dlg = msg_box(stdscr, COLS, LINES, "Compactando archivo.... Aguarde");
break;
case 3:
nuevo_tam_registro = -1; /* No permito cambiar el tamaño de registro */
- preguntar_nuevo_tipo(&nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
+ preguntar_nuevo_tipo("Parametros para Articulos", &nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
dlg = msg_box(stdscr, COLS, LINES, "Cambiando el formato de archivo .... Aguarde");
art_reformatear(nuevo_tipo, nuevo_tam_bloque, nuevo_tam_registro);
msg_box_free(stdscr, dlg);
break;
case 4:
nuevo_tam_registro = 0;
- preguntar_nuevo_tipo(&nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
- break;
+ preguntar_nuevo_tipo("Parametros para Facturas", &nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
+ preguntar_nuevo_tipo("Parametros para Notas", &nuevo_tipo1, &nuevo_tam_bloque1, &nuevo_tam_registro1);
+ dlg = msg_box(stdscr, COLS, LINES, "Cambiando el formato de archivo .... Aguarde");
+ fact_reformatear(nuevo_tipo, nuevo_tam_bloque, nuevo_tam_registro, nuevo_tipo1, nuevo_tam_bloque1, nuevo_tam_registro1);
+ msg_box_free(stdscr, dlg);
case 5:
- nuevo_tam_registro = -2;
- preguntar_nuevo_tipo(&nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
+ s = preguntar_file();
+ if (s) {
+ dlg = msg_box(stdscr, COLS, LINES, "Exportando .... Aguarde");
+ PERR("Exportando");
+ art_exportar_xml(s);
+ msg_box_free(stdscr, dlg);
+ free(s);
+ }
+ break;
+ case 6:
+ s = preguntar_file();
+ if (s) {
+ dlg = msg_box(stdscr, COLS, LINES, "Exportando .... Aguarde");
+ PERR("Exportando");
+ fact_exportar_xml(s);
+ msg_box_free(stdscr, dlg);
+ free(s);
+ }
}
}
}
-void preguntar_nuevo_tipo(int *tipo, int *tam_bloque, int *tam_reg)
+void preguntar_nuevo_tipo(const char *title, int *tipo, int *tam_bloque, int *tam_reg)
{
WINDOW *win;
t_Form *form;
win = newwin(LINES/2, COLS/2, LINES/4, COLS/4);
box(win, 0, 0);
+ mvwaddstr(win, 0, 1, title);
form = form_crear(win);
form_agregar_widget(form, RADIO, "Tipo de archivo", 3, "T1,T2,T3");
form_ejecutar(form, 1,1);
waddstr(win, s);
}
+ if ((fp->tipo == T1) || (fp->tipo == T3)) {
+ wattron(win, A_BOLD);
+ mvwaddstr(win, i++, 1, "Cantidad de bloques : ");
+ wattroff(win, A_BOLD);
+ sprintf(s, "%lu", stats.cant_bloques);
+ waddstr(win, s);
+ }
+
wattron(win, A_BOLD);
mvwaddstr(win, i++, 1, "Cant. Registros : ");
wattroff(win, A_BOLD);
waddstr(win, s);
wattron(win, A_BOLD);
- mvwaddstr(win, i++, 1, "Tamaño de Archivo : ");
+ mvwaddstr(win, i++, 1, "Tamaño de Archivo de datos : ");
wattroff(win, A_BOLD);
sprintf(s, "%lu bytes", stats.tam_archivo);
waddstr(win, s);
wattron(win, A_BOLD);
- mvwaddstr(win, i++, 1, "Tamaño de Datos : ");
+ mvwaddstr(win, i++, 1, "Tamaño de Archivos auxiliares : ");
+ wattroff(win, A_BOLD);
+ sprintf(s, "%lu bytes", stats.tam_archivos_aux);
+ waddstr(win, s);
+
+ wattron(win, A_BOLD);
+ mvwaddstr(win, i++, 1, "Tamaño ocupado por datos : ");
wattroff(win, A_BOLD);
- sprintf(s, "%lu bytes (%.2f %%)", stats.tam_archivo-stats.tam_info_control_dat, (stats.tam_archivo-stats.tam_info_control_dat)*100.0f/(float)stats.tam_archivo);
+ sprintf(s, "%lu bytes (%.2f %%)", stats.tam_archivo - stats.tam_info_control_dat, (stats.tam_archivo-stats.tam_info_control_dat)*100.0f/(float)stats.tam_archivo);
waddstr(win, s);
wattron(win, A_BOLD);
- mvwaddstr(win, i++, 1, "Tamaño de Info de Control : ");
+ mvwaddstr(win, i++, 1, "Tamaño ocupado por datos de control : ");
wattroff(win, A_BOLD);
- sprintf(s, "%lu bytes (%.2f %%)", stats.tam_info_control_dat+stats.tam_archivos_aux, (stats.tam_info_control_dat+stats.tam_archivos_aux)*100.0f/(float)stats.tam_archivo);
+ sprintf(s, "%lu bytes (%.2f %%)", stats.tam_info_control_dat, stats.tam_info_control_dat*100.0f/(float)stats.tam_archivo);
waddstr(win, s);
wattron(win, A_BOLD);
sprintf(s, "%lu bytes", stats.min_fs);
waddstr(win, s);
- wattron(win, A_BOLD);
- mvwaddstr(win, i++, 1, "Cantidad de bloques : ");
- wattroff(win, A_BOLD);
- sprintf(s, "%lu", stats.cant_bloques);
- waddstr(win, s);
wattron(win, A_BLINK);
mvwaddstr(win, i+2, 1, "Presione una tecla para continuar.");
delwin(win);
}
+char *preguntar_file()
+{
+ WINDOW *win;
+ t_Form *form;
+ char *s, *t;
+
+ win = newwin(LINES/2, COLS/2, LINES/4, COLS/4);
+ box(win, 0, 0);
+
+ form = form_crear(win);
+ form_agregar_widget(form, INPUT, "Nombre de archivo", 30, "");
+ form_ejecutar(form, 1,1);
+
+ s = form_obtener_valor_char(form, "Nombre de archivo");
+
+ if (strlen(s) == 0) {
+ form_destruir(form);
+ return NULL;
+ }
+ t = (char *)malloc(sizeof(char*)*(strlen(s)+1));
+ strcpy(t, s);
+ form_destruir(form);
+ return t;
+}
+
+