]> git.llucax.com Git - z.facultad/75.06/emufs.git/commitdiff
* reordeno las estadisticas
authorRicardo Markiewicz <gazer.arg@gmail.com>
Mon, 19 Apr 2004 07:28:42 +0000 (07:28 +0000)
committerRicardo Markiewicz <gazer.arg@gmail.com>
Mon, 19 Apr 2004 07:28:42 +0000 (07:28 +0000)
emufs_gui/emufs_view.c
emufs_gui/facturas.c

index 06826da3a23eb6d18365de9cb169c24ed6c3ebd1..e8af9fcfb95faae3513e389c10fa39e5ff5c98e3 100644 (file)
@@ -680,32 +680,7 @@ void ver_estadisticas(EMUFS *fp)
                        waddstr(win, s);
        }
 
                        waddstr(win, s);
        }
 
-       if ((fp->tipo == T1) || (fp->tipo == T3)) {
-               wattron(win, A_BOLD);
-               mvwaddstr(win, i++, 1, "Cantidad de bloques : ");
-               wattroff(win, A_BOLD);
-               sprintf(s, "%lu", stats.cant_bloques);
-               waddstr(win, s);
-       }
-       
-       wattron(win, A_BOLD);
-       mvwaddstr(win, i++, 1, "Cant. Registros : ");
-       wattroff(win, A_BOLD);
-       sprintf(s, "%lu", stats.cant_registros);
-       waddstr(win, s);
 
 
-       wattron(win, A_BOLD);
-       mvwaddstr(win, i++, 1, "Tamaño de Archivo de datos : ");
-       wattroff(win, A_BOLD);
-       sprintf(s, "%lu bytes", stats.tam_archivo);
-       waddstr(win, s);
-
-       wattron(win, A_BOLD);
-       mvwaddstr(win, i++, 1, "Tamaño de Archivos auxiliares : ");
-       wattroff(win, A_BOLD);
-       sprintf(s, "%lu bytes", stats.tam_archivos_aux);
-       waddstr(win, s);
-       
        wattron(win, A_BOLD);
        mvwaddstr(win, i++, 1, "Tamaño ocupado por datos : ");
        wattroff(win, A_BOLD);
        wattron(win, A_BOLD);
        mvwaddstr(win, i++, 1, "Tamaño ocupado por datos : ");
        wattroff(win, A_BOLD);
@@ -744,6 +719,31 @@ void ver_estadisticas(EMUFS *fp)
        sprintf(s, "%lu bytes", stats.min_fs);
        waddstr(win, s);
 
        sprintf(s, "%lu bytes", stats.min_fs);
        waddstr(win, s);
 
+       wattron(win, A_BOLD);
+       mvwaddstr(win, i++, 1, "Tamaño de Archivo de datos : ");
+       wattroff(win, A_BOLD);
+       sprintf(s, "%lu bytes", stats.tam_archivo);
+       waddstr(win, s);
+       
+       wattron(win, A_BOLD);
+       mvwaddstr(win, i++, 1, "Tamaño de Archivos auxiliares : ");
+       wattroff(win, A_BOLD);
+       sprintf(s, "%lu bytes", stats.tam_archivos_aux);
+       waddstr(win, s);
+       
+       if ((fp->tipo == T1) || (fp->tipo == T3)) {
+               wattron(win, A_BOLD);
+               mvwaddstr(win, i++, 1, "Cantidad de bloques : ");
+               wattroff(win, A_BOLD);
+               sprintf(s, "%lu", stats.cant_bloques);
+               waddstr(win, s);
+       }
+       
+       wattron(win, A_BOLD);
+       mvwaddstr(win, i++, 1, "Cant. Registros : ");
+       wattroff(win, A_BOLD);
+       sprintf(s, "%lu", stats.cant_registros);
+       waddstr(win, s);
        
        wattron(win, A_BLINK);
        mvwaddstr(win, i+2, 1, "Presione una tecla para continuar.");
        
        wattron(win, A_BLINK);
        mvwaddstr(win, i+2, 1, "Presione una tecla para continuar.");
index e728bec135512bf7afa7a415237c31c4da7bd301..254e35eadba38d0ab2d8e785d8bf0df613d98779 100644 (file)
@@ -97,8 +97,10 @@ t_Item *leer_items(xmlNode *node, int *cant, int size)
                                        prop = xml_get_prop(node, "NroArtículo");
                                        tmp[count-1].numero = atoi(prop);
                                        xmlFree(prop);
                                        prop = xml_get_prop(node, "NroArtículo");
                                        tmp[count-1].numero = atoi(prop);
                                        xmlFree(prop);
-                                       strcpy(tmp[count-1].cv, prop = xml_get_prop(node, "CV")); xmlFree(prop);
-                                       strcpy(tmp[count-1].pvu, prop = xml_get_prop(node, "PVU")); xmlFree(prop);
+                                       strncpy(tmp[count-1].cv, prop = xml_get_prop(node, "CV"), 8); xmlFree(prop);
+                                       tmp[count-1].cv[8] = '\0';
+                                       strncpy(tmp[count-1].pvu, prop = xml_get_prop(node, "PVU"), 8); xmlFree(prop);
+                                       tmp[count-1].pvu[8] = '\0';
                                }
                        }
                        node = node->next;
                                }
                        }
                        node = node->next;
@@ -118,8 +120,10 @@ t_Item *leer_items(xmlNode *node, int *cant, int size)
                                        prop = xml_get_prop(node, "NroArtículo");
                                        tmp[count].numero = atoi(prop);
                                        xmlFree(prop);
                                        prop = xml_get_prop(node, "NroArtículo");
                                        tmp[count].numero = atoi(prop);
                                        xmlFree(prop);
-                                       strcpy(tmp[count].cv, prop = xml_get_prop(node, "CV")); xmlFree(prop);
-                                       strcpy(tmp[count].pvu, prop = xml_get_prop(node, "PVU")); xmlFree(prop);
+                                       strncpy(tmp[count].cv, prop = xml_get_prop(node, "CV"), 8); xmlFree(prop);
+                                       tmp[count-1].cv[8] = '\0';
+                                       strncpy(tmp[count].pvu, prop = xml_get_prop(node, "PVU"), 8); xmlFree(prop);
+                                       tmp[count-1].pvu[8] = '\0';
                                        count++;
                                }
                        }
                                        count++;
                                }
                        }