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 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], '*', 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-1].cv[8] = '\0';
125 strncpy(tmp[count].pvu, prop = xml_get_prop(node, "PVU"), 8); xmlFree(prop);
126 tmp[count-1].pvu[8] = '\0';
130 if (count == 10) break; /* No me entran mas items! */
137 char *leer_nota(xmlNode *node)
141 tmp = node->children;
143 if (tmp->type == XML_ELEMENT_NODE) {
144 if (strcmp(tmp->name, "NOTA") == 0) {
152 salida = (char *)malloc(sizeof(char)*(strlen(XML_GET_CONTENT(tmp->children))+1));
153 strcpy(salida, XML_GET_CONTENT(tmp->children));
155 salida = (char *)malloc(sizeof(char));
162 t_LstFacturas *fact_cargar(const char *filename, int tipo, int tam_bloque, int tipo_nota, int bloque_nota)
165 xmlNode *node, *inicio;
166 int error = 0, cant_items, i;
170 EMUFS_REG_ID id, *indices, indices_cant;
174 tmp = (t_LstFacturas *)malloc(sizeof(t_LstFacturas));
175 if (tmp == NULL) return NULL;
179 if (filename != NULL) {
180 PERR("Voy a cargar de un XML");
181 document = xmlReadFile(filename, "ISO-8859-1",0);
182 if (document == NULL) {
183 PERR("Error al leer documento!!");
190 node = xmlDocGetRootElement(document);
191 /* Busco el TAG principal "ARTICULOS" */
193 if (node->type == XML_ELEMENT_NODE) {
194 if (strcmp(node->name, "FACTURAS") == 0) {
195 inicio = node->children;
202 /* En el registro no guardo los punteros de nota ni items. Si guardo la cantidad de items
203 * y los items al final del registro.
205 if ((tipo-1) == T3) {
206 /* Limito a 10 items en el caso de registro constante! */
211 tmp->fp = emufs_crear("facturas", tipo-1, tam_bloque, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+cant_items*sizeof(t_Item));
213 fprintf(stderr, "Facturas : Tipo=%d Tam Bloque = %d\n", tipo-1, tam_bloque);
214 fprintf(stderr, "Notas : Tipo=%d Tam Bloque = %d\n", tipo_nota-1, bloque_nota);
216 tmp->fp_texto = emufs_crear("notas", tipo_nota-1, bloque_nota, 100);
217 for (node=inicio ; node ; node = node->next) {
218 if (node->type == XML_ELEMENT_NODE) {
219 if (strcmp(node->name, "FACTURA") == 0) {
222 memset(&fact, 0, sizeof(t_Factura));
223 prop = xml_get_prop(node, "NroFac");
224 fact.numero = atoi(prop); xmlFree(prop);
225 prop = xml_get_prop(node, "PorcDoI");
226 fact.procdoi = atof(prop); xmlFree(prop);
227 prop = xml_get_prop(node, "NroRemito");
228 fact.numero_remito = atoi(prop); xmlFree(prop);
229 strncpy(fact.emision, prop = xml_get_prop(node, "FechaEmisión"), 8); xmlFree(prop);
230 fact.emision[8] = '\0';
231 strncpy(fact.vencimiento, prop = xml_get_prop(node, "FechaVto"), 8); xmlFree(prop);
232 fact.vencimiento[8] = '\0';
233 strncpy(fact.estado, prop = xml_get_prop(node, "Estado"), 2); xmlFree(prop);
234 fact.estado[2] = '\0';
235 strncpy(fact.fp, prop = xml_get_prop(node, "FP"), 2); xmlFree(prop);
237 strncpy(fact.ctacte, prop = xml_get_prop(node, "NroCtaCte"), 5); xmlFree(prop);
238 fact.ctacte[5] = '\0';
239 strncpy(fact.cheque, prop = xml_get_prop(node, "NroCheque"), 18); xmlFree(prop);
240 fact.cheque[18] = '\0';
242 fact.nota = leer_nota(node);
243 fact.items = leer_items(node, &fact.cant_items, ((tipo-1)==T3)?10:-1);
246 id = tmp->fp_texto->grabar_registro(tmp->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
248 save = procesar_guardar_factura(&fact, lst_facturas, &size);
251 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
252 agregar_nodo_factura(tmp, crear_nodo_factura(id, fact.reg_nota, fact.numero));
253 if (fact.items) free(fact.items);
254 if (fact.nota) free(fact.nota);
260 xmlFreeDoc(document);
263 PERR("Voy a recuperar desde un archivo");
264 tmp->fp = emufs_abrir("facturas");
265 if (tmp->fp == NULL) {
266 PERR("No se pudo cargar archivo de facturas!");
271 tmp->fp_texto = emufs_abrir("notas");
272 if (tmp->fp_texto == NULL) {
273 PERR("No se pudo cargar archivo de notas!");
274 emufs_destruir(tmp->fp);
280 /* Ahora trato de recuperar la info */
281 indices = emufs_idx_get(tmp->fp, &indices_cant);
282 for(i=0; i<indices_cant; i++) {
285 /* Leo el registro */
286 save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
287 if (procesar_leer_factura(&art, save, size, tmp) == 1) {
288 agregar_nodo_factura(tmp, crear_nodo_factura(indices[i], art.reg_nota, art.numero));
295 PERR("Facturas todo Ok");
299 int fact_liberar(t_LstFacturas *l)
302 if (l == NULL) l = lst_facturas;
303 if (l == NULL) return 1;
305 emufs_destruir(l->fp);
306 emufs_destruir(l->fp_texto);
309 l->primero = l->primero->sig;
318 t_Factura *fact_buscar(t_LstFacturas *lst, int numero, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
325 if (lst == NULL) return NULL;
330 if (reg->numero == numero) {
333 leo = lst->fp->leer_registro(lst->fp, reg->num_reg, &size, &error);
335 fact = (t_Factura *)malloc(sizeof(t_Factura));
340 procesar_leer_factura(fact, leo, size, lst);
341 (*id) = reg->num_reg;
342 (*id_texto) = reg->texto_reg;
344 fact->nota = lst->fp_texto->leer_registro(lst->fp_texto, reg->texto_reg, &size, &error);
353 t_Factura *fact_form_buscar(WINDOW *win, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
358 form = form_crear(win);
359 form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
360 form_ejecutar(form, 1,1);
361 fact = fact_buscar(lst_facturas, form_obtener_valor_int(form, "Numero de Factura"), id, id_texto);
367 void fact_eliminar(char *s)
374 win = newwin(LINES-4, COLS-2, 2, 1);
377 fact = fact_form_buscar(win, &id, &id);
380 wattron(win, COLOR_PAIR(COLOR_YELLOW));
381 mvwaddstr(win, 2, 1, "No existe artículo con ese código. Abortando!");
382 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
391 nodo = lst_facturas->primero;
393 if (nodo->numero == fact->numero) {
394 lst_facturas->fp->borrar_registro(lst_facturas->fp, nodo->num_reg);
395 lst_facturas->fp_texto->borrar_registro(lst_facturas->fp_texto, nodo->texto_reg);
396 eliminar_nodo_factura(lst_facturas, nodo);
406 void fact_modificar(char *s)
408 WINDOW *win, *items, *nota, *subnota;
409 t_Form *form, *form_nota;
412 EMUFS_REG_ID id, id_texto;
418 win = newwin(LINES-4, COLS-2, 2, 1);
421 fact = fact_form_buscar(win, &id, &id_texto);
424 wattron(win, COLOR_PAIR(COLOR_YELLOW));
425 mvwaddstr(win, 2, 1, "No existe artículo con ese código. Abortando!");
426 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
435 mvwaddch(win, 10, 0, ACS_LTEE);
436 mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
437 mvwaddch(win, 10, COLS-3, ACS_RTEE);
440 items = derwin(win, LINES-20, COLS-4, 15, 1);
441 nota = derwin(win, 9, COLS-62, 1, 56);
442 subnota = derwin(nota, 7, COLS-64, 1, 1);
444 mvwaddstr(nota, 0, 1, "Nota :");
448 form = form_crear(win);
449 sprintf(tmp_str, "%08d", fact->numero);
450 form_agregar_widget(form, INPUT, "Numero de Factura", 8, tmp_str);
451 form_agregar_widget(form, INPUT, "Fecha Emision", 8, fact->emision);
452 form_agregar_widget(form, INPUT, "Fecha Vto", 8, fact->vencimiento);
453 sprintf(tmp_str, "%08d", fact->numero_remito);
454 form_agregar_widget(form, INPUT, "Nro Remito", 8, tmp_str);
455 form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
456 form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
457 sprintf(tmp_str, "%02.2f", fact->procdoi);
458 form_agregar_widget(form, INPUT, "%% Descuento", 5, tmp_str);
459 form_agregar_widget(form, INPUT, "Cuenta Cte", 5, fact->ctacte);
460 form_agregar_widget(form, INPUT, "Cheque Nro", 18, fact->cheque);
462 mvwaddstr(subnota, 0, 0, fact->nota);
464 form_ejecutar(form, 1,1);
466 form_nota = form_crear(subnota);
467 form_agregar_widget(form_nota, INPUT, "", 255, fact->nota);
468 form_ejecutar(form_nota, 0, 0);
470 fact->numero = form_obtener_valor_int(form, "Numero de Factura");
471 strcpy(fact->emision, form_obtener_valor_char(form, "Fecha Emision"));
472 strcpy(fact->vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
473 fact->numero_remito = form_obtener_valor_int(form, "Nro Remito");
474 strcpy(fact->estado, form_obtener_valor_char(form, "Estado"));
475 strcpy(fact->fp, form_obtener_valor_char(form, "Forma de pago"));
476 fact->procdoi = form_obtener_valor_float(form, "%% Descuento");
477 strcpy(fact->ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
478 strcpy(fact->cheque, form_obtener_valor_char(form, "Cheque Nro"));
483 fact->nota = form_obtener_valor_char(form_nota, "");
485 form_destruir(form_nota);
487 entrada = procesar_guardar_factura(fact, lst_facturas, &size);
489 id = lst_facturas->fp->modificar_registro(lst_facturas->fp, id, entrada, size, &error);
490 id_texto = lst_facturas->fp_texto->modificar_registro(lst_facturas->fp_texto, id_texto, fact->nota, strlen(fact->nota)+1, &error);
505 void fact_agregar(char *s)
507 WINDOW *win, *items, *nota, *subnota;
508 t_Form *form, *form_nota;
512 EMUFS_REG_ID id, id_texto;
513 int y_actual, cant, error;
516 win = newwin(LINES-4, COLS-2, 2, 1);
518 mvwaddch(win, 10, 0, ACS_LTEE);
519 mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
520 mvwaddch(win, 10, COLS-3, ACS_RTEE);
523 items = derwin(win, LINES-20, COLS-4, 15, 1);
524 nota = derwin(win, 9, COLS-62, 1, 56);
525 subnota = derwin(nota, 7, COLS-64, 1, 1);
527 mvwaddstr(nota, 0, 1, "Nota :");
531 form = form_crear(win);
532 form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
533 form_agregar_widget(form, INPUT, "Fecha Emision", 8, "");
534 form_agregar_widget(form, INPUT, "Fecha Vto", 8, "");
535 form_agregar_widget(form, INPUT, "Nro Remito", 8, "");
536 form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
537 form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
538 form_agregar_widget(form, INPUT, "%% Descuento", 5, "");
539 form_agregar_widget(form, INPUT, "Cuenta Cte", 5, "");
540 form_agregar_widget(form, INPUT, "Cheque Nro", 18, "");
542 form_ejecutar(form, 1,1);
544 form_nota = form_crear(subnota);
545 form_agregar_widget(form_nota, INPUT, "", 255, "");
546 form_ejecutar(form_nota, 0, 0);
548 /* XXX No destruir form_nota hasta el final !!!!! XXX */
550 fact.numero = form_obtener_valor_int(form, "Numero de Factura");
551 strcpy(fact.emision, form_obtener_valor_char(form, "Fecha Emision"));
552 strcpy(fact.vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
553 fact.numero_remito = form_obtener_valor_int(form, "Nro Remito");
554 strcpy(fact.estado, form_obtener_valor_char(form, "Estado"));
555 strcpy(fact.fp, form_obtener_valor_char(form, "Forma de pago"));
556 fact.procdoi = form_obtener_valor_float(form, "%% Descuento");
557 strcpy(fact.ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
558 strcpy(fact.cheque, form_obtener_valor_char(form, "Cheque Nro"));
562 form = form_crear(win);
563 form_agregar_widget(form, INPUT, "Nro de Articulo (* == fin)", 8, "");
564 form_agregar_widget(form, INPUT, "CV", 8, "");
565 form_agregar_widget(form, INPUT, "PVU", 8, "");
568 mvwaddstr(win, 15, 2, "Numero");
569 mvwaddstr(win, 15, 11, "CV");
570 mvwaddstr(win, 15, 21, "PVU");
573 form_set_valor(form, "Nro de Articulo (* == fin)", "");
574 form_set_valor(form, "CV", "");
575 form_set_valor(form, "PVU", "");
576 form_ejecutar(form, 2, 11);
578 entrada = form_obtener_valor_char(form, "Nro de Articulo (* == fin)");
580 if ((entrada[0] != '\0') && (entrada[0] != '*')){
582 if (y_actual > LINES-22) {
586 mvwaddstr(items, y_actual, 1, entrada);
587 mvwaddstr(items, y_actual, 10, form_obtener_valor_char(form, "CV"));
588 mvwaddstr(items, y_actual, 20, form_obtener_valor_char(form, "PVU"));
592 its = (t_Item *)realloc(its, cant*sizeof(t_Item));
594 its[cant-1].numero = atoi(entrada);
595 strcpy(its[cant-1].cv, form_obtener_valor_char(form, "CV"));
596 strcpy(its[cant-1].pvu, form_obtener_valor_char(form, "PVU"));
599 } while (entrada[0] != '*');
601 if (lst_facturas->fp->tipo == T3) {
603 /* TODO Limitar en la GUI en lugar de truncar! */
604 its = (t_Item *)realloc(its, 10*sizeof(t_Item));
608 memset(its+sizeof(t_Item)*cant, 0, (10-cant)*sizeof(t_Item));
614 fact.cant_items = cant;
615 fact.nota = form_obtener_valor_char(form_nota, "");
617 entrada = procesar_guardar_factura(&fact,lst_facturas, &size);
620 id = lst_facturas->fp->grabar_registro(lst_facturas->fp, entrada, size, &error);
621 id_texto = lst_facturas->fp_texto->grabar_registro(lst_facturas->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
622 agregar_nodo_factura(lst_facturas, crear_nodo_factura(id, id_texto, fact.numero));
628 form_destruir(form_nota);
638 void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, EMUFS_REG_SIZE *size)
643 switch (lst->fp->tipo) {
646 /* Calculo el tamaño que voy a necesitar */
648 i[1] = sizeof(float);
651 i[4] = sizeof(EMUFS_BLOCK_ID);
652 i[5] = sizeof(char)*(strlen(f->emision)+1); /* +1 por el \0 para separar */
653 i[6] = sizeof(char)*(strlen(f->vencimiento)+1); /* +1 por el \0 para separar */
654 i[7] = sizeof(char)*(strlen(f->estado)+1); /* +1 por el \0 para separar */
655 i[8] = sizeof(char)*(strlen(f->fp)+1); /* +1 por el \0 para separar */
656 i[9] = sizeof(char)*(strlen(f->ctacte)+1); /* +1 por el \0 para separar */
657 i[10] = sizeof(char)*(strlen(f->cheque)+1); /* +1 por el \0 para separar */
658 i[11] = sizeof(t_Item)*f->cant_items;
659 (*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];
660 tmp = (char *)malloc(*size);
661 if (tmp == NULL) return NULL;
662 memset(tmp, 0, *size);
663 /* Ahora copio la info */
664 memcpy(tmp, &f->numero, i[0]);
665 memcpy(tmp+i[0], &f->procdoi, i[1]);
666 memcpy(tmp+i[0]+i[1], &f->numero_remito, i[2]);
667 memcpy(tmp+i[0]+i[1]+i[2], &f->cant_items, i[3]);
668 memcpy(tmp+i[0]+i[1]+i[2]+i[3], &f->reg_nota, i[4]);
669 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], f->emision, i[5]);
670 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5], f->vencimiento, i[6]);
671 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6], f->estado, i[7]);
672 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7], f->fp, i[8]);
673 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7]+i[8], f->ctacte, i[9]);
674 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]);
676 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]);
679 (*size) = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *) + f->cant_items*sizeof(t_Item);
680 tmp = (char *)malloc(*size);
681 if (tmp == NULL) return NULL;
682 memcpy(tmp, f, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *));
683 memcpy(tmp+sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *), f->items, f->cant_items*sizeof(t_Item));
688 static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, t_LstFacturas *lst)
694 PERR("Puntero a lista NULO");
697 if (lst->fp == NULL) {
698 PERR("EMUFS No creado!");
702 switch (lst->fp->tipo) {
706 /* Copio los campos numericos, muy facil:-) */
707 memcpy(&dst->numero, ini, sizeof(int));
710 memcpy(&dst->procdoi, ini, sizeof(float));
713 memcpy(&dst->numero_remito, ini, sizeof(int));
716 memcpy(&dst->cant_items, ini, sizeof(int));
719 memcpy(&dst->reg_nota, ini, sizeof(EMUFS_BLOCK_ID));
720 ini+=sizeof(EMUFS_BLOCK_ID);
722 /* Ahora empieza el juego */
723 /* Los \0 son los delimitadores de campo! */
725 while (*fin!='\0') fin++;
726 memcpy(dst->emision, ini, fin-ini+1);
730 while (*fin!='\0') fin++;
731 memcpy(dst->vencimiento, ini, fin-ini+1);
735 while (*fin!='\0') fin++;
736 memcpy(dst->estado, ini, fin-ini+1);
740 while (*fin!='\0') fin++;
741 memcpy(dst->fp, ini, fin-ini+1);
745 while (*fin!='\0') fin++;
746 memcpy(dst->ctacte, ini, fin-ini+1);
750 while (*fin!='\0') fin++;
751 memcpy(dst->cheque, ini, fin-ini+1);
753 if (dst->cant_items > 0) {
754 /* Ahora tengo que cargar los items */
755 dst->items = (t_Item *)malloc(sizeof(t_Item)*dst->cant_items);
758 fin = (char *)src+size;
759 memcpy(dst->items, ini, fin-ini);
764 dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);
768 /* Se que tengo 10 items */
769 /* TODO : Ver porque leer_registro_tipo3 tira mal el size */
770 size = lst->fp->tam_reg;
771 memcpy(dst, src, size-sizeof(t_Item)*10);
772 dst->items = (t_Item *)malloc(10*sizeof(t_Item));
773 memcpy(dst->items, src+size-sizeof(t_Item)*10, 10*sizeof(t_Item));
774 dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);
779 void fact_reformatear(int tipo, int tam_bloque, int tam_reg, int nota_tipo, int nota_tam_bloque, int nota_tam_registro)
782 EMUFS_REG_ID *indices, id;
783 EMUFS_REG_SIZE indices_total, i, size, tam_reg1;
785 t_LstFacturas *lst_nueva;
789 PERR("==== EMPIEZO ====\n");
790 old = lst_facturas->fp;
792 /* Creo el nuevo file */
793 PERR("Creo el archivo\n");
795 /* Me aseguro de que entren n items completos */
796 tam_reg1 = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+10*sizeof(t_Item);
798 nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, tam_reg1);
800 PERR("ARCHIVO NUEVO NO CREADO");
804 /* Creo la nueva lista */
805 lst_nueva = (t_LstFacturas *)malloc(sizeof(t_LstFacturas));
806 lst_nueva->primero = NULL;
807 lst_nueva->fp = nuevo;
808 lst_nueva->fp_texto = emufs_crear("nota_tmp", nota_tipo, nota_tam_bloque, nota_tam_registro);
810 /* Leo los indices del archivo viejo */
811 PERR("Obtengo Indices\n");
812 indices = emufs_idx_get(old, &indices_total);
813 if (indices == NULL) {
814 fact_liberar(lst_nueva);
818 PERR("Proceso datos");
819 for(i=0; i<indices_total; i++) {
822 save = old->leer_registro(old, indices[i], &size, &error);
823 if (procesar_leer_factura(&fact, save, size, lst_facturas) == 0) {
824 PERR("Procese Leer Ok");
826 /* Lei un registro Ok. Lo salvo en el archivo nuevo */
828 /* Actualizo el ID de la nota asociada */
829 fact.reg_nota = lst_nueva->fp_texto->grabar_registro(lst_nueva->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
830 save = procesar_guardar_factura(&fact, lst_nueva, &size);
831 PERR("Procese Grabar Ok");
834 PERR("Grabo el Registro");
835 id = nuevo->grabar_registro(nuevo, save, size, &error);
837 agregar_nodo_factura(lst_nueva, crear_nodo_factura(id, fact.reg_nota, fact.numero));
838 PERR("Libero Memoria");
840 if (fact.items) free(fact.items);
841 if (fact.nota) free(fact.nota);
842 PERR("Termine con este Item");
849 PERR("Libero lo viejo\n");
850 fact_liberar(lst_facturas);
852 PERR("Ahora tengo lo nuevo\n");
853 lst_facturas = lst_nueva;
855 /* El nuevo tiene como nombre emufs_tmp, lo cambio a mano! */
856 free(lst_facturas->fp->nombre);
857 lst_facturas->fp->nombre = (char *)malloc(sizeof(char)*(strlen("facturas")+1));
858 strcpy(lst_facturas->fp->nombre, "facturas");
860 /* Tambien actualizo el nombre para notas */
861 free(lst_facturas->fp_texto->nombre);
862 lst_facturas->fp_texto->nombre = (char *)malloc(sizeof(char)*(strlen("notas")+1));
863 strcpy(lst_facturas->fp_texto->nombre, "notas");
865 /* Muevo los archivos! */
866 /* TODO : Poner en otro lugar mas generico! */
867 PERR("Renombre!!\n");
868 rename("emufs_tmp.dat", "facturas.dat");
869 rename("emufs_tmp.idx", "facturas.idx");
870 rename("emufs_tmp.fsc", "facturas.fsc");
871 rename("emufs_tmp.did", "facturas.did");
872 rename("nota_tmp.dat", "notas.dat");
873 rename("nota_tmp.idx", "notas.idx");
874 rename("nota_tmp.fsc", "notas.fsc");
875 rename("nota_tmp.did", "notas.did");
876 PERR("==== TERMINE ====\n");
879 int fact_exportar_xml(const char *filename)
884 EMUFS_REG_ID id, id1;
887 if (lst_facturas->primero == NULL) return 0;
889 nodo = lst_facturas->primero;
891 if (!(fp = fopen(filename, "wt"))) return 0;
893 fprintf(fp, "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n");
894 fprintf(fp, "<FACTURAS>\n");
896 fact = fact_buscar(lst_facturas, nodo->numero, &id, &id1);
897 fprintf(fp, "\t<FACTURA NroFac=\"%08d\" ", nodo->numero);
898 fprintf(fp, "FechaEmisión=\"%s\" ", fact->emision);
899 fprintf(fp, "FechaVto=\"%s\" ", fact->vencimiento);
900 fprintf(fp, "NroRemito=\"%08d\" ", fact->numero_remito);
901 fprintf(fp, "FP=\"%s\" ", fact->fp);
902 fprintf(fp, "Estado=\"%s\" ", fact->estado);
903 fprintf(fp, "NroCheque=\"%s\" ", fact->cheque);
904 fprintf(fp, "PorcDoI=\"%.2f\" ", fact->procdoi);
905 fprintf(fp, "NroCtaCte=\"%s\" ", fact->ctacte);
907 fprintf(fp, "\t\t<NOTA>%s</NOTA>\n", fact->nota);
908 for(j=0; j<fact->cant_items; j++) {
909 if (fact->items[j].numero != 0)
910 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);
912 fprintf(fp, "\t</FACTURA>\n");
915 fprintf(fp, "\t</FACTURAS>\n");