int main_menu();
void menu_articulos();
+void menu_facturas();
+
/* cuadro de msg. w y h son de la ventana padre */
WINDOW *msg_box(WINDOW *win, int w, int h, const char *format, ...);
void msg_box_free(WINDOW *padre, WINDOW *win);
+typedef enum {PARAM_OK, SHOW_HELP, TIPO_NO_DEFINIDO, TIPO_INVALIDO, BLOQUE_NO_DEFINIDO} t_Param;
+
/* Verifica Argumentos */
-int param_ok(int argc, char *argv[])
+t_Param param_ok(int argc, char *argv[])
{
- int n;
- switch (argc) {
- case 1:
- return 1;
- case 2:
- if (strcmp("-h", argv[1]) == 0) {
- return 0;
+ int n,i;
+ for(i=1; i<argc; i++) {
+ if ((strcmp(argv[i], "-h")==0) || (strcmp(argv[i], "--help")==0)) return SHOW_HELP;
+
+ if (strcmp(argv[i]+strlen(argv[i])-3, "xml") == 0) {
+ /* Luego del archivo XML debe seguir el tipo */
+ if ((i+1)<argc) {
+ n = atoi(argv[i+1]);
+ if ((n < 1) || (n > 3)) return TIPO_INVALIDO;
+ if (((n == 1) || (n == 3)) && ((i+2)>=argc))
+ return BLOQUE_NO_DEFINIDO;
+ } else {
+ /* Ops, no hay mas parametros */
+ return TIPO_NO_DEFINIDO;
}
- case 3:
- n = atoi(argv[2]);
- if ((n<1) || (n>3))
- return 0;
+ }
}
- return 1;
+
+ return PARAM_OK;
}
void print_help(char *s)
int c, fin=0;
WINDOW *dialog;
- if (!param_ok(argc, argv)) {
- print_help(argv[0]);
- return -1;
+ switch (param_ok(argc, argv)) {
+ case SHOW_HELP:
+ print_help(argv[0]);
+ return 0;
+ case TIPO_NO_DEFINIDO:
+ printf("Falta parámetro requerido.\nLuego del nombre del archivo debe especificar el tipo de archivo\n");
+ return 1;
+ case BLOQUE_NO_DEFINIDO:
+ printf("Falta parámetro requerido.\nLuego del tipo de archivo debe especificar el tamaño del bloque a utilizar\n");
+ return 1;
+ case TIPO_INVALIDO:
+ printf("Tipo de archivo no valido. Los valores posibles para el tipo de archivo son:\n");
+ printf("\t1 - Archivo de bloque parametrizado y registro de long. variable.\n");
+ printf("\t2 - Archivo de registros variables sin bloques.\n");
+ printf("\t3 - Archivos de bloque parametrizado y registro de long. parametrizada.\n");
+ return 2;
+ case PARAM_OK:
+ fin = 0;
}
+#ifdef DEBUG
+ printf("CUIDADO! - Uds esta a punto de ejecutar EMUFS Gui compilado con mensajes de debug (-DDEBUG). ");
+ printf("Esto puede causar que ante un error alguna función trate de emitir un mensaje por pantalla ");
+ printf("haciendo que el aspecto visual se vea desvirtuado.\n\n");
+ printf("Todos los mensajes de error se envian por stderr, por lo que es conveniente que vuelva a ejecutar ");
+ printf("el programa de la siguiente manera :\n");
+ printf("\t#> %s <parametros> 2> error.log\n\n", argv[0]);
+ printf("De esta forma el SO se encargaga de redirigir stderr al archivo error.log y evitar algun problema en ");
+ printf("visualizacion de la aplicacion.\n");
+ printf("Para continuar **bajo su propio riesgo** presione una tecla. Puede cancelar la ejecucion en este punto con CTRL+C\n");
+ fgetc(stdin);
+#endif
+
/* Inicio Curses */
signal(SIGINT, finish);
initscr();
wrefresh(stdscr);
dialog = msg_box(stdscr, COLS, LINES, "Generando archivos ...");
- if (argc == 3) {
- art_cargar(argv[1], atoi(argv[2]));
- fact_cargar(argv[1]);
+ if (argc == 4) {
+ art_cargar(argv[1], atoi(argv[2]), atoi(argv[3]));
+ if (!fact_cargar("facturas.xml", 3, 400))
+ fprintf(stderr, "ERROR CARGANDO FACTURAS\n");
} else
- art_cargar(NULL, -1);
+ art_cargar(NULL, -1, -1);
msg_box_free(stdscr, dialog);
case 0:
menu_articulos();
break;
- // case 1:
+ case 1:
+ menu_facturas();
+ break;
case 2:
dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
ver_registros(dialog, COLS-2, LINES-4);
return 0;
}
+void menu_facturas()
+{
+ WINDOW *menu_win;
+ MENU *menu;
+ ITEM **items;
+ int c, salir;
+ char *opciones[] = {
+ "Alta",
+ "Baja",
+ "Modificacion",
+ "Volver"
+ };
+
+ items = (ITEM **)calloc(5, sizeof(ITEM *));
+
+ items[0] = new_item(opciones[0], "Crear una nueva factura.");
+ set_item_userptr(items[0], fact_agregar);
+ items[1] = new_item(opciones[1], "Eliminar una factura existente.");
+/* set_item_userptr(items[1], art_eliminar); */
+ items[2] = new_item(opciones[2], "Modificar una factura existente.");
+ set_item_userptr(items[2], fact_modificar);
+ items[3] = new_item(opciones[3], "Volver al menu anterior.");
+ items[4] = NULL;
+
+ menu = new_menu((ITEM **)items);
+ menu_win = newwin(8, COLS-2, 3, 1);
+ keypad(menu_win, TRUE);
+ set_menu_mark(menu, " > ");
+ set_menu_win(menu, menu_win);
+ set_menu_sub(menu, derwin(menu_win, 5, COLS-4, 3, 1));
+
+ box(menu_win, 0, 0);
+ mvwaddch(menu_win, 2, 0, ACS_LTEE);
+ mvwhline(menu_win, 2, 1, ACS_HLINE, COLS-3);
+ mvwaddch(menu_win, 2, COLS-3, ACS_RTEE);
+ wattron(menu_win, COLOR_PAIR(COLOR_RED));
+ mvwaddstr(menu_win, 1, 1, "Menu Facturas");
+ wattroff(menu_win, COLOR_PAIR(COLOR_RED));
+ post_menu(menu);
+ wrefresh(menu_win);
+
+ curs_set(0);
+ salir = 0;
+ while((!salir) && (c = getch()) != KEY_F(3)) {
+ switch(c) {
+ case KEY_DOWN:
+ menu_driver(menu, REQ_DOWN_ITEM);
+ break;
+ case KEY_UP:
+ menu_driver(menu, REQ_UP_ITEM);
+ break;
+ case 13:
+ case 10: {
+ ITEM *cur;
+ void (*p)(char *);
+
+ cur = current_item(menu);
+ if (strcmp(item_name(cur), opciones[3]) == 0) {
+ salir = 1;
+ } else {
+ p = item_userptr(cur);
+ unpost_menu(menu);
+ refresh();
+ p(NULL); /* Paso NULL para que ejecute la accion por defecto */
+ post_menu(menu);
+ box(menu_win,0,0);
+ mvwaddch(menu_win, 2, 0, ACS_LTEE);
+ mvwhline(menu_win, 2, 1, ACS_HLINE, 67);
+ mvwaddch(menu_win, 2, 67, ACS_RTEE);
+ wrefresh(menu_win);
+ }
+ pos_menu_cursor(menu);
+ }
+ }
+ wrefresh(menu_win);
+ }
+ curs_set(1);
+
+ unpost_menu(menu);
+ delwin(menu_win);
+ free_item(items[0]);
+ free_item(items[1]);
+ free_item(items[2]);
+ free_item(items[3]);
+ free_menu(menu);
+}
void menu_articulos()
{
WINDOW *menu_win;