]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/articulos.c
6226225faf7096701c2055f91bc9112b0894f81f
[z.facultad/75.06/emufs.git] / emufs_gui / articulos.c
1
2 #include "articulos.h"
3
4 t_LstArticulos *lst_articulos;
5
6 t_Articulo *art_form_buscar(WINDOW *win);
7
8 t_LstArticulos *art_cargar(const char *filename)
9 {
10         xmlDocPtr document;
11         xmlNode *node, *inicio;
12         int cant;
13
14
15         document = xmlReadFile(filename, "ISO-8859-1",0);
16         if (document == NULL) {
17                 return NULL;
18         }
19
20         inicio = NULL;
21         node = xmlDocGetRootElement(document);
22         /* Busco el TAG principal "ARTICULOS" */
23         while (node) {
24                 if (node->type == XML_ELEMENT_NODE) {
25                         if (strcmp(node->name, "ARTICULOS") == 0) {
26                                 inicio = node->children;
27                                 break;
28                         }
29                 }
30                 node = node->next;
31         }
32
33         /* Cuento la cantidad de articulos en el archivo */
34         cant = 0;
35         for ( ; node ; node = node->next) {
36                 if (node->type == XML_ELEMENT_NODE) {
37                         if (strcmp(node->name, "ARTICULO") == 0) {
38                                 ++cant;
39                         }
40                 }       
41         }
42         t_LstArticulos *tmp = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
43         if (tmp == NULL) return NULL;
44         tmp->cant = cant;
45         tmp->array = (t_Reg_Articulo *)malloc(sizeof(t_Reg_Articulo)*cant);
46
47         if (tmp->array == NULL) {
48                 printf("Fallo malloc\n");
49                 xmlFreeDoc(document);
50                 xmlCleanupParser();
51                 free(tmp);
52                 return NULL;
53         }
54
55         /* leo los datos y los guardo en el archivo*/
56         cant = 0;
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) {
62                                 t_Articulo art;
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); */
70
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;
74                                 ++cant;
75                         }
76                 }
77         }
78         printf("1\n");
79         xmlFreeDoc(document);
80         xmlCleanupParser();
81
82         lst_articulos = tmp;
83         return tmp;
84 }
85
86 int art_liberar(t_LstArticulos *l)
87 {
88         if (l == NULL) l = lst_articulos;
89         if (l == NULL) return 1;
90
91         ver_archivo_FS(l->fp);
92         emufs_destruir(l->fp);
93         free(l->array);
94         free(l);
95
96         lst_articulos = NULL;
97         return 0;
98 }
99
100 t_Articulo *art_obtener(t_LstArticulos *lst, const char *numero)
101 {
102         /* FIXME : NO ME GUSTA :-/ */
103         t_Articulo *art;
104         int i;
105         int n = atoi(numero);
106
107         if (lst == NULL) lst = lst_articulos;
108
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));
114                         return art;
115                 }
116         }
117
118         return NULL;
119 }
120
121 t_Articulo *art_form_buscar(WINDOW *win)
122 {
123         t_Form *form;
124         t_Articulo *articulo;
125
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"));
130         form_destruir(form);
131
132         return articulo;
133 }
134
135 void art_modificar(char *s)
136 {
137         WINDOW *win;
138         t_Form *form;
139         t_Articulo *articulo;
140         char num[8];
141
142         win = newwin(8, 68, 13, 1);
143         box(win, 0, 0);
144         wrefresh(win);
145
146         articulo = art_form_buscar(win);
147
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);
158
159                 /* TODO : Actualizar registro */
160                 
161                 form_destruir(form);
162                 free(articulo);
163         }       
164
165         werase(win);
166         wrefresh(win);
167         delwin(win);
168 }
169
170 void art_eliminar(char *s)
171 {
172         WINDOW *win;
173         t_Articulo *articulo;
174
175         win = newwin(8, 68, 13, 1);
176         box(win, 0, 0);
177         wrefresh(win);
178
179         articulo = art_form_buscar(win);
180
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));
185                 wrefresh(win);
186                 getch();
187         } else {
188                 /* TODO : Eliminar un registro */
189         }
190
191         werase(win);
192         wrefresh(win);
193         delwin(win);
194 }
195
196 void art_agregar(char *s)
197 {
198         WINDOW *win;
199         t_Form *form;
200
201         win = newwin(8, 68, 13, 1);
202         box(win, 0, 0);
203         wrefresh(win);
204
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);
213         
214         /* TODO : Agregar el nuevo elemento */
215
216         form_destruir(form);
217
218         werase(win);
219         wrefresh(win);
220         delwin(win);
221 }
222