}
-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;
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);
/* 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) {
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) {