5 static t_LstArticulos *lst_articulos;
7 static t_Articulo *art_form_buscar(WINDOW *win);
9 static void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst);
10 static int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst);
12 t_LstArticulos *art_cargar(const char *filename)
15 xmlNode *node, *inicio;
16 int cant, error = 0, i, id;
21 tmp = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
22 if (tmp == NULL) return NULL;
25 /* tmp->array = (t_Reg_Articulo *)malloc(sizeof(t_Reg_Articulo)*tmp->cant);*/
27 if (tmp->array == NULL) {
32 if (filename != NULL) {
33 document = xmlReadFile(filename, "ISO-8859-1",0);
34 if (document == NULL) {
39 node = xmlDocGetRootElement(document);
40 /* Busco el TAG principal "ARTICULOS" */
42 if (node->type == XML_ELEMENT_NODE) {
43 if (strcmp(node->name, "ARTICULOS") == 0) {
44 inicio = node->children;
51 /* Cuento la cantidad de articulos en el archivo */
53 for ( ; node ; node = node->next) {
54 if (node->type == XML_ELEMENT_NODE) {
55 if (strcmp(node->name, "ARTICULO") == 0) {
61 /* leo los datos y los guardo en el archivo*/
63 /* FIXME : por ahora hago que entren 2 bloques y me sobre algo de espacio*/
64 tmp->fp = emufs_crear("articulos", T2, sizeof(t_Articulo)*2, sizeof(t_Articulo));
65 for (node=inicio ; node ; node = node->next) {
66 if (node->type == XML_ELEMENT_NODE) {
67 if (strcmp(node->name, "ARTICULO") == 0) {
70 art.numero = atoi(xmlGetProp(node, "NroArtículo"));
71 strncpy(art.desc, xmlGetProp(node, "Descripción"), 50);
72 strncpy(art.presentacion, xmlGetProp(node, "Presentación"), 30);
73 strncpy(art.existencia, xmlGetProp(node, "Existencia"), 8);
74 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
75 strncpy(art.pvu, xmlGetProp(node, "PVU"), 8);
76 strncpy(art.emin, xmlGetProp(node, "Emín"), 8);
77 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
78 save = procesar_guardar_articulo(&art, &size, lst_articulos);
80 tmp->array[cant].num_reg = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
81 tmp->array[cant].numero = art.numero;
92 tmp->fp = emufs_abrir("articulos");
93 /* Ahora trato de recuperar la info */
94 cant = emufs_idx_get_count(tmp->fp);
95 for(i=0; i<cant; i++) {
98 id = emufs_idx_get_id_at(tmp->fp, i);
100 save = tmp->fp->leer_registro(tmp->fp, id, &size, &error);
101 if (procesar_leer_articulo(&art, save, size, tmp) == 1) {
102 tmp->array[i].num_reg = i;
103 tmp->array[i].numero = art.numero;
113 int art_liberar(t_LstArticulos *l)
115 if (l == NULL) l = lst_articulos;
116 if (l == NULL) return 1;
118 emufs_destruir(l->fp);
119 /* free(l->array); */
122 lst_articulos = NULL;
126 t_Articulo *art_obtener(t_LstArticulos *lst, const char *numero)
128 /* FIXME : NO ME GUSTA :-/ */
133 int n = atoi(numero);
135 if (lst == NULL) lst = lst_articulos;
136 if (lst == NULL) return NULL;
138 for(i=0; i<lst->cant; i++) {
139 if (n == lst->array[i].numero) {
140 art = (t_Articulo *)malloc(sizeof(t_Articulo));
141 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
142 tmp = lst->fp->leer_registro(lst->fp, lst->array[i].num_reg, &size, &error);
149 if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
162 t_Articulo *art_form_buscar(WINDOW *win)
165 t_Articulo *articulo;
167 form = form_crear(win);
168 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
169 form_ejecutar(form, 1,1);
170 articulo = art_obtener(NULL, form_obtener_valor_char(form, "Numero de Artículo"));
176 void art_modificar(char *s)
180 t_Articulo *articulo;
183 win = newwin(8, COLS-2, 13, 1);
187 articulo = art_form_buscar(win);
189 if (articulo != NULL) {
190 form = form_crear(win);
191 sprintf(num, "%08d", articulo->numero);
192 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
193 form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
194 form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
195 form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
196 form_agregar_widget(form, INPUT, "PVU", 8, articulo->pvu);
197 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
198 form_ejecutar(form, 1,1);
200 /* TODO : Actualizar registro */
205 wattron(win, COLOR_PAIR(COLOR_YELLOW));
206 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
207 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
216 void art_eliminar(char *s)
219 t_Articulo *articulo;
221 win = newwin(8, COLS-2, 13, 1);
225 articulo = art_form_buscar(win);
227 if (articulo == NULL) {
228 wattron(win, COLOR_PAIR(COLOR_YELLOW));
229 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
230 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
234 for(i=0; i<lst_articulos->cant; i++) {
235 if (lst_articulos->array[i].numero == articulo->numero) {
236 lst_articulos->array[i].numero = -1;
237 lst_articulos->fp->borrar_registro(lst_articulos->fp, lst_articulos->array[i].num_reg);
249 void art_agregar(char *s)
255 int error = 0, existe, i;
258 win = newwin(8, COLS-2, 13, 1);
262 form = form_crear(win);
263 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
264 form_agregar_widget(form, INPUT, "Descripción", 50, "");
265 form_agregar_widget(form, INPUT, "Presentación", 30, "");
266 form_agregar_widget(form, INPUT, "Stock Actual", 8, "");
267 form_agregar_widget(form, INPUT, "PVU", 8, "");
268 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, "");
269 form_ejecutar(form, 1,1);
271 art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
273 for(i=0; i<lst_articulos->cant; i++) {
274 if (art.numero == lst_articulos->array[i].numero) {
281 strcpy(art.desc, form_obtener_valor_char(form, "Descripción"));
282 strcpy(art.presentacion, form_obtener_valor_char(form, "Presentación"));
283 strcpy(art.existencia, form_obtener_valor_char(form, "Stock Actual"));
284 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
285 strcpy(art.pvu, form_obtener_valor_char(form, "PVU"));
286 strcpy(art.emin, form_obtener_valor_char(form, "Stock Mínimo"));
288 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
289 save = procesar_guardar_articulo(&art, &size, lst_articulos);
291 lst_articulos->array[lst_articulos->cant].num_reg = lst_articulos->fp->grabar_registro(lst_articulos->fp, save, size, &error);
293 wattron(win, COLOR_PAIR(COLOR_YELLOW));
294 mvwaddstr(win, 6, 4, "Error al tratar de agregar el nuevo registro");
295 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
299 lst_articulos->array[lst_articulos->cant].numero = art.numero;
300 lst_articulos->cant++;
304 wattron(win, COLOR_PAIR(COLOR_YELLOW));
305 mvwaddstr(win, 7, 1, "El código ya existe!. Abortando.");
306 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
317 int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst)
320 switch (lst->fp->tipo) {
324 /* Copio el primer campo, esto es facil :-) */
325 memcpy(&dst->numero, ini, sizeof(unsigned int));
326 ini+=sizeof(unsigned int);
327 /* Ahora empieza el juego */
328 /* Los \0 son los delimitadores de campo! */
330 while (*fin!='\0') fin++;
331 memcpy(dst->desc, ini, fin-ini+1);
335 while (*fin!='\0') fin++;
336 memcpy(dst->presentacion, ini, fin-ini+1);
340 while (*fin!='\0') fin++;
341 memcpy(dst->existencia, ini, fin-ini+1);
345 while (*fin!='\0') fin++;
346 memcpy(dst->pvu, ini, fin-ini+1);
349 fin = (char *)src+size;
350 memcpy(dst->emin, ini, fin-ini+1);
354 memcpy(dst, src, sizeof(t_Articulo));
357 return 1; /* Todo ok */
360 void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst)
364 switch(lst->fp->tipo) {
367 /* Calculo el tamaño que voy a necesitar */
368 i[0] = sizeof(unsigned int);
369 i[1] = sizeof(char)*(strlen(src->desc)+1);
370 i[2] = sizeof(char)*(strlen(src->presentacion)+1);
371 i[3] = sizeof(char)*(strlen(src->existencia)+1);
372 /* i[4] = sizeof(char)*(strlen(src->ubicacion)+1); */
373 i[4] = sizeof(char)*(strlen(src->pvu)+1);
374 i[5] = sizeof(char)*(strlen(src->emin)+1);
375 (*size) = i[0]+i[1]+i[2]+i[3]+i[4]+i[5];
376 tmp = (char *)malloc((*size));
377 if (tmp == NULL) return NULL;
378 memcpy(tmp, &src->numero, i[0]);
379 memcpy(tmp+i[0], src->desc, i[1]);
380 memcpy(tmp+i[0]+i[1], src->presentacion, i[2]);
381 memcpy(tmp+i[0]+i[1]+i[2], src->existencia, i[3]);
382 memcpy(tmp+i[0]+i[1]+i[2]+i[3], src->pvu, i[4]);
383 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], src->emin, i[5]);
386 tmp = (char *)malloc(sizeof(t_Articulo));
387 if (tmp == NULL) return NULL;
388 memcpy(tmp, src, sizeof(t_Articulo));
389 (*size) = sizeof(t_Articulo);