if (((n == 1) || (n == 3)) && ((i+1)>=argc))
return SHOW_HELP;
i++;
- parametros.tam_bloque_nota = atoi(argv[i]);
- if (parametros.tam_bloque_nota <= 0) return SHOW_HELP;
+ if (n != 2) {
+ parametros.tam_bloque_nota = atoi(argv[i]);
+ if (parametros.tam_bloque_nota <= 0) return SHOW_HELP;
+ }
}
+ PERR("ACA");
parametros.xml_fact = file;
} else {
/* Ops, no hay mas parametros */
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_texto = emufs_crear("notas", tipo_nota, bloque_nota, 100);
+#ifdef DEBUG
+ fprintf(stderr, "Notas : Tipo=%d Tam Bloque = %d\n", tipo_nota, bloque_nota);
+#endif
+ tmp->fp_texto = emufs_crear("notas", tipo_nota-1, bloque_nota, 100);
for (node=inicio ; node ; node = node->next) {
if (node->type == XML_ELEMENT_NODE) {
if (strcmp(node->name, "FACTURA") == 0) {