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 *, int max);
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 strncpy(tmp[count-1].cv, prop = xml_get_prop(node, "CV"), 8); xmlFree(prop);
101 tmp[count-1].cv[8] = '\0';
102 strncpy(tmp[count-1].pvu, prop = xml_get_prop(node, "PVU"), 8); xmlFree(prop);
103 tmp[count-1].pvu[8] = '\0';
111 tmp = (t_Item *)malloc(sizeof(t_Item)*size);
112 memset(tmp, 0, sizeof(t_Item)*size);
115 node = node->children;
117 if (node->type == XML_ELEMENT_NODE) {
118 if (strcmp(node->name, "ITEMVENTA") == 0) {
119 memset(&tmp[count], 0, sizeof(t_Item));
120 prop = xml_get_prop(node, "NroArtículo");
121 tmp[count].numero = atoi(prop);
123 strncpy(tmp[count].cv, prop = xml_get_prop(node, "CV"), 8); xmlFree(prop);
124 tmp[count].cv[8] = '\0';
125 strncpy(tmp[count].pvu, prop = xml_get_prop(node, "PVU"), 8); xmlFree(prop);
126 tmp[count].pvu[8] = '\0';
130 if (count == 10) break; /* No me entran mas items! */
137 char *leer_nota(xmlNode *node, int max)
141 tmp = node->children;
143 if (tmp->type == XML_ELEMENT_NODE) {
144 if (strcmp(tmp->name, "NOTA") == 0) {
153 salida = (char *)malloc(sizeof(char)*(strlen(XML_GET_CONTENT(tmp->children))+1));
154 strcpy(salida, XML_GET_CONTENT(tmp->children));
156 salida = (char *)malloc(sizeof(char)*max);
157 strncpy(salida, XML_GET_CONTENT(tmp->children), max-1);
158 salida[max-1] = '\0';
162 salida = (char *)malloc(sizeof(char));
165 salida = (char *)malloc(sizeof(char)*max);
166 memset(salida, 0, max);
173 t_LstFacturas *fact_cargar(const char *filename, int tipo, int tam_bloque, int tipo_nota, int bloque_nota)
176 xmlNode *node, *inicio;
177 int error = 0, cant_items, i;
181 EMUFS_REG_ID id, *indices, indices_cant;
185 tmp = (t_LstFacturas *)malloc(sizeof(t_LstFacturas));
186 if (tmp == NULL) return NULL;
190 if (filename != NULL) {
191 PERR("Voy a cargar de un XML");
192 document = xmlReadFile(filename, "ISO-8859-1",0);
193 if (document == NULL) {
194 PERR("Error al leer documento!!");
201 node = xmlDocGetRootElement(document);
202 /* Busco el TAG principal "ARTICULOS" */
204 if (node->type == XML_ELEMENT_NODE) {
205 if (strcmp(node->name, "FACTURAS") == 0) {
206 inicio = node->children;
213 /* En el registro no guardo los punteros de nota ni items. Si guardo la cantidad de items
214 * y los items al final del registro.
216 if ((tipo-1) == T3) {
217 /* Limito a 10 items en el caso de registro constante! */
222 tmp->fp = emufs_crear("facturas", tipo-1, tam_bloque, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+cant_items*sizeof(t_Item));
224 fprintf(stderr, "Facturas : Tipo=%d Tam Bloque = %d\n", tipo-1, tam_bloque);
225 fprintf(stderr, "Notas : Tipo=%d Tam Bloque = %d\n", tipo_nota-1, bloque_nota);
227 tmp->fp_texto = emufs_crear("notas", tipo_nota-1, bloque_nota, 100);
228 for (node=inicio ; node ; node = node->next) {
229 if (node->type == XML_ELEMENT_NODE) {
230 if (strcmp(node->name, "FACTURA") == 0) {
233 memset(&fact, 0, sizeof(t_Factura));
234 prop = xml_get_prop(node, "NroFac");
235 fact.numero = atoi(prop); xmlFree(prop);
236 prop = xml_get_prop(node, "PorcDoI");
237 fact.procdoi = atof(prop); xmlFree(prop);
238 prop = xml_get_prop(node, "NroRemito");
239 fact.numero_remito = atoi(prop); xmlFree(prop);
240 strncpy(fact.emision, prop = xml_get_prop(node, "FechaEmisión"), 8); xmlFree(prop);
241 fact.emision[8] = '\0';
242 strncpy(fact.vencimiento, prop = xml_get_prop(node, "FechaVto"), 8); xmlFree(prop);
243 fact.vencimiento[8] = '\0';
244 strncpy(fact.estado, prop = xml_get_prop(node, "Estado"), 2); xmlFree(prop);
245 fact.estado[2] = '\0';
246 strncpy(fact.fp, prop = xml_get_prop(node, "FP"), 2); xmlFree(prop);
248 strncpy(fact.ctacte, prop = xml_get_prop(node, "NroCtaCte"), 5); xmlFree(prop);
249 fact.ctacte[5] = '\0';
250 strncpy(fact.cheque, prop = xml_get_prop(node, "NroCheque"), 18); xmlFree(prop);
251 fact.cheque[18] = '\0';
253 fact.nota = leer_nota(node, (((tipo-1)==T3)?100:-1));
254 fact.items = leer_items(node, &fact.cant_items, ((tipo-1)==T3)?10:-1);
257 id = tmp->fp_texto->grabar_registro(tmp->fp_texto, fact.nota, ((tipo-1)==T3)?100:(strlen(fact.nota)+1), &error);
259 save = procesar_guardar_factura(&fact, lst_facturas, &size);
262 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
263 agregar_nodo_factura(tmp, crear_nodo_factura(id, fact.reg_nota, fact.numero));
264 if (fact.items) free(fact.items);
265 if (fact.nota) free(fact.nota);
271 xmlFreeDoc(document);
274 PERR("Voy a recuperar desde un archivo");
275 tmp->fp = emufs_abrir("facturas");
276 if (tmp->fp == NULL) {
277 PERR("No se pudo cargar archivo de facturas!");
282 tmp->fp_texto = emufs_abrir("notas");
283 if (tmp->fp_texto == NULL) {
284 PERR("No se pudo cargar archivo de notas!");
285 emufs_destruir(tmp->fp);
291 /* Ahora trato de recuperar la info */
292 indices = emufs_idx_get(tmp->fp, &indices_cant);
293 for(i=0; i<indices_cant; i++) {
296 /* Leo el registro */
297 save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
298 if (procesar_leer_factura(&art, save, size, tmp) == 1) {
299 agregar_nodo_factura(tmp, crear_nodo_factura(indices[i], art.reg_nota, art.numero));
306 PERR("Facturas todo Ok");
310 int fact_liberar(t_LstFacturas *l)
313 if (l == NULL) l = lst_facturas;
314 if (l == NULL) return 1;
316 emufs_destruir(l->fp);
317 emufs_destruir(l->fp_texto);
320 l->primero = l->primero->sig;
329 t_Factura *fact_buscar(t_LstFacturas *lst, int numero, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
336 if (lst == NULL) return NULL;
341 if (reg->numero == numero) {
344 leo = lst->fp->leer_registro(lst->fp, reg->num_reg, &size, &error);
346 fact = (t_Factura *)malloc(sizeof(t_Factura));
351 procesar_leer_factura(fact, leo, size, lst);
352 (*id) = reg->num_reg;
353 (*id_texto) = reg->texto_reg;
355 fact->nota = lst->fp_texto->leer_registro(lst->fp_texto, reg->texto_reg, &size, &error);
364 t_Factura *fact_form_buscar(WINDOW *win, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
369 form = form_crear(win);
370 form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
371 form_ejecutar(form, 1,1);
372 fact = fact_buscar(lst_facturas, form_obtener_valor_int(form, "Numero de Factura"), id, id_texto);
378 void fact_eliminar(char *s)
385 win = newwin(LINES-4, COLS-2, 2, 1);
388 fact = fact_form_buscar(win, &id, &id);
391 wattron(win, COLOR_PAIR(COLOR_YELLOW));
392 mvwaddstr(win, 2, 1, "No existe artículo con ese código. Abortando!");
393 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
402 nodo = lst_facturas->primero;
404 if (nodo->numero == fact->numero) {
405 lst_facturas->fp->borrar_registro(lst_facturas->fp, nodo->num_reg);
406 lst_facturas->fp_texto->borrar_registro(lst_facturas->fp_texto, nodo->texto_reg);
407 eliminar_nodo_factura(lst_facturas, nodo);
417 void fact_modificar(char *s)
419 WINDOW *win, *items, *nota, *subnota;
420 t_Form *form, *form_nota;
423 EMUFS_REG_ID id, id_texto;
429 win = newwin(LINES-4, COLS-2, 2, 1);
432 fact = fact_form_buscar(win, &id, &id_texto);
435 wattron(win, COLOR_PAIR(COLOR_YELLOW));
436 mvwaddstr(win, 2, 1, "No existe artículo con ese código. Abortando!");
437 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
446 mvwaddch(win, 10, 0, ACS_LTEE);
447 mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
448 mvwaddch(win, 10, COLS-3, ACS_RTEE);
451 items = derwin(win, LINES-20, COLS-4, 15, 1);
452 nota = derwin(win, 9, COLS-62, 1, 56);
453 subnota = derwin(nota, 7, COLS-64, 1, 1);
455 mvwaddstr(nota, 0, 1, "Nota :");
459 form = form_crear(win);
460 sprintf(tmp_str, "%08d", fact->numero);
461 form_agregar_widget(form, INPUT, "Numero de Factura", 8, tmp_str);
462 form_agregar_widget(form, INPUT, "Fecha Emision", 8, fact->emision);
463 form_agregar_widget(form, INPUT, "Fecha Vto", 8, fact->vencimiento);
464 sprintf(tmp_str, "%08d", fact->numero_remito);
465 form_agregar_widget(form, INPUT, "Nro Remito", 8, tmp_str);
466 form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
467 form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
468 sprintf(tmp_str, "%02.2f", fact->procdoi);
469 form_agregar_widget(form, INPUT, "%% Descuento", 5, tmp_str);
470 form_agregar_widget(form, INPUT, "Cuenta Cte", 5, fact->ctacte);
471 form_agregar_widget(form, INPUT, "Cheque Nro", 18, fact->cheque);
473 mvwaddstr(subnota, 0, 0, fact->nota);
475 form_ejecutar(form, 1,1);
477 form_nota = form_crear(subnota);
478 form_agregar_widget(form_nota, INPUT, "", 255, fact->nota);
479 form_ejecutar(form_nota, 0, 0);
481 fact->numero = form_obtener_valor_int(form, "Numero de Factura");
482 strcpy(fact->emision, form_obtener_valor_char(form, "Fecha Emision"));
483 strcpy(fact->vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
484 fact->numero_remito = form_obtener_valor_int(form, "Nro Remito");
485 strcpy(fact->estado, form_obtener_valor_char(form, "Estado"));
486 strcpy(fact->fp, form_obtener_valor_char(form, "Forma de pago"));
487 fact->procdoi = form_obtener_valor_float(form, "%% Descuento");
488 strcpy(fact->ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
489 strcpy(fact->cheque, form_obtener_valor_char(form, "Cheque Nro"));
494 fact->nota = form_obtener_valor_char(form_nota, "");
496 form_destruir(form_nota);
498 entrada = procesar_guardar_factura(fact, lst_facturas, &size);
500 id = lst_facturas->fp->modificar_registro(lst_facturas->fp, id, entrada, size, &error);
501 id_texto = lst_facturas->fp_texto->modificar_registro(lst_facturas->fp_texto, id_texto, fact->nota, strlen(fact->nota)+1, &error);
516 void fact_agregar(char *s)
518 WINDOW *win, *items, *nota, *subnota;
519 t_Form *form, *form_nota;
523 EMUFS_REG_ID id, id_texto;
524 int y_actual, cant, error;
527 win = newwin(LINES-4, COLS-2, 2, 1);
529 mvwaddch(win, 10, 0, ACS_LTEE);
530 mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
531 mvwaddch(win, 10, COLS-3, ACS_RTEE);
534 items = derwin(win, LINES-20, COLS-4, 15, 1);
535 nota = derwin(win, 9, COLS-62, 1, 56);
536 subnota = derwin(nota, 7, COLS-64, 1, 1);
538 mvwaddstr(nota, 0, 1, "Nota :");
542 form = form_crear(win);
543 form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
544 form_agregar_widget(form, INPUT, "Fecha Emision", 8, "");
545 form_agregar_widget(form, INPUT, "Fecha Vto", 8, "");
546 form_agregar_widget(form, INPUT, "Nro Remito", 8, "");
547 form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
548 form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
549 form_agregar_widget(form, INPUT, "%% Descuento", 5, "");
550 form_agregar_widget(form, INPUT, "Cuenta Cte", 5, "");
551 form_agregar_widget(form, INPUT, "Cheque Nro", 18, "");
553 form_ejecutar(form, 1,1);
555 form_nota = form_crear(subnota);
556 form_agregar_widget(form_nota, INPUT, "", 255, "");
557 form_ejecutar(form_nota, 0, 0);
559 /* XXX No destruir form_nota hasta el final !!!!! XXX */
561 fact.numero = form_obtener_valor_int(form, "Numero de Factura");
562 strcpy(fact.emision, form_obtener_valor_char(form, "Fecha Emision"));
563 strcpy(fact.vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
564 fact.numero_remito = form_obtener_valor_int(form, "Nro Remito");
565 strcpy(fact.estado, form_obtener_valor_char(form, "Estado"));
566 strcpy(fact.fp, form_obtener_valor_char(form, "Forma de pago"));
567 fact.procdoi = form_obtener_valor_float(form, "%% Descuento");
568 strcpy(fact.ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
569 strcpy(fact.cheque, form_obtener_valor_char(form, "Cheque Nro"));
573 form = form_crear(win);
574 form_agregar_widget(form, INPUT, "Nro de Articulo (* == fin)", 8, "");
575 form_agregar_widget(form, INPUT, "CV", 8, "");
576 form_agregar_widget(form, INPUT, "PVU", 8, "");
579 mvwaddstr(win, 15, 2, "Numero");
580 mvwaddstr(win, 15, 11, "CV");
581 mvwaddstr(win, 15, 21, "PVU");
584 form_set_valor(form, "Nro de Articulo (* == fin)", "");
585 form_set_valor(form, "CV", "");
586 form_set_valor(form, "PVU", "");
587 form_ejecutar(form, 2, 11);
589 entrada = form_obtener_valor_char(form, "Nro de Articulo (* == fin)");
591 if ((entrada[0] != '\0') && (entrada[0] != '*')){
593 if (y_actual > LINES-22) {
597 mvwaddstr(items, y_actual, 1, entrada);
598 mvwaddstr(items, y_actual, 10, form_obtener_valor_char(form, "CV"));
599 mvwaddstr(items, y_actual, 20, form_obtener_valor_char(form, "PVU"));
603 its = (t_Item *)realloc(its, cant*sizeof(t_Item));
605 its[cant-1].numero = atoi(entrada);
606 strcpy(its[cant-1].cv, form_obtener_valor_char(form, "CV"));
607 strcpy(its[cant-1].pvu, form_obtener_valor_char(form, "PVU"));
610 } while (entrada[0] != '*');
612 if (lst_facturas->fp->tipo == T3) {
614 /* TODO Limitar en la GUI en lugar de truncar! */
615 its = (t_Item *)realloc(its, 10*sizeof(t_Item));
619 memset(its+sizeof(t_Item)*cant, 0, (10-cant)*sizeof(t_Item));
625 fact.cant_items = cant;
626 fact.nota = form_obtener_valor_char(form_nota, "");
628 entrada = procesar_guardar_factura(&fact,lst_facturas, &size);
631 id = lst_facturas->fp->grabar_registro(lst_facturas->fp, entrada, size, &error);
632 id_texto = lst_facturas->fp_texto->grabar_registro(lst_facturas->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
633 agregar_nodo_factura(lst_facturas, crear_nodo_factura(id, id_texto, fact.numero));
639 form_destruir(form_nota);
649 void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, EMUFS_REG_SIZE *size)
654 switch (lst->fp->tipo) {
657 /* Calculo el tamaño que voy a necesitar */
659 i[1] = sizeof(float);
662 i[4] = sizeof(EMUFS_BLOCK_ID);
663 i[5] = sizeof(char)*(strlen(f->emision)+1); /* +1 por el \0 para separar */
664 i[6] = sizeof(char)*(strlen(f->vencimiento)+1); /* +1 por el \0 para separar */
665 i[7] = sizeof(char)*(strlen(f->estado)+1); /* +1 por el \0 para separar */
666 i[8] = sizeof(char)*(strlen(f->fp)+1); /* +1 por el \0 para separar */
667 i[9] = sizeof(char)*(strlen(f->ctacte)+1); /* +1 por el \0 para separar */
668 i[10] = sizeof(char)*(strlen(f->cheque)+1); /* +1 por el \0 para separar */
669 i[11] = sizeof(t_Item)*f->cant_items;
670 (*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];
671 tmp = (char *)malloc(*size);
672 if (tmp == NULL) return NULL;
673 memset(tmp, 0, *size);
674 /* Ahora copio la info */
675 memcpy(tmp, &f->numero, i[0]);
676 memcpy(tmp+i[0], &f->procdoi, i[1]);
677 memcpy(tmp+i[0]+i[1], &f->numero_remito, i[2]);
678 memcpy(tmp+i[0]+i[1]+i[2], &f->cant_items, i[3]);
679 memcpy(tmp+i[0]+i[1]+i[2]+i[3], &f->reg_nota, i[4]);
680 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], f->emision, i[5]);
681 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5], f->vencimiento, i[6]);
682 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6], f->estado, i[7]);
683 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7], f->fp, i[8]);
684 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7]+i[8], f->ctacte, i[9]);
685 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]);
687 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]);
690 (*size) = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *) + f->cant_items*sizeof(t_Item);
691 tmp = (char *)malloc(*size);
692 if (tmp == NULL) return NULL;
693 memcpy(tmp, f, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *));
694 memcpy(tmp+sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *), f->items, f->cant_items*sizeof(t_Item));
699 static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, t_LstFacturas *lst)
705 PERR("Puntero a lista NULO");
708 if (lst->fp == NULL) {
709 PERR("EMUFS No creado!");
713 switch (lst->fp->tipo) {
717 /* Copio los campos numericos, muy facil:-) */
718 memcpy(&dst->numero, ini, sizeof(int));
721 memcpy(&dst->procdoi, ini, sizeof(float));
724 memcpy(&dst->numero_remito, ini, sizeof(int));
727 memcpy(&dst->cant_items, ini, sizeof(int));
730 memcpy(&dst->reg_nota, ini, sizeof(EMUFS_BLOCK_ID));
731 ini+=sizeof(EMUFS_BLOCK_ID);
733 /* Ahora empieza el juego */
734 /* Los \0 son los delimitadores de campo! */
736 while (*fin!='\0') fin++;
737 memcpy(dst->emision, ini, fin-ini+1);
741 while (*fin!='\0') fin++;
742 memcpy(dst->vencimiento, ini, fin-ini+1);
746 while (*fin!='\0') fin++;
747 memcpy(dst->estado, ini, fin-ini+1);
751 while (*fin!='\0') fin++;
752 memcpy(dst->fp, ini, fin-ini+1);
756 while (*fin!='\0') fin++;
757 memcpy(dst->ctacte, ini, fin-ini+1);
761 while (*fin!='\0') fin++;
762 memcpy(dst->cheque, ini, fin-ini+1);
764 if (dst->cant_items > 0) {
765 /* Ahora tengo que cargar los items */
766 dst->items = (t_Item *)malloc(sizeof(t_Item)*dst->cant_items);
769 fin = (char *)src+size;
770 memcpy(dst->items, ini, fin-ini);
775 dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);
779 /* Se que tengo 10 items */
780 /* TODO : Ver porque leer_registro_tipo3 tira mal el size */
781 size = lst->fp->tam_reg;
782 memcpy(dst, src, size-sizeof(t_Item)*10);
783 dst->items = (t_Item *)malloc(10*sizeof(t_Item));
784 memcpy(dst->items, src+size-sizeof(t_Item)*10, 10*sizeof(t_Item));
785 dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);
790 void fact_reformatear(int tipo, int tam_bloque, int tam_reg, int nota_tipo, int nota_tam_bloque, int nota_tam_registro)
793 EMUFS_REG_ID *indices, id;
794 EMUFS_REG_SIZE indices_total, i, size, tam_reg1;
796 t_LstFacturas *lst_nueva;
800 PERR("==== EMPIEZO ====\n");
801 old = lst_facturas->fp;
803 /* Creo el nuevo file */
804 PERR("Creo el archivo\n");
806 /* Me aseguro de que entren n items completos */
807 tam_reg1 = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+10*sizeof(t_Item);
809 nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, tam_reg1);
811 PERR("ARCHIVO NUEVO NO CREADO");
815 /* Creo la nueva lista */
816 lst_nueva = (t_LstFacturas *)malloc(sizeof(t_LstFacturas));
817 lst_nueva->primero = NULL;
818 lst_nueva->fp = nuevo;
819 lst_nueva->fp_texto = emufs_crear("nota_tmp", nota_tipo, nota_tam_bloque, nota_tam_registro);
821 /* Leo los indices del archivo viejo */
822 PERR("Obtengo Indices\n");
823 indices = emufs_idx_get(old, &indices_total);
824 if (indices == NULL) {
825 fact_liberar(lst_nueva);
829 PERR("Proceso datos");
830 for(i=0; i<indices_total; i++) {
833 save = old->leer_registro(old, indices[i], &size, &error);
834 if (procesar_leer_factura(&fact, save, size, lst_facturas) == 0) {
835 PERR("Procese Leer Ok");
837 /* Lei un registro Ok. Lo salvo en el archivo nuevo */
839 /* Actualizo el ID de la nota asociada */
840 fact.reg_nota = lst_nueva->fp_texto->grabar_registro(lst_nueva->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
841 save = procesar_guardar_factura(&fact, lst_nueva, &size);
842 PERR("Procese Grabar Ok");
845 PERR("Grabo el Registro");
846 id = nuevo->grabar_registro(nuevo, save, size, &error);
848 agregar_nodo_factura(lst_nueva, crear_nodo_factura(id, fact.reg_nota, fact.numero));
849 PERR("Libero Memoria");
851 if (fact.items) free(fact.items);
852 if (fact.nota) free(fact.nota);
853 PERR("Termine con este Item");
860 PERR("Libero lo viejo\n");
861 fact_liberar(lst_facturas);
863 PERR("Ahora tengo lo nuevo\n");
864 lst_facturas = lst_nueva;
866 /* El nuevo tiene como nombre emufs_tmp, lo cambio a mano! */
867 free(lst_facturas->fp->nombre);
868 lst_facturas->fp->nombre = (char *)malloc(sizeof(char)*(strlen("facturas")+1));
869 strcpy(lst_facturas->fp->nombre, "facturas");
871 /* Tambien actualizo el nombre para notas */
872 free(lst_facturas->fp_texto->nombre);
873 lst_facturas->fp_texto->nombre = (char *)malloc(sizeof(char)*(strlen("notas")+1));
874 strcpy(lst_facturas->fp_texto->nombre, "notas");
876 /* Muevo los archivos! */
877 /* TODO : Poner en otro lugar mas generico! */
878 PERR("Renombre!!\n");
879 rename("emufs_tmp.dat", "facturas.dat");
880 rename("emufs_tmp.idx", "facturas.idx");
881 rename("emufs_tmp.fsc", "facturas.fsc");
882 rename("emufs_tmp.did", "facturas.did");
883 rename("nota_tmp.dat", "notas.dat");
884 rename("nota_tmp.idx", "notas.idx");
885 rename("nota_tmp.fsc", "notas.fsc");
886 rename("nota_tmp.did", "notas.did");
887 PERR("==== TERMINE ====\n");
890 int fact_exportar_xml(const char *filename)
895 EMUFS_REG_ID id, id1;
898 if (lst_facturas->primero == NULL) return 0;
900 nodo = lst_facturas->primero;
902 if (!(fp = fopen(filename, "wt"))) return 0;
904 fprintf(fp, "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n");
905 fprintf(fp, "<FACTURAS>\n");
907 fact = fact_buscar(lst_facturas, nodo->numero, &id, &id1);
908 fprintf(fp, "\t<FACTURA NroFac=\"%08d\" ", nodo->numero);
909 fprintf(fp, "FechaEmisión=\"%s\" ", fact->emision);
910 fprintf(fp, "FechaVto=\"%s\" ", fact->vencimiento);
911 fprintf(fp, "NroRemito=\"%08d\" ", fact->numero_remito);
912 fprintf(fp, "FP=\"%s\" ", fact->fp);
913 fprintf(fp, "Estado=\"%s\" ", fact->estado);
914 fprintf(fp, "NroCheque=\"%s\" ", fact->cheque);
915 fprintf(fp, "PorcDoI=\"%.2f\" ", fact->procdoi);
916 fprintf(fp, "NroCtaCte=\"%s\" ", fact->ctacte);
918 fprintf(fp, "\t\t<NOTA>%s</NOTA>\n", fact->nota);
919 for(j=0; j<fact->cant_items; j++) {
920 if (fact->items[j].numero != 0)
921 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);
923 fprintf(fp, "\t</FACTURA>\n");
926 fprintf(fp, "\t</FACTURAS>\n");