]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/articulos.c
ca82c02afb58555bb0b98c3d4e83d28277ea0d21
[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         t_LstArticulos *tmp;
14         lst_articulos = NULL;
15
16         tmp = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
17         if (tmp == NULL) return NULL;
18         tmp->cant = 0;
19         /*      tmp->array = (t_Reg_Articulo *)malloc(sizeof(t_Reg_Articulo)*tmp->cant);*/
20         printf("%p\n", tmp->array);
21
22         if (tmp->array == NULL) {
23                 printf("Fallo malloc\n");
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
115         for(i=0; i<lst->cant; i++) {
116                 if (n == lst->array[i].numero) {
117                         art = (t_Articulo *)malloc(sizeof(t_Articulo));
118                         /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
119                         tmp = lst->fp->leer_registro(lst->fp, lst->array[i].num_reg, &size);
120                         if (tmp == NULL) {
121                                 return NULL;
122                         }
123                         if (size == sizeof(t_Articulo)) {
124                                 memcpy(art, tmp, sizeof(t_Articulo));
125                         } else {
126                                 free(art);
127                                 art = NULL;
128                         }
129                         free(tmp);
130                         return art;
131                 }
132         }
133
134         return NULL;
135 }
136
137 t_Articulo *art_form_buscar(WINDOW *win)
138 {
139         t_Form *form;
140         t_Articulo *articulo;
141
142         form = form_crear(win);
143         form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
144         form_ejecutar(form, 1,1);
145         articulo = art_obtener(NULL, form_obtener_valor_char(form, "Numero de Artículo"));
146         form_destruir(form);
147
148         return articulo;
149 }
150
151 void art_modificar(char *s)
152 {
153         WINDOW *win;
154         t_Form *form;
155         t_Articulo *articulo;
156         char num[8];
157
158         win = newwin(8, COLS-2, 13, 1);
159         box(win, 0, 0);
160         wrefresh(win);
161
162         articulo = art_form_buscar(win);
163
164         if (articulo != NULL) {
165                 form = form_crear(win);
166                 sprintf(num, "%07d", articulo->numero);
167                 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
168                 form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
169                 form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
170                 form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
171                 form_agregar_widget(form, INPUT, "PVU", 8, articulo->pvu);
172                 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
173                 form_ejecutar(form, 1,1);
174
175                 /* TODO : Actualizar registro */
176                 
177                 form_destruir(form);
178                 free(articulo);
179         } else {        
180                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
181                 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
182                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
183                 wrefresh(win);
184                 getch();
185         }
186         werase(win);
187         wrefresh(win);
188         delwin(win);
189 }
190
191 void art_eliminar(char *s)
192 {
193         WINDOW *win;
194         t_Articulo *articulo;
195
196         win = newwin(8, COLS-2, 13, 1);
197         box(win, 0, 0);
198         wrefresh(win);
199
200         articulo = art_form_buscar(win);
201
202         if (articulo == NULL) {
203                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
204                 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
205                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
206                 wrefresh(win);
207                 getch();
208         } else {
209                 /* TODO : Eliminar un registro */
210         }
211
212         werase(win);
213         wrefresh(win);
214         delwin(win);
215 }
216
217 void art_agregar(char *s)
218 {
219         WINDOW *win;
220         t_Form *form;
221         t_Articulo art;
222
223         win = newwin(8, COLS-2, 13, 1);
224         box(win, 0, 0);
225         wrefresh(win);
226
227         form = form_crear(win);
228         form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
229         form_agregar_widget(form, INPUT, "Descripción", 50, "");
230         form_agregar_widget(form, INPUT, "Presentación", 30, "");
231         form_agregar_widget(form, INPUT, "Stock Actual", 8, "");
232         form_agregar_widget(form, INPUT, "PVU", 8, "");
233         form_agregar_widget(form, INPUT, "Stock Mínimo", 8, "");
234         form_ejecutar(form, 1,1);
235         
236         art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
237         strcpy(art.desc, form_obtener_valor_char(form, "Descripción"));
238         strcpy(art.presentacion, form_obtener_valor_char(form, "Presentación"));
239         strcpy(art.existencia, form_obtener_valor_char(form, "Stock Actual"));
240                                 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
241         strcpy(art.pvu, form_obtener_valor_char(form, "PVU"));
242         strcpy(art.emin, form_obtener_valor_char(form, "Stock Mínimo"));
243
244         /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
245         lst_articulos->array[lst_articulos->cant].num_reg = lst_articulos->fp->grabar_registro(lst_articulos->fp, &art, sizeof(t_Articulo));
246         lst_articulos->array[lst_articulos->cant].numero = art.numero;
247         lst_articulos->cant++;
248         
249         form_destruir(form);
250
251         werase(win);
252         wrefresh(win);
253         delwin(win);
254 }
255