+void art_eliminar(char *s)
+{
+ WINDOW *win;
+ t_Articulo *articulo;
+
+ win = newwin(8, 68, 13, 1);
+ box(win, 0, 0);
+ wrefresh(win);
+
+ articulo = art_form_buscar(win);
+
+ if (articulo == NULL) {
+ 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();
+ } else {
+ /* TODO : Eliminar un registro */
+ }
+
+ werase(win);
+ wrefresh(win);
+ delwin(win);
+}
+
+void art_agregar(char *s)
+{
+ WINDOW *win;
+ t_Form *form;
+
+ win = newwin(8, 68, 13, 1);
+ box(win, 0, 0);
+ wrefresh(win);
+
+ form = form_crear(win);
+ form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
+ form_agregar_widget(form, INPUT, "Descripción", 50, "");
+ form_agregar_widget(form, INPUT, "Presentación", 30, "");
+ form_agregar_widget(form, INPUT, "Stock Actual", 8, "");
+ form_agregar_widget(form, INPUT, "PVU", 8, "");
+ form_agregar_widget(form, INPUT, "Stock Mínimo", 8, "");
+ form_ejecutar(form, 1,1);
+
+ /* TODO : Agregar el nuevo elemento */
+
+ form_destruir(form);
+
+ werase(win);
+ wrefresh(win);
+ delwin(win);
+}
+