]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs_gui/facturas.c
Lectura de opciones desde el XML
[z.facultad/75.06/emufs.git] / emufs_gui / facturas.c
index e06fbe3ac353da9f34e6c952ea2a1ba580dcf55f..f1ce517e9bf71181859da6bc2a098559c6e6079f 100644 (file)
@@ -180,7 +180,7 @@ char *leer_nota(xmlNode *node, int max)
 }
 
 
-t_LstFacturas *fact_cargar(const char *filename, int tipo, int tam_bloque, int tipo_nota, int bloque_nota)
+t_LstFacturas *fact_cargar(t_Parametros *param)
 {
        xmlDocPtr document;
        xmlNode *node, *inicio;
@@ -198,9 +198,10 @@ t_LstFacturas *fact_cargar(const char *filename, int tipo, int tam_bloque, int t
        lst_facturas = tmp;
        tmp->primero = NULL;
 
-       if (filename != NULL) {
+       if (param != NULL) {
                PERR("Voy a cargar de un XML");
-               document = xmlReadFile(filename, "ISO-8859-1",0);
+               PERR(param->xml_fact);
+               document = xmlReadFile(param->xml_fact, "ISO-8859-1",0);
                if (document == NULL) {
                        PERR("Error al leer documento!!");
                        free(tmp);
@@ -224,16 +225,16 @@ t_LstFacturas *fact_cargar(const char *filename, int tipo, int tam_bloque, int t
                /* En el registro no guardo los punteros de nota ni items. Si guardo la cantidad de items
                 * y los items al final del registro.
                 */
-               if ((tipo-1) == T3) {
+               if ((param->tipo_arch_fact) == T3) {
                        /* Limito a 10 items en el caso de registro constante! */
                        cant_items = 10;
                } else {
                        cant_items = 0;
                }
-               tmp->fp = emufs_crear("facturas", tipo-1, tam_bloque, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+cant_items*sizeof(t_Item));
+               tmp->fp = emufs_crear("facturas", param->tipo_arch_fact, param->tam_bloque_fact, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+cant_items*sizeof(t_Item));
                emufs_agregar_indice(tmp->fp, "emision", IND_EXAHUSTIVO, IND_B, IDX_STRING, STRUCT_OFFSET(factura, emision), 512);
                emufs_agregar_indice(tmp->fp, "numero", IND_PRIMARIO, IND_B, IDX_INT, 0, 512);
-               tmp->fp_texto = emufs_crear("notas", tipo_nota-1, bloque_nota, 100);
+               tmp->fp_texto = emufs_crear("notas", param->tipo_arch_nota, param->tam_bloque_nota, 100);
                for (node=inicio ; node ; node = node->next) {
                        if (node->type == XML_ELEMENT_NODE) {
                                if (strcmp(node->name, "FACTURA") == 0) {
@@ -260,11 +261,11 @@ t_LstFacturas *fact_cargar(const char *filename, int tipo, int tam_bloque, int t
                                        strncpy(fact.cheque, prop = xml_get_prop(node, "NroCheque"), 18); xmlFree(prop);
                                        fact.cheque[18] = '\0';
 
-                                       fact.nota = leer_nota(node, (((tipo-1)==T3)?100:-1));
-                                       fact.items = leer_items(node, &fact.cant_items, ((tipo-1)==T3)?10:-1);
+                                       fact.nota = leer_nota(node, ((param->tipo_arch_nota==T3)?100:-1));
+                                       fact.items = leer_items(node, &fact.cant_items, (param->tipo_arch_fact==T3)?10:-1);
 
                                        error = 0;
-                                       id = tmp->fp_texto->grabar_registro(tmp->fp_texto, fact.nota, ((tipo-1)==T3)?100:(strlen(fact.nota)+1), &error);
+                                       id = tmp->fp_texto->grabar_registro(tmp->fp_texto, fact.nota, (param->tipo_arch_nota==T3)?100:(strlen(fact.nota)+1), &error);
                                        fact.reg_nota = id;
                                        save = procesar_guardar_factura(&fact, lst_facturas, &size);
                                        if (save != NULL) {