]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/articulos.c
f816fc5f5016735eb381a311d63bffa371c6ee5f
[z.facultad/75.06/emufs.git] / emufs_gui / articulos.c
1
2 #include "articulos.h"
3
4 static t_LstArticulos *lst_articulos;
5
6 static t_Articulo *art_form_buscar(WINDOW *win);
7
8 static int procesar_articulo(t_Articulo *dst, void *src, int size, t_LstArticulos *lst);
9
10 t_LstArticulos *art_cargar(const char *filename)
11 {
12         xmlDocPtr document;
13         xmlNode *node, *inicio;
14         int cant;
15         t_LstArticulos *tmp;
16         lst_articulos = NULL;
17
18         tmp = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
19         if (tmp == NULL) return NULL;
20         tmp->cant = 0;
21         /*      tmp->array = (t_Reg_Articulo *)malloc(sizeof(t_Reg_Articulo)*tmp->cant);*/
22
23         if (tmp->array == NULL) {
24                 free(tmp);
25                 return NULL;
26         }
27
28         if (filename != NULL) {
29                 document = xmlReadFile(filename, "ISO-8859-1",0);
30                 if (document == NULL) {
31                         return NULL;
32                 }
33
34                 inicio = NULL;
35                 node = xmlDocGetRootElement(document);
36                 /* Busco el TAG principal "ARTICULOS" */
37                 while (node) {
38                         if (node->type == XML_ELEMENT_NODE) {
39                                 if (strcmp(node->name, "ARTICULOS") == 0) {
40                                         inicio = node->children;
41                                         break;
42                                 }
43                         }
44                         node = node->next;
45                 }
46
47                 /* Cuento la cantidad de articulos en el archivo */
48                 cant = 0;
49                 for ( ; node ; node = node->next) {
50                         if (node->type == XML_ELEMENT_NODE) {
51                                 if (strcmp(node->name, "ARTICULO") == 0) {
52                                         ++cant;
53                                 }
54                         }       
55                 }
56
57                 /* leo los datos y los guardo en el archivo*/
58                 cant = 0;
59                 /* FIXME : por ahora hago que entren 2 bloques y me sobre algo de espacio*/
60                 tmp->fp = emufs_crear("articulos", T3, sizeof(t_Articulo)*2, sizeof(t_Articulo)); 
61                 for (node=inicio ; node ; node = node->next) {
62                         if (node->type == XML_ELEMENT_NODE) {
63                                 if (strcmp(node->name, "ARTICULO") == 0) {
64                                         t_Articulo art;
65                                         art.numero = atoi(xmlGetProp(node, "NroArtículo"));
66                                         strncpy(art.desc, xmlGetProp(node, "Descripción"), 50);
67                                         strncpy(art.presentacion, xmlGetProp(node, "Presentación"), 30);
68                                         strncpy(art.existencia, xmlGetProp(node, "Existencia"), 8);
69                                         /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
70                                         strncpy(art.pvu, xmlGetProp(node, "PVU"), 8);
71                                         strncpy(art.emin, xmlGetProp(node, "Emín"), 8);
72                                         /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
73                                         tmp->array[cant].num_reg = tmp->fp->grabar_registro(tmp->fp, &art, sizeof(t_Articulo));
74                                         tmp->array[cant].numero = art.numero;
75                                         ++cant;
76                                 }
77                         }
78                 }
79                 tmp->cant = cant;
80                 xmlFreeDoc(document);
81                 xmlCleanupParser();
82         } else {
83                 tmp->fp = emufs_abrir("articulos");
84                 /* TODO Cargar registros desde el archivo */
85         }
86
87         lst_articulos = tmp;
88         return tmp;
89 }
90
91 int art_liberar(t_LstArticulos *l)
92 {
93         if (l == NULL) l = lst_articulos;
94         if (l == NULL) return 1;
95
96         ver_archivo_FS(l->fp);
97         emufs_destruir(l->fp);
98         free(l->array);
99         free(l);
100
101         lst_articulos = NULL;
102         return 0;
103 }
104
105 t_Articulo *art_obtener(t_LstArticulos *lst, const char *numero)
106 {
107         /* FIXME : NO ME GUSTA :-/ */
108         t_Articulo *art;
109         void *tmp;
110         int i,size;
111         int n = atoi(numero);
112
113         if (lst == NULL) lst = lst_articulos;
114         if (lst == NULL) return NULL;
115
116         for(i=0; i<lst->cant; i++) {
117                 if (n == lst->array[i].numero) {
118                         art = (t_Articulo *)malloc(sizeof(t_Articulo));
119                         /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
120                         tmp = lst->fp->leer_registro(lst->fp, lst->array[i].num_reg, &size);
121                         
122                         if (procesar_articulo(art, tmp, size, lst_articulos) != 1) {
123                                 free(art);
124                                 free(tmp);
125                                 return NULL;
126                         }
127                         free(tmp);
128                         return art;
129                 }
130         }
131
132         return NULL;
133 }
134
135 t_Articulo *art_form_buscar(WINDOW *win)
136 {
137         t_Form *form;
138         t_Articulo *articulo;
139
140         form = form_crear(win);
141         form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
142         form_ejecutar(form, 1,1);
143         articulo = art_obtener(NULL, form_obtener_valor_char(form, "Numero de Artículo"));
144         form_destruir(form);
145
146         return articulo;
147 }
148
149 void art_modificar(char *s)
150 {
151         WINDOW *win;
152         t_Form *form;
153         t_Articulo *articulo;
154         char num[8];
155
156         win = newwin(8, COLS-2, 13, 1);
157         box(win, 0, 0);
158         wrefresh(win);
159
160         articulo = art_form_buscar(win);
161
162         if (articulo != NULL) {
163                 form = form_crear(win);
164                 sprintf(num, "%07d", articulo->numero);
165                 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
166                 form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
167                 form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
168                 form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
169                 form_agregar_widget(form, INPUT, "PVU", 8, articulo->pvu);
170                 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
171                 form_ejecutar(form, 1,1);
172
173                 /* TODO : Actualizar registro */
174                 
175                 form_destruir(form);
176                 free(articulo);
177         } else {        
178                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
179                 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
180                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
181                 wrefresh(win);
182                 getch();
183         }
184         werase(win);
185         wrefresh(win);
186         delwin(win);
187 }
188
189 void art_eliminar(char *s)
190 {
191         WINDOW *win;
192         t_Articulo *articulo;
193
194         win = newwin(8, COLS-2, 13, 1);
195         box(win, 0, 0);
196         wrefresh(win);
197
198         articulo = art_form_buscar(win);
199
200         if (articulo == NULL) {
201                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
202                 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
203                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
204                 wrefresh(win);
205                 getch();
206         } else {
207                 /* TODO : Eliminar un registro */
208         }
209
210         werase(win);
211         wrefresh(win);
212         delwin(win);
213 }
214
215 void art_agregar(char *s)
216 {
217         WINDOW *win;
218         t_Form *form;
219         t_Articulo art;
220
221         win = newwin(8, COLS-2, 13, 1);
222         box(win, 0, 0);
223         wrefresh(win);
224
225         form = form_crear(win);
226         form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
227         form_agregar_widget(form, INPUT, "Descripción", 50, "");
228         form_agregar_widget(form, INPUT, "Presentación", 30, "");
229         form_agregar_widget(form, INPUT, "Stock Actual", 8, "");
230         form_agregar_widget(form, INPUT, "PVU", 8, "");
231         form_agregar_widget(form, INPUT, "Stock Mínimo", 8, "");
232         form_ejecutar(form, 1,1);
233         
234         art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
235         strcpy(art.desc, form_obtener_valor_char(form, "Descripción"));
236         strcpy(art.presentacion, form_obtener_valor_char(form, "Presentación"));
237         strcpy(art.existencia, form_obtener_valor_char(form, "Stock Actual"));
238                                 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
239         strcpy(art.pvu, form_obtener_valor_char(form, "PVU"));
240         strcpy(art.emin, form_obtener_valor_char(form, "Stock Mínimo"));
241
242         /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
243         lst_articulos->array[lst_articulos->cant].num_reg = lst_articulos->fp->grabar_registro(lst_articulos->fp, &art, sizeof(t_Articulo));
244         lst_articulos->array[lst_articulos->cant].numero = art.numero;
245         lst_articulos->cant++;
246         
247         form_destruir(form);
248
249         werase(win);
250         wrefresh(win);
251         delwin(win);
252 }
253
254 int procesar_articulo(t_Articulo *dst, void *src, int size, t_LstArticulos *lst)
255 {
256         switch (lst->fp->tipo) {
257                 case T1:
258                 case T2:
259                         /* TODO : Leer campos variales */
260                         break;
261                 case T3:
262                         if (size != sizeof(t_Articulo)) {
263                                 return 0; /* El tamaño no encaja!! */
264                         }
265                         memcpy(dst, src, size);
266         }
267
268         return 1; /* Todo ok */
269 }
270