]> git.llucax.com Git - z.facultad/75.06/emufs.git/commitdiff
* Ver Registros de archivo de Factura (para tipo3) implementado. Falta probar y
authorRicardo Markiewicz <gazer.arg@gmail.com>
Sat, 17 Apr 2004 22:58:44 +0000 (22:58 +0000)
committerRicardo Markiewicz <gazer.arg@gmail.com>
Sat, 17 Apr 2004 22:58:44 +0000 (22:58 +0000)
 algunos cambios para registros partidos.

emufs_gui/facturas.c
emufs_gui/gui.c
emufs_gui/registros.c
emufs_gui/registros.h

index 2b0a305965a9ed07f8e01babbca9b391e08596d3..83490bc8a3e317c2319df3a6a8088d8061594c1f 100644 (file)
@@ -88,13 +88,14 @@ t_Item *leer_items(xmlNode *node, int *cant, int size)
        } else {
                (*cant) = size;
                tmp = (t_Item *)malloc(sizeof(t_Item)*size);
-               memset(tmp, '$', sizeof(t_Item)*size);
+               memset(tmp, 0, sizeof(t_Item)*size);
 
                count = 0;
                node = node->children;
                while (node) {
                        if (node->type == XML_ELEMENT_NODE) {
                                if (strcmp(node->name, "ITEMVENTA") == 0) {
+                                       memset(&tmp[count], '*', sizeof(t_Item));
                                        prop = xml_get_prop(node, "NroArtículo");
                                        tmp[count].numero = atoi(prop);
                                        xmlFree(prop);
@@ -189,7 +190,7 @@ t_LstFacturas *fact_cargar(const char *filename, int tipo, int tam_bloque)
                                if (strcmp(node->name, "FACTURA") == 0) {
                                        t_Factura fact;
                                        void *save;
-                                       memset(&fact, 0, sizeof(t_Factura));
+                                       memset(&fact, '*', sizeof(t_Factura));
                                        prop = xml_get_prop(node, "NroFac");
                                        fact.numero = atoi(prop); xmlFree(prop);
                                        prop = xml_get_prop(node, "PorcDoI");
index 35ebc98ca5b37e2d61f9dfcc431896729eb438c6..95c5fee9a9349be7a73e947ef7ceb8ae02457a36 100644 (file)
@@ -70,7 +70,6 @@ t_Param param_ok(int argc, char *argv[])
                                                return BLOQUE_NO_DEFINIDO;
                                        parametros.tipo_arch_art = n;
                                        parametros.tam_bloque_art = atoi(argv[i+2]);
-                                       fprintf(stderr, "%d\n", parametros.tam_bloque_art);
                                        if (parametros.tam_bloque_art <= 0) return NULL_BLOCK_FOUND;
                                        parametros.xml_art = i;
                                } else {
@@ -233,7 +232,15 @@ int main(int argc, char *argv[])
                        break;
                        case 2:
                                dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
-                               ver_registros(dialog, COLS-2, LINES-4);
+                               ver_registros(dialog, COLS-2, LINES-4, 0);
+                               werase(dialog);
+                               wrefresh(dialog);
+                               delwin(dialog);
+                               refresh();
+                       break;
+                       case 3:
+                               dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
+                               ver_registros(dialog, COLS-2, LINES-4, 1);
                                werase(dialog);
                                wrefresh(dialog);
                                delwin(dialog);
index aa9c86758779785bdd2a4fbcdc742a9ff4e8ca95..983858d7c66274e7748301100447694f0ffcf265 100644 (file)
@@ -2,10 +2,15 @@
 #include "registros.h"
 #include "idx.h"
 #include "articulos.h"
+#include "facturas.h"
 
 /* Se encarga de reemplazar los \0 un caracter visual, y segurar un \0 al final */
 static char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
 static char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
+
+static char *procesar_registro_factura_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
+/*static char *procesar_registro_factura_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);*/
+
 static int preguntar_id(WINDOW *win, EMUFS *fp);
 
 void mostrar_info(WINDOW *padre, int h, int offset_alto)
@@ -49,7 +54,7 @@ void mostrar_info(WINDOW *padre, int h, int offset_alto)
        mvwaddstr(padre, h-offset_alto+7, 48, " < >  = Separador Bloques");
 }
        
-void ver_registros(WINDOW *padre, int w, int h)
+void ver_registros(WINDOW *padre, int w, int h, int cual)
 {
        /* Ventanas donde mostrar las cosas */
        char *(*procesar)(EMUFS*, char*, EMUFS_REG_SIZE*, int*, int*);
@@ -63,8 +68,12 @@ void ver_registros(WINDOW *padre, int w, int h)
        char codigo[50]; /* Variable para guardar el codigo actual para mandar a modificar */
        EMUFS *fp;
        int pos_actual, ancho_registro, offset, pos;
-       
-       fp = emufs_abrir("articulos");
+
+       if (cual == 0)
+               fp = emufs_abrir("articulos");
+       else
+               fp = emufs_abrir("facturas");
+
        wattron(padre, COLOR_PAIR(COLOR_BLUE));
        mvwaddstr(padre, 0, 0, "Tipo de archivo : ");
        wattroff(padre, COLOR_PAIR(COLOR_BLUE));
@@ -77,7 +86,10 @@ void ver_registros(WINDOW *padre, int w, int h)
                        waddstr(padre, "Registro variable sin bloques.");
                break;
                case T3:
-                       procesar = procesar_registro_articulo_tipo3;
+                       if (cual == 0)
+                               procesar = procesar_registro_articulo_tipo3;
+                       else
+                               procesar = procesar_registro_factura_tipo3;
                        waddstr(padre, "Registro fijo con bloque parametrizado.");
        }
 
@@ -142,7 +154,10 @@ void ver_registros(WINDOW *padre, int w, int h)
                        break;
                        case 'g':
                        case 'G':
-                               art_agregar(NULL);
+                               if (cual == 0)
+                                       art_agregar(NULL);
+                               else
+                                       fact_agregar(NULL);
                                free(data);
                                data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
                                data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
@@ -158,7 +173,10 @@ void ver_registros(WINDOW *padre, int w, int h)
                        case 'M':
                        case 'm': /* Quiero editar !!! */
                                sprintf(codigo, "%lu", indices[indices_actual]);
-                               art_modificar(codigo);  
+                               if (cual == 0)
+                                       art_modificar(codigo);  
+                               else
+                                       fact_modificar(codigo);
                                /* Vuelvo a cargar el articulo actual */
                                
                                free(data);
@@ -219,6 +237,7 @@ void ver_registros(WINDOW *padre, int w, int h)
        if (indices) free(indices);
        if (data) free(data);
 
+       emufs_destruir(fp);
        delwin(actual[0]);
        wrefresh(padre);
        curs_set(1);
@@ -427,3 +446,129 @@ int preguntar_id(WINDOW *win, EMUFS *fp)
        return n;
 }
 
+char *procesar_registro_factura_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
+{
+       char *tmp, *salida, *tmp1, pos_actualizada, ant;
+       char flotante[10];
+       int cant_header, i=0, j, tam_data, k;
+       int cant_items;
+       if (ptr == NULL) return NULL;
+
+       PERR("Empieza el baile");
+
+       /* Calculo cuantos headers de registros va a haber en el archivo */
+       if (emu->tam_bloque > emu->tam_reg) {
+               cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
+               if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */
+               tam_data = emu->tam_reg-sizeof(int)*3-sizeof(float)-sizeof(EMUFS_BLOCK_ID);
+       } else {
+               cant_header = 1;
+               tam_data = *size - sizeof(EMUFS_REG_ID)-sizeof(unsigned int);
+       }
+
+       fprintf(stderr, "Tengo %d headers\n", cant_header);
+       /* El tamaño del nuevo array lo calculo asi :
+        *   
+        */
+       tmp1 = salida = (char *)malloc(1000000); /*(*size)-(sizeof(char *)+sizeof(t_Item *)+sizeof(EMUFS_REG_ID)+sizeof(int)*3+sizeof(float)+sizeof(EMUFS_BLOCK_ID))*cant_header + 5*cant_header*10+1);*/
+       if (salida == NULL) {
+               PERR("Error de malloc en salida");
+               return NULL;
+       }
+       tmp = ptr;
+       pos_actualizada = 0;
+       while (i<cant_header) {
+               /* Verifico la pos_actual para el resaltado, asi queda coherente 
+                * en el cambio de formato
+                */
+               if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
+                       (*pos_actual) = tmp1-salida;
+                       pos_actualizada = 1;
+               }
+               /* Pongo el ID del registro */
+               sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
+               tmp1 += 10;
+               tmp += sizeof(EMUFS_REG_ID);
+               /* Pongo el campo numero */
+               sprintf(tmp1, "[%08d]", *((int *)tmp));
+               tmp1 += 10;
+               tmp += sizeof(int);
+               /* Pongo campo procdoi */
+               sprintf(flotante, "[%5.2f]", *((float *)tmp));
+               memcpy(tmp1, flotante, strlen(flotante));
+               tmp1 += strlen(flotante);
+               tmp += sizeof(float);
+               /* Pongo campo numero_remito */
+               sprintf(tmp1, "[%08d]", *((int *)tmp));
+               tmp1 += 10;
+               tmp += sizeof(int);
+               /* Pongo numero de items */
+               sprintf(tmp1, "[%08d]", *((int *)tmp));
+               cant_items = *((int *)tmp);
+               tmp1 += 10;
+               tmp += sizeof(int);
+               /* Pongo reg_nota */
+               sprintf(tmp1, "{%08lu}", *((EMUFS_BLOCK_ID*)tmp));
+               tmp1 += 10;
+               tmp += sizeof(EMUFS_BLOCK_ID);
+
+               j = 0;
+               /* TODO Mostrar en pantalla los items!! */
+               fprintf(stderr, "DATA = %d\n", tam_data-10*sizeof(t_Item));
+               while (j < (tam_data-10*sizeof(t_Item))) {
+                       if (*tmp == '\0') {
+                               if (ant == (*tmp)){
+                                       (*tmp1) = '.';
+                               } else {
+                                       (*tmp1) = '|';
+                               }
+                       } else {
+                               (*tmp1) = (*tmp);
+                       }
+                       ant = (*tmp);
+                       tmp++;
+                       tmp1++;
+                       j++;
+               }
+               /* Ahora proceso los items */
+               k = 0;
+               while (k < 10) {
+                       sprintf(tmp1, "[%08d]", *((int *)tmp));
+                       tmp1 += 10;
+                       tmp += sizeof(int);
+                       j = 0;
+                       while (j < (sizeof(t_Item)-sizeof(int))) {
+                               if (*tmp == '\0') {
+                                       if (ant == (*tmp)){
+                                               (*tmp1) = '.';
+                                       } else {
+                                               (*tmp1) = '|';
+                                       }
+                               } else {
+                                       (*tmp1) = (*tmp);
+                               }
+                               ant = (*tmp);
+                               tmp++;
+                               tmp1++;
+                               j++;
+                       }
+                       k++;
+               }
+               i++;
+       }
+       fprintf(stderr, "%lu =? %d\n", *size, tmp-ptr);
+       free(ptr);
+
+       PERR("Termine");
+       if (emu->tam_bloque > emu->tam_reg) {
+               (*size) = tmp1-salida;
+               (*ancho) = tam_data + 15*cant_header + cant_items*10 - cant_items*sizeof(int);
+       } else {
+               (*size) = (*size)-sizeof(EMUFS_REG_ID)-sizeof(unsigned int)+21;
+               (*ancho) = (*size);
+       }
+       memset(tmp1, '.', (*size)-(tmp1-salida)); 
+       salida[*size-1] = '\0';
+
+       return salida;
+}
index df31f8d360aa4e0d6b4034eca61d24066a8a675f..03ba038c13dafda8d03d82831fca660647925603 100644 (file)
@@ -7,7 +7,7 @@
 
 #include "emufs.h"
 
-void ver_registros(WINDOW *padre, int w, int h);
+void ver_registros(WINDOW *padre, int w, int h, int cual);
 
 #endif