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