]> git.llucax.com Git - z.facultad/75.06/emufs.git/commitdiff
* Poniendo linda a la cosa
authorRicardo Markiewicz <gazer.arg@gmail.com>
Sat, 10 Apr 2004 19:56:24 +0000 (19:56 +0000)
committerRicardo Markiewicz <gazer.arg@gmail.com>
Sat, 10 Apr 2004 19:56:24 +0000 (19:56 +0000)
emufs_gui/articulos.c

index db32b743586a7d1df530272cbb9297b79cbd36a4..537d051750548fc49b096807909e0e805375ffe7 100644 (file)
@@ -81,6 +81,7 @@ t_LstArticulos *art_cargar(const char *filename)
                xmlCleanupParser();
        } else {
                tmp->fp = emufs_abrir("articulos");
                xmlCleanupParser();
        } else {
                tmp->fp = emufs_abrir("articulos");
+               /* TODO Cargar registros desde el archivo */
        }
 
        lst_articulos = tmp;
        }
 
        lst_articulos = tmp;
@@ -143,7 +144,7 @@ void art_modificar(char *s)
        t_Articulo *articulo;
        char num[8];
 
        t_Articulo *articulo;
        char num[8];
 
-       win = newwin(8, 68, 13, 1);
+       win = newwin(8, COLS-2, 13, 1);
        box(win, 0, 0);
        wrefresh(win);
 
        box(win, 0, 0);
        wrefresh(win);
 
@@ -164,8 +165,13 @@ void art_modificar(char *s)
                
                form_destruir(form);
                free(articulo);
                
                form_destruir(form);
                free(articulo);
-       }       
-
+       } else {        
+               wattron(win, COLOR_PAIR(COLOR_YELLOW));
+               mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
+               wattroff(win, COLOR_PAIR(COLOR_YELLOW));
+               wrefresh(win);
+               getch();
+       }
        werase(win);
        wrefresh(win);
        delwin(win);
        werase(win);
        wrefresh(win);
        delwin(win);
@@ -176,7 +182,7 @@ void art_eliminar(char *s)
        WINDOW *win;
        t_Articulo *articulo;
 
        WINDOW *win;
        t_Articulo *articulo;
 
-       win = newwin(8, 68, 13, 1);
+       win = newwin(8, COLS-2, 13, 1);
        box(win, 0, 0);
        wrefresh(win);
 
        box(win, 0, 0);
        wrefresh(win);
 
@@ -203,7 +209,7 @@ void art_agregar(char *s)
        t_Form *form;
        t_Articulo art;
 
        t_Form *form;
        t_Articulo art;
 
-       win = newwin(8, 68, 13, 1);
+       win = newwin(8, COLS-2, 13, 1);
        box(win, 0, 0);
        wrefresh(win);
 
        box(win, 0, 0);
        wrefresh(win);