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