6 static t_LstFacturas *lst_facturas;
8 /* Procesa una factura antes de enviarla al archivo para guardarla */
9 static void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, EMUFS_REG_SIZE *size);
10 static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, t_LstFacturas *lst);
11 static t_Reg_Factura *crear_nodo_factura(EMUFS_REG_ID reg, EMUFS_REG_ID texto, unsigned int num);
12 static int agregar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo);
13 int eliminar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo);
14 static t_Item *leer_items(xmlNode *, int *cant, int size);
15 static char *leer_nota(xmlNode *);
17 t_LstFacturas *fact_get_lst()
22 /* Hack! ... Si no existe propiedad retorna "" */
23 char *xml_get_prop(xmlNode *node, char *nombre)
26 s = xmlGetProp(node, nombre);
35 int eliminar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo)
37 if (nodo == NULL) return 0;
38 if (nodo->ant == NULL) {
39 /* Me piden borrar el primer nodo */
41 nodo->sig->ant = NULL;
43 lst->primero = nodo->sig;
46 nodo->sig->ant = nodo->ant;
48 nodo->ant->sig = nodo->sig;
54 t_Reg_Factura *crear_nodo_factura(EMUFS_REG_ID reg, EMUFS_REG_ID texto, unsigned int num)
57 if (reg == EMUFS_NOT_FOUND) return NULL;
58 tmp = malloc(sizeof(t_Reg_Factura));
59 if (tmp == NULL) return NULL;
60 tmp->sig = tmp->ant = NULL;
62 tmp->texto_reg = texto;
68 int agregar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo)
70 if (nodo == NULL) return 0;
73 lst->primero->ant = nodo;
74 nodo->sig = lst->primero;
82 t_Item *leer_items(xmlNode *node, int *cant, int size)
90 node = node->children;
92 if (node->type == XML_ELEMENT_NODE) {
93 if (strcmp(node->name, "ITEMVENTA") == 0) {
95 tmp = realloc(tmp, sizeof(t_Item)*count);
96 memset(&tmp[count-1], 0, sizeof(t_Item));
97 prop = xml_get_prop(node, "NroArtículo");
98 tmp[count-1].numero = atoi(prop);
100 strcpy(tmp[count-1].cv, prop = xml_get_prop(node, "CV")); xmlFree(prop);
101 strcpy(tmp[count-1].pvu, prop = xml_get_prop(node, "PVU")); xmlFree(prop);
109 tmp = (t_Item *)malloc(sizeof(t_Item)*size);
110 memset(tmp, 0, sizeof(t_Item)*size);
113 node = node->children;
115 if (node->type == XML_ELEMENT_NODE) {
116 if (strcmp(node->name, "ITEMVENTA") == 0) {
117 memset(&tmp[count], '*', sizeof(t_Item));
118 prop = xml_get_prop(node, "NroArtículo");
119 tmp[count].numero = atoi(prop);
121 strcpy(tmp[count].cv, prop = xml_get_prop(node, "CV")); xmlFree(prop);
122 strcpy(tmp[count].pvu, prop = xml_get_prop(node, "PVU")); xmlFree(prop);
126 if (count == 10) break; /* No me entran mas items! */
133 char *leer_nota(xmlNode *node)
137 tmp = node->children;
139 if (tmp->type == XML_ELEMENT_NODE) {
140 if (strcmp(tmp->name, "NOTA") == 0) {
148 salida = (char *)malloc(sizeof(char)*(strlen(XML_GET_CONTENT(tmp->children))+1));
149 strcpy(salida, XML_GET_CONTENT(tmp->children));
151 salida = (char *)malloc(sizeof(char));
158 t_LstFacturas *fact_cargar(const char *filename, int tipo, int tam_bloque, int tipo_nota, int bloque_nota)
161 xmlNode *node, *inicio;
162 int error = 0, cant_items, i;
166 EMUFS_REG_ID id, *indices, indices_cant;
170 tmp = (t_LstFacturas *)malloc(sizeof(t_LstFacturas));
171 if (tmp == NULL) return NULL;
175 if (filename != NULL) {
176 PERR("Voy a cargar de un XML");
177 document = xmlReadFile(filename, "ISO-8859-1",0);
178 if (document == NULL) {
179 PERR("Error al leer documento!!");
186 node = xmlDocGetRootElement(document);
187 /* Busco el TAG principal "ARTICULOS" */
189 if (node->type == XML_ELEMENT_NODE) {
190 if (strcmp(node->name, "FACTURAS") == 0) {
191 inicio = node->children;
198 /* En el registro no guardo los punteros de nota ni items. Si guardo la cantidad de items
199 * y los items al final del registro.
201 if ((tipo-1) == T3) {
202 /* Limito a 10 items en el caso de registro constante! */
207 tmp->fp = emufs_crear("facturas", tipo-1, tam_bloque, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+cant_items*sizeof(t_Item));
209 fprintf(stderr, "Notas : Tipo=%d Tam Bloque = %d\n", tipo_nota, bloque_nota);
211 tmp->fp_texto = emufs_crear("notas", tipo_nota-1, bloque_nota, 100);
212 for (node=inicio ; node ; node = node->next) {
213 if (node->type == XML_ELEMENT_NODE) {
214 if (strcmp(node->name, "FACTURA") == 0) {
217 memset(&fact, 0, sizeof(t_Factura));
218 prop = xml_get_prop(node, "NroFac");
219 fact.numero = atoi(prop); xmlFree(prop);
220 prop = xml_get_prop(node, "PorcDoI");
221 fact.procdoi = atof(prop); xmlFree(prop);
222 prop = xml_get_prop(node, "NroRemito");
223 fact.numero_remito = atoi(prop); xmlFree(prop);
224 strncpy(fact.emision, prop = xml_get_prop(node, "FechaEmisión"), 8); xmlFree(prop);
225 fact.emision[8] = '\0';
226 strncpy(fact.vencimiento, prop = xml_get_prop(node, "FechaVto"), 8); xmlFree(prop);
227 fact.vencimiento[8] = '\0';
228 strncpy(fact.estado, prop = xml_get_prop(node, "Estado"), 2); xmlFree(prop);
229 fact.estado[2] = '\0';
230 strncpy(fact.fp, prop = xml_get_prop(node, "FP"), 2); xmlFree(prop);
232 strncpy(fact.ctacte, prop = xml_get_prop(node, "NroCtaCte"), 5); xmlFree(prop);
233 fact.ctacte[5] = '\0';
234 strncpy(fact.cheque, prop = xml_get_prop(node, "NroCheque"), 18); xmlFree(prop);
235 fact.cheque[18] = '\0';
237 fact.nota = leer_nota(node);
238 fact.items = leer_items(node, &fact.cant_items, ((tipo-1)==T3)?10:-1);
241 id = tmp->fp_texto->grabar_registro(tmp->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
243 save = procesar_guardar_factura(&fact, lst_facturas, &size);
246 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
247 agregar_nodo_factura(tmp, crear_nodo_factura(id, fact.reg_nota, fact.numero));
248 if (fact.items) free(fact.items);
249 if (fact.nota) free(fact.nota);
255 xmlFreeDoc(document);
258 PERR("Voy a recuperar desde un archivo");
259 tmp->fp = emufs_abrir("facturas");
260 if (tmp->fp == NULL) {
261 PERR("No se pudo cargar archivo de facturas!");
266 tmp->fp_texto = emufs_abrir("notas");
267 if (tmp->fp_texto == NULL) {
268 PERR("No se pudo cargar archivo de notas!");
269 emufs_destruir(tmp->fp);
275 /* Ahora trato de recuperar la info */
276 indices = emufs_idx_get(tmp->fp, &indices_cant);
277 for(i=0; i<indices_cant; i++) {
280 /* Leo el registro */
281 save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
282 if (procesar_leer_factura(&art, save, size, tmp) == 1) {
283 agregar_nodo_factura(tmp, crear_nodo_factura(indices[i], art.reg_nota, art.numero));
290 PERR("Facturas todo Ok");
294 int fact_liberar(t_LstFacturas *l)
297 if (l == NULL) l = lst_facturas;
298 if (l == NULL) return 1;
300 emufs_destruir(l->fp);
301 emufs_destruir(l->fp_texto);
304 l->primero = l->primero->sig;
313 t_Factura *fact_buscar(t_LstFacturas *lst, int numero, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
320 if (lst == NULL) return NULL;
325 if (reg->numero == numero) {
328 leo = lst->fp->leer_registro(lst->fp, reg->num_reg, &size, &error);
330 fact = (t_Factura *)malloc(sizeof(t_Factura));
335 procesar_leer_factura(fact, leo, size, lst);
336 (*id) = reg->num_reg;
337 (*id_texto) = reg->texto_reg;
339 fact->nota = lst->fp_texto->leer_registro(lst->fp_texto, reg->texto_reg, &size, &error);
348 t_Factura *fact_form_buscar(WINDOW *win, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
353 form = form_crear(win);
354 form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
355 form_ejecutar(form, 1,1);
356 fact = fact_buscar(lst_facturas, form_obtener_valor_int(form, "Numero de Factura"), id, id_texto);
362 void fact_eliminar(char *s)
369 win = newwin(LINES-4, COLS-2, 2, 1);
372 fact = fact_form_buscar(win, &id, &id);
375 wattron(win, COLOR_PAIR(COLOR_YELLOW));
376 mvwaddstr(win, 2, 1, "No existe artículo con ese código. Abortando!");
377 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
386 nodo = lst_facturas->primero;
388 if (nodo->numero == fact->numero) {
389 lst_facturas->fp->borrar_registro(lst_facturas->fp, nodo->num_reg);
390 lst_facturas->fp_texto->borrar_registro(lst_facturas->fp_texto, nodo->texto_reg);
391 eliminar_nodo_factura(lst_facturas, nodo);
401 void fact_modificar(char *s)
403 WINDOW *win, *items, *nota, *subnota;
404 t_Form *form, *form_nota;
407 EMUFS_REG_ID id, id_texto;
413 win = newwin(LINES-4, COLS-2, 2, 1);
416 fact = fact_form_buscar(win, &id, &id_texto);
419 wattron(win, COLOR_PAIR(COLOR_YELLOW));
420 mvwaddstr(win, 2, 1, "No existe artículo con ese código. Abortando!");
421 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
430 mvwaddch(win, 10, 0, ACS_LTEE);
431 mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
432 mvwaddch(win, 10, COLS-3, ACS_RTEE);
435 items = derwin(win, LINES-20, COLS-4, 15, 1);
436 nota = derwin(win, 9, COLS-62, 1, 56);
437 subnota = derwin(nota, 7, COLS-64, 1, 1);
439 mvwaddstr(nota, 0, 1, "Nota :");
443 form = form_crear(win);
444 sprintf(tmp_str, "%08d", fact->numero);
445 form_agregar_widget(form, INPUT, "Numero de Factura", 8, tmp_str);
446 form_agregar_widget(form, INPUT, "Fecha Emision", 8, fact->emision);
447 form_agregar_widget(form, INPUT, "Fecha Vto", 8, fact->vencimiento);
448 sprintf(tmp_str, "%08d", fact->numero_remito);
449 form_agregar_widget(form, INPUT, "Nro Remito", 8, tmp_str);
450 form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
451 form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
452 sprintf(tmp_str, "%02.2f", fact->procdoi);
453 form_agregar_widget(form, INPUT, "%% Descuento", 5, tmp_str);
454 form_agregar_widget(form, INPUT, "Cuenta Cte", 5, fact->ctacte);
455 form_agregar_widget(form, INPUT, "Cheque Nro", 18, fact->cheque);
457 mvwaddstr(subnota, 0, 0, fact->nota);
459 form_ejecutar(form, 1,1);
461 form_nota = form_crear(subnota);
462 form_agregar_widget(form_nota, INPUT, "", 255, fact->nota);
463 form_ejecutar(form_nota, 0, 0);
465 fact->numero = form_obtener_valor_int(form, "Numero de Factura");
466 strcpy(fact->emision, form_obtener_valor_char(form, "Fecha Emision"));
467 strcpy(fact->vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
468 fact->numero_remito = form_obtener_valor_int(form, "Nro Remito");
469 strcpy(fact->estado, form_obtener_valor_char(form, "Estado"));
470 strcpy(fact->fp, form_obtener_valor_char(form, "Forma de pago"));
471 fact->procdoi = form_obtener_valor_float(form, "%% Descuento");
472 strcpy(fact->ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
473 strcpy(fact->cheque, form_obtener_valor_char(form, "Cheque Nro"));
478 fact->nota = form_obtener_valor_char(form_nota, "");
480 form_destruir(form_nota);
482 entrada = procesar_guardar_factura(fact, lst_facturas, &size);
484 id = lst_facturas->fp->modificar_registro(lst_facturas->fp, id, entrada, size, &error);
485 id_texto = lst_facturas->fp_texto->modificar_registro(lst_facturas->fp_texto, id_texto, fact->nota, strlen(fact->nota)+1, &error);
500 void fact_agregar(char *s)
502 WINDOW *win, *items, *nota, *subnota;
503 t_Form *form, *form_nota;
507 EMUFS_REG_ID id, id_texto;
508 int y_actual, cant, error;
511 win = newwin(LINES-4, COLS-2, 2, 1);
513 mvwaddch(win, 10, 0, ACS_LTEE);
514 mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
515 mvwaddch(win, 10, COLS-3, ACS_RTEE);
518 items = derwin(win, LINES-20, COLS-4, 15, 1);
519 nota = derwin(win, 9, COLS-62, 1, 56);
520 subnota = derwin(nota, 7, COLS-64, 1, 1);
522 mvwaddstr(nota, 0, 1, "Nota :");
526 form = form_crear(win);
527 form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
528 form_agregar_widget(form, INPUT, "Fecha Emision", 8, "");
529 form_agregar_widget(form, INPUT, "Fecha Vto", 8, "");
530 form_agregar_widget(form, INPUT, "Nro Remito", 8, "");
531 form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
532 form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
533 form_agregar_widget(form, INPUT, "%% Descuento", 5, "");
534 form_agregar_widget(form, INPUT, "Cuenta Cte", 5, "");
535 form_agregar_widget(form, INPUT, "Cheque Nro", 18, "");
537 form_ejecutar(form, 1,1);
539 form_nota = form_crear(subnota);
540 form_agregar_widget(form_nota, INPUT, "", 255, "");
541 form_ejecutar(form_nota, 0, 0);
543 /* XXX No destruir form_nota hasta el final !!!!! XXX */
545 fact.numero = form_obtener_valor_int(form, "Numero de Factura");
546 strcpy(fact.emision, form_obtener_valor_char(form, "Fecha Emision"));
547 strcpy(fact.vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
548 fact.numero_remito = form_obtener_valor_int(form, "Nro Remito");
549 strcpy(fact.estado, form_obtener_valor_char(form, "Estado"));
550 strcpy(fact.fp, form_obtener_valor_char(form, "Forma de pago"));
551 fact.procdoi = form_obtener_valor_float(form, "%% Descuento");
552 strcpy(fact.ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
553 strcpy(fact.cheque, form_obtener_valor_char(form, "Cheque Nro"));
557 form = form_crear(win);
558 form_agregar_widget(form, INPUT, "Nro de Articulo (* == fin)", 8, "");
559 form_agregar_widget(form, INPUT, "CV", 8, "");
560 form_agregar_widget(form, INPUT, "PVU", 8, "");
563 mvwaddstr(win, 15, 2, "Numero");
564 mvwaddstr(win, 15, 11, "CV");
565 mvwaddstr(win, 15, 21, "PVU");
568 form_set_valor(form, "Nro de Articulo (* == fin)", "");
569 form_set_valor(form, "CV", "");
570 form_set_valor(form, "PVU", "");
571 form_ejecutar(form, 2, 11);
573 entrada = form_obtener_valor_char(form, "Nro de Articulo (* == fin)");
575 if ((entrada[0] != '\0') && (entrada[0] != '*')){
577 if (y_actual > LINES-22) {
581 mvwaddstr(items, y_actual, 1, entrada);
582 mvwaddstr(items, y_actual, 10, form_obtener_valor_char(form, "CV"));
583 mvwaddstr(items, y_actual, 20, form_obtener_valor_char(form, "PVU"));
587 its = (t_Item *)realloc(its, cant*sizeof(t_Item));
589 its[cant-1].numero = atoi(entrada);
590 strcpy(its[cant-1].cv, form_obtener_valor_char(form, "CV"));
591 strcpy(its[cant-1].pvu, form_obtener_valor_char(form, "PVU"));
594 } while (entrada[0] != '*');
596 if (lst_facturas->fp->tipo == T3) {
598 /* TODO Limitar en la GUI en lugar de truncar! */
599 its = (t_Item *)realloc(its, 10*sizeof(t_Item));
603 memset(its+sizeof(t_Item)*cant, 0, (10-cant)*sizeof(t_Item));
609 fact.cant_items = cant;
610 fact.nota = form_obtener_valor_char(form_nota, "");
612 entrada = procesar_guardar_factura(&fact,lst_facturas, &size);
615 id = lst_facturas->fp->grabar_registro(lst_facturas->fp, entrada, size, &error);
616 id_texto = lst_facturas->fp_texto->grabar_registro(lst_facturas->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
617 agregar_nodo_factura(lst_facturas, crear_nodo_factura(id, id_texto, fact.numero));
623 form_destruir(form_nota);
633 void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, EMUFS_REG_SIZE *size)
638 switch (lst->fp->tipo) {
641 /* Calculo el tamaño que voy a necesitar */
643 i[1] = sizeof(float);
646 i[4] = sizeof(EMUFS_BLOCK_ID);
647 i[5] = sizeof(char)*(strlen(f->emision)+1); /* +1 por el \0 para separar */
648 i[6] = sizeof(char)*(strlen(f->vencimiento)+1); /* +1 por el \0 para separar */
649 i[7] = sizeof(char)*(strlen(f->estado)+1); /* +1 por el \0 para separar */
650 i[8] = sizeof(char)*(strlen(f->fp)+1); /* +1 por el \0 para separar */
651 i[9] = sizeof(char)*(strlen(f->ctacte)+1); /* +1 por el \0 para separar */
652 i[10] = sizeof(char)*(strlen(f->cheque)+1); /* +1 por el \0 para separar */
653 i[11] = sizeof(t_Item)*f->cant_items;
654 (*size) = i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7]+i[8]+i[9]+i[10]+i[11];
655 tmp = (char *)malloc(*size);
656 if (tmp == NULL) return NULL;
657 memset(tmp, 0, *size);
658 /* Ahora copio la info */
659 memcpy(tmp, &f->numero, i[0]);
660 memcpy(tmp+i[0], &f->procdoi, i[1]);
661 memcpy(tmp+i[0]+i[1], &f->numero_remito, i[2]);
662 memcpy(tmp+i[0]+i[1]+i[2], &f->cant_items, i[3]);
663 memcpy(tmp+i[0]+i[1]+i[2]+i[3], &f->reg_nota, i[4]);
664 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], f->emision, i[5]);
665 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5], f->vencimiento, i[6]);
666 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6], f->estado, i[7]);
667 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7], f->fp, i[8]);
668 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7]+i[8], f->ctacte, i[9]);
669 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7]+i[8]+i[9], f->cheque, i[10]);
671 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7]+i[8]+i[9]+i[10], f->items, i[11]);
674 (*size) = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *) + f->cant_items*sizeof(t_Item);
675 tmp = (char *)malloc(*size);
676 if (tmp == NULL) return NULL;
677 memcpy(tmp, f, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *));
678 memcpy(tmp+sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *), f->items, f->cant_items*sizeof(t_Item));
683 static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, t_LstFacturas *lst)
689 PERR("Puntero a lista NULO");
692 if (lst->fp == NULL) {
693 PERR("EMUFS No creado!");
697 switch (lst->fp->tipo) {
701 /* Copio los campos numericos, muy facil:-) */
702 memcpy(&dst->numero, ini, sizeof(int));
705 memcpy(&dst->procdoi, ini, sizeof(float));
708 memcpy(&dst->numero_remito, ini, sizeof(int));
711 memcpy(&dst->cant_items, ini, sizeof(int));
714 memcpy(&dst->reg_nota, ini, sizeof(EMUFS_BLOCK_ID));
715 ini+=sizeof(EMUFS_BLOCK_ID);
717 /* Ahora empieza el juego */
718 /* Los \0 son los delimitadores de campo! */
720 while (*fin!='\0') fin++;
721 memcpy(dst->emision, ini, fin-ini+1);
725 while (*fin!='\0') fin++;
726 memcpy(dst->vencimiento, ini, fin-ini+1);
730 while (*fin!='\0') fin++;
731 memcpy(dst->estado, ini, fin-ini+1);
735 while (*fin!='\0') fin++;
736 memcpy(dst->fp, ini, fin-ini+1);
740 while (*fin!='\0') fin++;
741 memcpy(dst->ctacte, ini, fin-ini+1);
745 while (*fin!='\0') fin++;
746 memcpy(dst->cheque, ini, fin-ini+1);
748 if (dst->cant_items > 0) {
749 /* Ahora tengo que cargar los items */
750 dst->items = (t_Item *)malloc(sizeof(t_Item)*dst->cant_items);
753 fin = (char *)src+size;
754 memcpy(dst->items, ini, fin-ini);
759 dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);
763 /* Se que tengo 10 items */
764 /* TODO : Ver porque leer_registro_tipo3 tira mal el size */
765 size = lst->fp->tam_reg;
766 memcpy(dst, src, size-sizeof(t_Item)*10);
767 dst->items = (t_Item *)malloc(10*sizeof(t_Item));
768 memcpy(dst->items, src+size-sizeof(t_Item)*10, 10*sizeof(t_Item));
769 dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);
774 void fact_reformatear(int tipo, int tam_bloque, int tam_reg, int nota_tipo, int nota_tam_bloque, int nota_tam_registro)
777 EMUFS_REG_ID *indices, id;
778 EMUFS_REG_SIZE indices_total, i, size, tam_reg1;
780 t_LstFacturas *lst_nueva;
784 PERR("==== EMPIEZO ====\n");
785 old = lst_facturas->fp;
787 /* Creo el nuevo file */
788 PERR("Creo el archivo\n");
790 /* Me aseguro de que entren n items completos */
791 tam_reg1 = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+10*sizeof(t_Item);
793 nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, tam_reg1);
795 PERR("ARCHIVO NUEVO NO CREADO");
799 /* Creo la nueva lista */
800 lst_nueva = (t_LstFacturas *)malloc(sizeof(t_LstFacturas));
801 lst_nueva->primero = NULL;
802 lst_nueva->fp = nuevo;
803 lst_nueva->fp_texto = emufs_crear("nota_tmp", nota_tipo, nota_tam_bloque, nota_tam_registro);
805 /* Leo los indices del archivo viejo */
806 PERR("Obtengo Indices\n");
807 indices = emufs_idx_get(old, &indices_total);
808 if (indices == NULL) {
809 fact_liberar(lst_nueva);
813 PERR("Proceso datos");
814 for(i=0; i<indices_total; i++) {
817 save = old->leer_registro(old, indices[i], &size, &error);
818 if (procesar_leer_factura(&fact, save, size, lst_facturas) == 0) {
819 PERR("Procese Leer Ok");
821 /* Lei un registro Ok. Lo salvo en el archivo nuevo */
823 /* Actualizo el ID de la nota asociada */
824 fact.reg_nota = lst_nueva->fp_texto->grabar_registro(lst_nueva->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
825 save = procesar_guardar_factura(&fact, lst_nueva, &size);
826 PERR("Procese Grabar Ok");
829 PERR("Grabo el Registro");
830 id = nuevo->grabar_registro(nuevo, save, size, &error);
832 agregar_nodo_factura(lst_nueva, crear_nodo_factura(id, fact.reg_nota, fact.numero));
833 PERR("Libero Memoria");
835 if (fact.items) free(fact.items);
836 if (fact.nota) free(fact.nota);
837 PERR("Termine con este Item");
844 PERR("Libero lo viejo\n");
845 fact_liberar(lst_facturas);
847 PERR("Ahora tengo lo nuevo\n");
848 lst_facturas = lst_nueva;
850 /* El nuevo tiene como nombre emufs_tmp, lo cambio a mano! */
851 free(lst_facturas->fp->nombre);
852 lst_facturas->fp->nombre = (char *)malloc(sizeof(char)*(strlen("facturas")+1));
853 strcpy(lst_facturas->fp->nombre, "facturas");
855 /* Tambien actualizo el nombre para notas */
856 free(lst_facturas->fp_texto->nombre);
857 lst_facturas->fp_texto->nombre = (char *)malloc(sizeof(char)*(strlen("notas")+1));
858 strcpy(lst_facturas->fp_texto->nombre, "notas");
860 /* Muevo los archivos! */
861 /* TODO : Poner en otro lugar mas generico! */
862 PERR("Renombre!!\n");
863 rename("emufs_tmp.dat", "facturas.dat");
864 rename("emufs_tmp.idx", "facturas.idx");
865 rename("emufs_tmp.fsc", "facturas.fsc");
866 rename("emufs_tmp.did", "facturas.did");
867 rename("nota_tmp.dat", "notas.dat");
868 rename("nota_tmp.idx", "notas.idx");
869 rename("nota_tmp.fsc", "notas.fsc");
870 rename("nota_tmp.did", "notas.did");
871 PERR("==== TERMINE ====\n");
874 int fact_exportar_xml(const char *filename)
879 EMUFS_REG_ID id, id1;
882 if (lst_facturas->primero == NULL) return 0;
884 nodo = lst_facturas->primero;
886 if (!(fp = fopen(filename, "wt"))) return 0;
888 fprintf(fp, "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n");
889 fprintf(fp, "<FACTURAS>\n");
891 fact = fact_buscar(lst_facturas, nodo->numero, &id, &id1);
892 fprintf(fp, "\t<FACTURA NroFac=\"%08d\" ", nodo->numero);
893 fprintf(fp, "FechaEmisión=\"%s\" ", fact->emision);
894 fprintf(fp, "FechaVto=\"%s\" ", fact->vencimiento);
895 fprintf(fp, "NroRemito=\"%08d\" ", fact->numero_remito);
896 fprintf(fp, "FP=\"%s\" ", fact->fp);
897 fprintf(fp, "Estado=\"%s\" ", fact->estado);
898 fprintf(fp, "NroCheque=\"%s\" ", fact->cheque);
899 fprintf(fp, "PorcDoI=\"%.2f\" ", fact->procdoi);
900 fprintf(fp, "NroCtaCte=\"%s\" ", fact->ctacte);
902 fprintf(fp, "\t\t<NOTA>%s</NOTA>\n", fact->nota);
903 for(j=0; j<fact->cant_items; j++) {
904 if (fact->items[j].numero != 0)
905 fprintf(fp, "\t\t<ITEMVENTA NroArtículo=\"%08d\" CV=\"%s\" PVU=\"%s\" />\n", fact->items[j].numero, fact->items[j].cv, fact->items[j].pvu);
907 fprintf(fp, "\t</FACTURA>\n");
910 fprintf(fp, "\t</FACTURAS>\n");