parametros.tam_bloque_nota = atoi(argv[i]);
if (parametros.tam_bloque_nota <= 0) return SHOW_HELP;
}
+ break;
+ case 2:
+ if (i >= argc) return SHOW_HELP;
+ n = atoi(argv[i]);
+ if ((n<1) || (n>3)) return SHOW_HELP;
+ parametros.tipo_arch_nota = n;
+ if (((n == 1) || (n == 3)) && ((i+1)>=argc))
+ return SHOW_HELP;
+ i++;
+ if (n != 2) {
+ parametros.tam_bloque_nota = atoi(argv[i]);
+ if (parametros.tam_bloque_nota <= 0) return SHOW_HELP;
+ }
}
PERR("ACA");
parametros.xml_fact = file;
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);
+ break;
case 5:
s = preguntar_file();
if (s) {
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);
- sprintf(s, "%lu", stats.cant_registros);
- waddstr(win, s);
-
- wattron(win, A_BOLD);
- 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 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", stats.min_fs);
waddstr(win, s);
+ wattron(win, A_BOLD);
+ 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 Archivos auxiliares : ");
+ wattroff(win, A_BOLD);
+ sprintf(s, "%lu bytes", stats.tam_archivos_aux);
+ 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);
+ sprintf(s, "%lu", stats.cant_registros);
+ waddstr(win, s);
wattron(win, A_BLINK);
mvwaddstr(win, i+2, 1, "Presione una tecla para continuar.");