4 t_LstArticulos *lst_articulos;
6 t_Articulo *art_form_buscar(WINDOW *win);
8 t_LstArticulos *art_cargar(const char *filename)
11 xmlNode *node, *inicio;
15 document = xmlReadFile(filename, "ISO-8859-1",0);
16 if (document == NULL) {
21 node = xmlDocGetRootElement(document);
22 /* Busco el TAG principal "ARTICULOS" */
24 if (node->type == XML_ELEMENT_NODE) {
25 if (strcmp(node->name, "ARTICULOS") == 0) {
26 inicio = node->children;
33 /* Cuento la cantidad de articulos en el archivo */
35 for ( ; node ; node = node->next) {
36 if (node->type == XML_ELEMENT_NODE) {
37 if (strcmp(node->name, "ARTICULO") == 0) {
42 t_LstArticulos *tmp = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
43 if (tmp == NULL) return NULL;
45 tmp->array = (t_Reg_Articulo *)malloc(sizeof(t_Reg_Articulo)*cant);
47 if (tmp->array == NULL) {
48 printf("Fallo malloc\n");
55 /* leo los datos y los guardo en el archivo*/
57 /* FIXME : por ahora hago que entren 2 bloques y me sobre algo de espacio*/
58 tmp->fp = emufs_crear("articulos", T3, sizeof(t_Articulo)*2, sizeof(t_Articulo));
59 for (node=inicio ; node ; node = node->next) {
60 if (node->type == XML_ELEMENT_NODE) {
61 if (strcmp(node->name, "ARTICULO") == 0) {
63 /* art.numero = atoi(xmlGetProp(node, "NroArtículo"));*/
64 /* strncpy(art.desc, xmlGetProp(node, "Descripción"), 50);
65 strncpy(art.presentacion, xmlGetProp(node, "Presentación"), 30);
66 strncpy(art.existencia, xmlGetProp(node, "Existencia"), 8);*/
67 /* strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
68 strncpy(art.pvu, xmlGetProp(node, "PVU"), 8);
69 /* strncpy(art.emin, xmlGetProp(node, "Emín"), 8); */
71 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
72 tmp->array[cant].num_reg = tmp->fp->grabar_registro(tmp->fp, &art, sizeof(t_Articulo)); /* REGISTRO CTE! */
73 tmp->array[cant].numero = art.numero;
86 int art_liberar(t_LstArticulos *l)
88 if (l == NULL) l = lst_articulos;
89 if (l == NULL) return 1;
91 ver_archivo_FS(l->fp);
92 emufs_destruir(l->fp);
100 t_Articulo *art_obtener(t_LstArticulos *lst, const char *numero)
102 /* FIXME : NO ME GUSTA :-/ */
105 int n = atoi(numero);
107 if (lst == NULL) lst = lst_articulos;
109 for(i=0; i<lst->cant; i++) {
110 if (n == lst->array[i].numero) {
111 art = (t_Articulo *)malloc(sizeof(t_Articulo));
112 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
113 lst->fp->leer_registro(lst->fp, lst->array[i].num_reg, art, sizeof(t_Articulo));
121 t_Articulo *art_form_buscar(WINDOW *win)
124 t_Articulo *articulo;
126 form = form_crear(win);
127 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
128 form_ejecutar(form, 1,1);
129 articulo = art_obtener(NULL, form_obtener_valor_char(form, "Numero de Artículo"));
135 void art_modificar(char *s)
139 t_Articulo *articulo;
142 win = newwin(8, 68, 13, 1);
146 articulo = art_form_buscar(win);
148 if (articulo != NULL) {
149 form = form_crear(win);
150 sprintf(num, "%07d", articulo->numero);
151 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
152 form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
153 form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
154 form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
155 form_agregar_widget(form, INPUT, "PVU", 8, articulo->pvu);
156 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
157 form_ejecutar(form, 1,1);
159 /* TODO : Actualizar registro */
170 void art_eliminar(char *s)
173 t_Articulo *articulo;
175 win = newwin(8, 68, 13, 1);
179 articulo = art_form_buscar(win);
181 if (articulo == NULL) {
182 wattron(win, COLOR_PAIR(COLOR_YELLOW));
183 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
184 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
188 /* TODO : Eliminar un registro */
196 void art_agregar(char *s)
201 win = newwin(8, 68, 13, 1);
205 form = form_crear(win);
206 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
207 form_agregar_widget(form, INPUT, "Descripción", 50, "");
208 form_agregar_widget(form, INPUT, "Presentación", 30, "");
209 form_agregar_widget(form, INPUT, "Stock Actual", 8, "");
210 form_agregar_widget(form, INPUT, "PVU", 8, "");
211 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, "");
212 form_ejecutar(form, 1,1);
214 /* TODO : Agregar el nuevo elemento */