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, "Facturas : Tipo=%d Tam Bloque = %d\n", tipo-1, tam_bloque);
210 fprintf(stderr, "Notas : Tipo=%d Tam Bloque = %d\n", tipo_nota-1, bloque_nota);
212 tmp->fp_texto = emufs_crear("notas", tipo_nota-1, bloque_nota, 100);
213 for (node=inicio ; node ; node = node->next) {
214 if (node->type == XML_ELEMENT_NODE) {
215 if (strcmp(node->name, "FACTURA") == 0) {
218 memset(&fact, 0, sizeof(t_Factura));
219 prop = xml_get_prop(node, "NroFac");
220 fact.numero = atoi(prop); xmlFree(prop);
221 prop = xml_get_prop(node, "PorcDoI");
222 fact.procdoi = atof(prop); xmlFree(prop);
223 prop = xml_get_prop(node, "NroRemito");
224 fact.numero_remito = atoi(prop); xmlFree(prop);
225 strncpy(fact.emision, prop = xml_get_prop(node, "FechaEmisión"), 8); xmlFree(prop);
226 fact.emision[8] = '\0';
227 strncpy(fact.vencimiento, prop = xml_get_prop(node, "FechaVto"), 8); xmlFree(prop);
228 fact.vencimiento[8] = '\0';
229 strncpy(fact.estado, prop = xml_get_prop(node, "Estado"), 2); xmlFree(prop);
230 fact.estado[2] = '\0';
231 strncpy(fact.fp, prop = xml_get_prop(node, "FP"), 2); xmlFree(prop);
233 strncpy(fact.ctacte, prop = xml_get_prop(node, "NroCtaCte"), 5); xmlFree(prop);
234 fact.ctacte[5] = '\0';
235 strncpy(fact.cheque, prop = xml_get_prop(node, "NroCheque"), 18); xmlFree(prop);
236 fact.cheque[18] = '\0';
238 fact.nota = leer_nota(node);
239 fact.items = leer_items(node, &fact.cant_items, ((tipo-1)==T3)?10:-1);
242 id = tmp->fp_texto->grabar_registro(tmp->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
244 save = procesar_guardar_factura(&fact, lst_facturas, &size);
247 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
248 agregar_nodo_factura(tmp, crear_nodo_factura(id, fact.reg_nota, fact.numero));
249 if (fact.items) free(fact.items);
250 if (fact.nota) free(fact.nota);
256 xmlFreeDoc(document);
259 PERR("Voy a recuperar desde un archivo");
260 tmp->fp = emufs_abrir("facturas");
261 if (tmp->fp == NULL) {
262 PERR("No se pudo cargar archivo de facturas!");
267 tmp->fp_texto = emufs_abrir("notas");
268 if (tmp->fp_texto == NULL) {
269 PERR("No se pudo cargar archivo de notas!");
270 emufs_destruir(tmp->fp);
276 /* Ahora trato de recuperar la info */
277 indices = emufs_idx_get(tmp->fp, &indices_cant);
278 for(i=0; i<indices_cant; i++) {
281 /* Leo el registro */
282 save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
283 if (procesar_leer_factura(&art, save, size, tmp) == 1) {
284 agregar_nodo_factura(tmp, crear_nodo_factura(indices[i], art.reg_nota, art.numero));
291 PERR("Facturas todo Ok");
295 int fact_liberar(t_LstFacturas *l)
298 if (l == NULL) l = lst_facturas;
299 if (l == NULL) return 1;
301 emufs_destruir(l->fp);
302 emufs_destruir(l->fp_texto);
305 l->primero = l->primero->sig;
314 t_Factura *fact_buscar(t_LstFacturas *lst, int numero, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
321 if (lst == NULL) return NULL;
326 if (reg->numero == numero) {
329 leo = lst->fp->leer_registro(lst->fp, reg->num_reg, &size, &error);
331 fact = (t_Factura *)malloc(sizeof(t_Factura));
336 procesar_leer_factura(fact, leo, size, lst);
337 (*id) = reg->num_reg;
338 (*id_texto) = reg->texto_reg;
340 fact->nota = lst->fp_texto->leer_registro(lst->fp_texto, reg->texto_reg, &size, &error);
349 t_Factura *fact_form_buscar(WINDOW *win, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
354 form = form_crear(win);
355 form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
356 form_ejecutar(form, 1,1);
357 fact = fact_buscar(lst_facturas, form_obtener_valor_int(form, "Numero de Factura"), id, id_texto);
363 void fact_eliminar(char *s)
370 win = newwin(LINES-4, COLS-2, 2, 1);
373 fact = fact_form_buscar(win, &id, &id);
376 wattron(win, COLOR_PAIR(COLOR_YELLOW));
377 mvwaddstr(win, 2, 1, "No existe artículo con ese código. Abortando!");
378 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
387 nodo = lst_facturas->primero;
389 if (nodo->numero == fact->numero) {
390 lst_facturas->fp->borrar_registro(lst_facturas->fp, nodo->num_reg);
391 lst_facturas->fp_texto->borrar_registro(lst_facturas->fp_texto, nodo->texto_reg);
392 eliminar_nodo_factura(lst_facturas, nodo);
402 void fact_modificar(char *s)
404 WINDOW *win, *items, *nota, *subnota;
405 t_Form *form, *form_nota;
408 EMUFS_REG_ID id, id_texto;
414 win = newwin(LINES-4, COLS-2, 2, 1);
417 fact = fact_form_buscar(win, &id, &id_texto);
420 wattron(win, COLOR_PAIR(COLOR_YELLOW));
421 mvwaddstr(win, 2, 1, "No existe artículo con ese código. Abortando!");
422 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
431 mvwaddch(win, 10, 0, ACS_LTEE);
432 mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
433 mvwaddch(win, 10, COLS-3, ACS_RTEE);
436 items = derwin(win, LINES-20, COLS-4, 15, 1);
437 nota = derwin(win, 9, COLS-62, 1, 56);
438 subnota = derwin(nota, 7, COLS-64, 1, 1);
440 mvwaddstr(nota, 0, 1, "Nota :");
444 form = form_crear(win);
445 sprintf(tmp_str, "%08d", fact->numero);
446 form_agregar_widget(form, INPUT, "Numero de Factura", 8, tmp_str);
447 form_agregar_widget(form, INPUT, "Fecha Emision", 8, fact->emision);
448 form_agregar_widget(form, INPUT, "Fecha Vto", 8, fact->vencimiento);
449 sprintf(tmp_str, "%08d", fact->numero_remito);
450 form_agregar_widget(form, INPUT, "Nro Remito", 8, tmp_str);
451 form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
452 form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
453 sprintf(tmp_str, "%02.2f", fact->procdoi);
454 form_agregar_widget(form, INPUT, "%% Descuento", 5, tmp_str);
455 form_agregar_widget(form, INPUT, "Cuenta Cte", 5, fact->ctacte);
456 form_agregar_widget(form, INPUT, "Cheque Nro", 18, fact->cheque);
458 mvwaddstr(subnota, 0, 0, fact->nota);
460 form_ejecutar(form, 1,1);
462 form_nota = form_crear(subnota);
463 form_agregar_widget(form_nota, INPUT, "", 255, fact->nota);
464 form_ejecutar(form_nota, 0, 0);
466 fact->numero = form_obtener_valor_int(form, "Numero de Factura");
467 strcpy(fact->emision, form_obtener_valor_char(form, "Fecha Emision"));
468 strcpy(fact->vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
469 fact->numero_remito = form_obtener_valor_int(form, "Nro Remito");
470 strcpy(fact->estado, form_obtener_valor_char(form, "Estado"));
471 strcpy(fact->fp, form_obtener_valor_char(form, "Forma de pago"));
472 fact->procdoi = form_obtener_valor_float(form, "%% Descuento");
473 strcpy(fact->ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
474 strcpy(fact->cheque, form_obtener_valor_char(form, "Cheque Nro"));
479 fact->nota = form_obtener_valor_char(form_nota, "");
481 form_destruir(form_nota);
483 entrada = procesar_guardar_factura(fact, lst_facturas, &size);
485 id = lst_facturas->fp->modificar_registro(lst_facturas->fp, id, entrada, size, &error);
486 id_texto = lst_facturas->fp_texto->modificar_registro(lst_facturas->fp_texto, id_texto, fact->nota, strlen(fact->nota)+1, &error);
501 void fact_agregar(char *s)
503 WINDOW *win, *items, *nota, *subnota;
504 t_Form *form, *form_nota;
508 EMUFS_REG_ID id, id_texto;
509 int y_actual, cant, error;
512 win = newwin(LINES-4, COLS-2, 2, 1);
514 mvwaddch(win, 10, 0, ACS_LTEE);
515 mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
516 mvwaddch(win, 10, COLS-3, ACS_RTEE);
519 items = derwin(win, LINES-20, COLS-4, 15, 1);
520 nota = derwin(win, 9, COLS-62, 1, 56);
521 subnota = derwin(nota, 7, COLS-64, 1, 1);
523 mvwaddstr(nota, 0, 1, "Nota :");
527 form = form_crear(win);
528 form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
529 form_agregar_widget(form, INPUT, "Fecha Emision", 8, "");
530 form_agregar_widget(form, INPUT, "Fecha Vto", 8, "");
531 form_agregar_widget(form, INPUT, "Nro Remito", 8, "");
532 form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
533 form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
534 form_agregar_widget(form, INPUT, "%% Descuento", 5, "");
535 form_agregar_widget(form, INPUT, "Cuenta Cte", 5, "");
536 form_agregar_widget(form, INPUT, "Cheque Nro", 18, "");
538 form_ejecutar(form, 1,1);
540 form_nota = form_crear(subnota);
541 form_agregar_widget(form_nota, INPUT, "", 255, "");
542 form_ejecutar(form_nota, 0, 0);
544 /* XXX No destruir form_nota hasta el final !!!!! XXX */
546 fact.numero = form_obtener_valor_int(form, "Numero de Factura");
547 strcpy(fact.emision, form_obtener_valor_char(form, "Fecha Emision"));
548 strcpy(fact.vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
549 fact.numero_remito = form_obtener_valor_int(form, "Nro Remito");
550 strcpy(fact.estado, form_obtener_valor_char(form, "Estado"));
551 strcpy(fact.fp, form_obtener_valor_char(form, "Forma de pago"));
552 fact.procdoi = form_obtener_valor_float(form, "%% Descuento");
553 strcpy(fact.ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
554 strcpy(fact.cheque, form_obtener_valor_char(form, "Cheque Nro"));
558 form = form_crear(win);
559 form_agregar_widget(form, INPUT, "Nro de Articulo (* == fin)", 8, "");
560 form_agregar_widget(form, INPUT, "CV", 8, "");
561 form_agregar_widget(form, INPUT, "PVU", 8, "");
564 mvwaddstr(win, 15, 2, "Numero");
565 mvwaddstr(win, 15, 11, "CV");
566 mvwaddstr(win, 15, 21, "PVU");
569 form_set_valor(form, "Nro de Articulo (* == fin)", "");
570 form_set_valor(form, "CV", "");
571 form_set_valor(form, "PVU", "");
572 form_ejecutar(form, 2, 11);
574 entrada = form_obtener_valor_char(form, "Nro de Articulo (* == fin)");
576 if ((entrada[0] != '\0') && (entrada[0] != '*')){
578 if (y_actual > LINES-22) {
582 mvwaddstr(items, y_actual, 1, entrada);
583 mvwaddstr(items, y_actual, 10, form_obtener_valor_char(form, "CV"));
584 mvwaddstr(items, y_actual, 20, form_obtener_valor_char(form, "PVU"));
588 its = (t_Item *)realloc(its, cant*sizeof(t_Item));
590 its[cant-1].numero = atoi(entrada);
591 strcpy(its[cant-1].cv, form_obtener_valor_char(form, "CV"));
592 strcpy(its[cant-1].pvu, form_obtener_valor_char(form, "PVU"));
595 } while (entrada[0] != '*');
597 if (lst_facturas->fp->tipo == T3) {
599 /* TODO Limitar en la GUI en lugar de truncar! */
600 its = (t_Item *)realloc(its, 10*sizeof(t_Item));
604 memset(its+sizeof(t_Item)*cant, 0, (10-cant)*sizeof(t_Item));
610 fact.cant_items = cant;
611 fact.nota = form_obtener_valor_char(form_nota, "");
613 entrada = procesar_guardar_factura(&fact,lst_facturas, &size);
616 id = lst_facturas->fp->grabar_registro(lst_facturas->fp, entrada, size, &error);
617 id_texto = lst_facturas->fp_texto->grabar_registro(lst_facturas->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
618 agregar_nodo_factura(lst_facturas, crear_nodo_factura(id, id_texto, fact.numero));
624 form_destruir(form_nota);
634 void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, EMUFS_REG_SIZE *size)
639 switch (lst->fp->tipo) {
642 /* Calculo el tamaño que voy a necesitar */
644 i[1] = sizeof(float);
647 i[4] = sizeof(EMUFS_BLOCK_ID);
648 i[5] = sizeof(char)*(strlen(f->emision)+1); /* +1 por el \0 para separar */
649 i[6] = sizeof(char)*(strlen(f->vencimiento)+1); /* +1 por el \0 para separar */
650 i[7] = sizeof(char)*(strlen(f->estado)+1); /* +1 por el \0 para separar */
651 i[8] = sizeof(char)*(strlen(f->fp)+1); /* +1 por el \0 para separar */
652 i[9] = sizeof(char)*(strlen(f->ctacte)+1); /* +1 por el \0 para separar */
653 i[10] = sizeof(char)*(strlen(f->cheque)+1); /* +1 por el \0 para separar */
654 i[11] = sizeof(t_Item)*f->cant_items;
655 (*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];
656 tmp = (char *)malloc(*size);
657 if (tmp == NULL) return NULL;
658 memset(tmp, 0, *size);
659 /* Ahora copio la info */
660 memcpy(tmp, &f->numero, i[0]);
661 memcpy(tmp+i[0], &f->procdoi, i[1]);
662 memcpy(tmp+i[0]+i[1], &f->numero_remito, i[2]);
663 memcpy(tmp+i[0]+i[1]+i[2], &f->cant_items, i[3]);
664 memcpy(tmp+i[0]+i[1]+i[2]+i[3], &f->reg_nota, i[4]);
665 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], f->emision, i[5]);
666 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5], f->vencimiento, i[6]);
667 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6], f->estado, i[7]);
668 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7], f->fp, i[8]);
669 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7]+i[8], f->ctacte, i[9]);
670 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]);
672 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]);
675 (*size) = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *) + f->cant_items*sizeof(t_Item);
676 tmp = (char *)malloc(*size);
677 if (tmp == NULL) return NULL;
678 memcpy(tmp, f, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *));
679 memcpy(tmp+sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *), f->items, f->cant_items*sizeof(t_Item));
684 static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, t_LstFacturas *lst)
690 PERR("Puntero a lista NULO");
693 if (lst->fp == NULL) {
694 PERR("EMUFS No creado!");
698 switch (lst->fp->tipo) {
702 /* Copio los campos numericos, muy facil:-) */
703 memcpy(&dst->numero, ini, sizeof(int));
706 memcpy(&dst->procdoi, ini, sizeof(float));
709 memcpy(&dst->numero_remito, ini, sizeof(int));
712 memcpy(&dst->cant_items, ini, sizeof(int));
715 memcpy(&dst->reg_nota, ini, sizeof(EMUFS_BLOCK_ID));
716 ini+=sizeof(EMUFS_BLOCK_ID);
718 /* Ahora empieza el juego */
719 /* Los \0 son los delimitadores de campo! */
721 while (*fin!='\0') fin++;
722 memcpy(dst->emision, ini, fin-ini+1);
726 while (*fin!='\0') fin++;
727 memcpy(dst->vencimiento, ini, fin-ini+1);
731 while (*fin!='\0') fin++;
732 memcpy(dst->estado, ini, fin-ini+1);
736 while (*fin!='\0') fin++;
737 memcpy(dst->fp, ini, fin-ini+1);
741 while (*fin!='\0') fin++;
742 memcpy(dst->ctacte, ini, fin-ini+1);
746 while (*fin!='\0') fin++;
747 memcpy(dst->cheque, ini, fin-ini+1);
749 if (dst->cant_items > 0) {
750 /* Ahora tengo que cargar los items */
751 dst->items = (t_Item *)malloc(sizeof(t_Item)*dst->cant_items);
754 fin = (char *)src+size;
755 memcpy(dst->items, ini, fin-ini);
760 dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);
764 /* Se que tengo 10 items */
765 /* TODO : Ver porque leer_registro_tipo3 tira mal el size */
766 size = lst->fp->tam_reg;
767 memcpy(dst, src, size-sizeof(t_Item)*10);
768 dst->items = (t_Item *)malloc(10*sizeof(t_Item));
769 memcpy(dst->items, src+size-sizeof(t_Item)*10, 10*sizeof(t_Item));
770 dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);
775 void fact_reformatear(int tipo, int tam_bloque, int tam_reg, int nota_tipo, int nota_tam_bloque, int nota_tam_registro)
778 EMUFS_REG_ID *indices, id;
779 EMUFS_REG_SIZE indices_total, i, size, tam_reg1;
781 t_LstFacturas *lst_nueva;
785 PERR("==== EMPIEZO ====\n");
786 old = lst_facturas->fp;
788 /* Creo el nuevo file */
789 PERR("Creo el archivo\n");
791 /* Me aseguro de que entren n items completos */
792 tam_reg1 = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+10*sizeof(t_Item);
794 nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, tam_reg1);
796 PERR("ARCHIVO NUEVO NO CREADO");
800 /* Creo la nueva lista */
801 lst_nueva = (t_LstFacturas *)malloc(sizeof(t_LstFacturas));
802 lst_nueva->primero = NULL;
803 lst_nueva->fp = nuevo;
804 lst_nueva->fp_texto = emufs_crear("nota_tmp", nota_tipo, nota_tam_bloque, nota_tam_registro);
806 /* Leo los indices del archivo viejo */
807 PERR("Obtengo Indices\n");
808 indices = emufs_idx_get(old, &indices_total);
809 if (indices == NULL) {
810 fact_liberar(lst_nueva);
814 PERR("Proceso datos");
815 for(i=0; i<indices_total; i++) {
818 save = old->leer_registro(old, indices[i], &size, &error);
819 if (procesar_leer_factura(&fact, save, size, lst_facturas) == 0) {
820 PERR("Procese Leer Ok");
822 /* Lei un registro Ok. Lo salvo en el archivo nuevo */
824 /* Actualizo el ID de la nota asociada */
825 fact.reg_nota = lst_nueva->fp_texto->grabar_registro(lst_nueva->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
826 save = procesar_guardar_factura(&fact, lst_nueva, &size);
827 PERR("Procese Grabar Ok");
830 PERR("Grabo el Registro");
831 id = nuevo->grabar_registro(nuevo, save, size, &error);
833 agregar_nodo_factura(lst_nueva, crear_nodo_factura(id, fact.reg_nota, fact.numero));
834 PERR("Libero Memoria");
836 if (fact.items) free(fact.items);
837 if (fact.nota) free(fact.nota);
838 PERR("Termine con este Item");
845 PERR("Libero lo viejo\n");
846 fact_liberar(lst_facturas);
848 PERR("Ahora tengo lo nuevo\n");
849 lst_facturas = lst_nueva;
851 /* El nuevo tiene como nombre emufs_tmp, lo cambio a mano! */
852 free(lst_facturas->fp->nombre);
853 lst_facturas->fp->nombre = (char *)malloc(sizeof(char)*(strlen("facturas")+1));
854 strcpy(lst_facturas->fp->nombre, "facturas");
856 /* Tambien actualizo el nombre para notas */
857 free(lst_facturas->fp_texto->nombre);
858 lst_facturas->fp_texto->nombre = (char *)malloc(sizeof(char)*(strlen("notas")+1));
859 strcpy(lst_facturas->fp_texto->nombre, "notas");
861 /* Muevo los archivos! */
862 /* TODO : Poner en otro lugar mas generico! */
863 PERR("Renombre!!\n");
864 rename("emufs_tmp.dat", "facturas.dat");
865 rename("emufs_tmp.idx", "facturas.idx");
866 rename("emufs_tmp.fsc", "facturas.fsc");
867 rename("emufs_tmp.did", "facturas.did");
868 rename("nota_tmp.dat", "notas.dat");
869 rename("nota_tmp.idx", "notas.idx");
870 rename("nota_tmp.fsc", "notas.fsc");
871 rename("nota_tmp.did", "notas.did");
872 PERR("==== TERMINE ====\n");
875 int fact_exportar_xml(const char *filename)
880 EMUFS_REG_ID id, id1;
883 if (lst_facturas->primero == NULL) return 0;
885 nodo = lst_facturas->primero;
887 if (!(fp = fopen(filename, "wt"))) return 0;
889 fprintf(fp, "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n");
890 fprintf(fp, "<FACTURAS>\n");
892 fact = fact_buscar(lst_facturas, nodo->numero, &id, &id1);
893 fprintf(fp, "\t<FACTURA NroFac=\"%08d\" ", nodo->numero);
894 fprintf(fp, "FechaEmisión=\"%s\" ", fact->emision);
895 fprintf(fp, "FechaVto=\"%s\" ", fact->vencimiento);
896 fprintf(fp, "NroRemito=\"%08d\" ", fact->numero_remito);
897 fprintf(fp, "FP=\"%s\" ", fact->fp);
898 fprintf(fp, "Estado=\"%s\" ", fact->estado);
899 fprintf(fp, "NroCheque=\"%s\" ", fact->cheque);
900 fprintf(fp, "PorcDoI=\"%.2f\" ", fact->procdoi);
901 fprintf(fp, "NroCtaCte=\"%s\" ", fact->ctacte);
903 fprintf(fp, "\t\t<NOTA>%s</NOTA>\n", fact->nota);
904 for(j=0; j<fact->cant_items; j++) {
905 if (fact->items[j].numero != 0)
906 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);
908 fprintf(fp, "\t</FACTURA>\n");
911 fprintf(fp, "\t</FACTURAS>\n");