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