4 static t_LstFacturas *lst_facturas;
6 /* Procesa una factura antes de enviarla al archivo para guardarla */
7 static void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, EMUFS_REG_SIZE *size);
8 static t_Reg_Factura *crear_nodo_factura(EMUFS_REG_ID reg, EMUFS_REG_ID texto, unsigned int num);
9 static int agregar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo);
10 int eliminar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo);
11 static t_Item *leer_items(xmlNode *, int *cant, int size);
12 static char *leer_nota(xmlNode *);
14 /* Hack! ... Si no existe propiedad retorna "" */
15 char *xml_get_prop(xmlNode *node, char *nombre)
17 if (xmlGetProp(node, nombre) == NULL) return "";
18 return xmlGetProp(node, nombre);
21 int eliminar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo)
23 if (nodo == NULL) return 0;
24 if (nodo->ant == NULL) {
25 /* Me piden borrar el primer nodo */
27 nodo->sig->ant = NULL;
29 lst->primero = nodo->sig;
32 nodo->sig->ant = nodo->ant;
34 nodo->ant->sig = nodo->sig;
40 t_Reg_Factura *crear_nodo_factura(EMUFS_REG_ID reg, EMUFS_REG_ID texto, unsigned int num)
43 if (reg == EMUFS_NOT_FOUND) return NULL;
44 tmp = malloc(sizeof(t_Reg_Factura));
45 if (tmp == NULL) return NULL;
46 tmp->sig = tmp->ant = NULL;
48 tmp->texto_reg = texto;
54 int agregar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo)
56 if (nodo == NULL) return 0;
59 lst->primero->ant = nodo;
60 nodo->sig = lst->primero;
68 t_Item *leer_items(xmlNode *node, int *cant, int size)
77 tmp = (t_Item *)malloc(sizeof(t_Item)*size);
78 memset(tmp, '$', sizeof(t_Item)*size);
81 node = node->children;
83 if (node->type == XML_ELEMENT_NODE) {
84 if (strcmp(node->name, "ITEMVENTA") == 0) {
85 tmp[count].numero = atoi(xml_get_prop(node, "NroArtículo"));
86 strcpy(tmp[count].cv, xml_get_prop(node, "CV"));
87 strcpy(tmp[count].pvu, xml_get_prop(node, "PVU"));
97 char *leer_nota(xmlNode *node)
101 tmp = node->children;
103 if (tmp->type == XML_ELEMENT_NODE) {
104 if (strcmp(tmp->name, "NOTA") == 0) {
112 salida = (char *)malloc(sizeof(char)*400); /*(strlen(XML_GET_CONTENT(tmp->children))+1));*/
113 strcpy(salida, XML_GET_CONTENT(tmp->children));
115 salida = (char *)malloc(sizeof(char)*400);
122 t_LstFacturas *fact_cargar(const char *filename, int tipo, int tam_bloque)
125 xmlNode *node, *inicio;
126 int error = 0, cant_items;
129 EMUFS_REG_ID id, id_texto; /*, *indices, indices_cant;*/
133 tmp = (t_LstFacturas *)malloc(sizeof(t_LstFacturas));
134 if (tmp == NULL) return NULL;
138 if (filename != NULL) {
139 document = xmlReadFile(filename, "ISO-8859-1",0);
140 if (document == NULL) {
141 fprintf(stderr, "ERROR ABRIENDO %s\n", filename);
146 node = xmlDocGetRootElement(document);
147 /* Busco el TAG principal "ARTICULOS" */
149 if (node->type == XML_ELEMENT_NODE) {
150 if (strcmp(node->name, "FACTURAS") == 0) {
151 inicio = node->children;
158 /* En el registro no guardo los punteros de nota ni items. Si guardo la cantidad de items
159 * y los items al final del registro.
162 /* Limito a 10 items en el caso de registro constante! */
167 tmp->fp = emufs_crear("facturas", tipo-1, tam_bloque, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+cant_items*sizeof(t_Item));
168 tmp->fp_texto = emufs_crear("notas", 1, 420, 400);
169 for (node=inicio ; node ; node = node->next) {
170 if (node->type == XML_ELEMENT_NODE) {
171 if (strcmp(node->name, "FACTURA") == 0) {
174 memset(&fact, '*', sizeof(t_Factura));
175 fact.numero = atoi(xml_get_prop(node, "NroFac"));
176 fact.procdoi = atoi(xml_get_prop(node, "porcDoI"));
177 fact.numero_remito = atoi(xml_get_prop(node, "NroRemito"));
178 strcpy(fact.emision, xml_get_prop(node, "FechaEmisión"));
179 strcpy(fact.vencimiento, xml_get_prop(node, "FechaVto"));
180 strcpy(fact.estado, xml_get_prop(node, "Estado"));
181 strcpy(fact.fp, xml_get_prop(node, "FP"));
182 strcpy(fact.ctacte, xml_get_prop(node, "NroCtaCte"));
183 strcpy(fact.cheque, xml_get_prop(node, "NroCheque"));
185 fact.nota = leer_nota(node);
186 fact.items = leer_items(node, &fact.cant_items, (tipo==3)?10:-1);
188 save = procesar_guardar_factura(&fact, lst_facturas, &size);
190 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
191 fprintf(stderr, "Voy a grabar el texto [%d]\n", strlen(fact.nota));
192 id_texto = tmp->fp_texto->grabar_registro(tmp->fp_texto, fact.nota, 400, &error);
193 fprintf(stderr, "Todo ok : ID=%lu , txtID=%lu\n", id, id_texto);
194 agregar_nodo_factura(tmp, crear_nodo_factura(id, id_texto, fact.numero));
200 xmlFreeDoc(document);
203 /* tmp->fp = emufs_abrir("articulos");*/
204 /* Ahora trato de recuperar la info */
205 /* indices = emufs_idx_get(tmp->fp, &indices_cant);
206 for(i=0; i<indices_cant; i++) {
209 /* Leo el registro */
210 /* save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
211 if (procesar_leer_articulo(&art, save, size, tmp) == 1) {
212 agregar_nodo_articulo(tmp, crear_nodo_articulo(indices[i], art.numero));
221 int fact_liberar(t_LstFacturas *l)
223 if (l == NULL) l = lst_facturas;
224 if (l == NULL) return 1;
226 emufs_destruir(l->fp);
234 void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, EMUFS_REG_SIZE *size)
239 switch (lst->fp->tipo) {
242 /* Calculo el tamaño que voy a necesitar */
244 i[1] = sizeof(char)*(strlen(f->emision)+1); /* +1 por el \0 para separar */
245 i[2] = sizeof(char)*(strlen(f->vencimiento)+1); /* +1 por el \0 para separar */
247 i[4] = sizeof(char)*(strlen(f->estado)+1); /* +1 por el \0 para separar */
248 i[5] = sizeof(char)*(strlen(f->fp)+1); /* +1 por el \0 para separar */
249 i[6] = sizeof(float);
250 i[7] = sizeof(char)*(strlen(f->ctacte)+1); /* +1 por el \0 para separar */
251 i[8] = sizeof(char)*(strlen(f->cheque)+1); /* +1 por el \0 para separar */
252 (*size) = i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7]+i[8];
253 tmp = (char *)malloc(*size);
254 if (tmp == NULL) return NULL;
255 /* Ahora copio la info */
256 memcpy(tmp, &f->numero, i[0]);
257 memcpy(tmp+i[0], f->emision, i[1]);
258 memcpy(tmp+i[0]+i[1], f->vencimiento, i[2]);
259 memcpy(tmp+i[0]+i[1]+i[2], &f->numero_remito, i[3]);
260 memcpy(tmp+i[0]+i[1]+i[2]+i[3], f->estado, i[4]);
261 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], f->fp, i[5]);
262 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5], &f->procdoi, i[6]);
263 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6], f->ctacte, i[7]);
264 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7], f->cheque, i[8]);
267 (*size) = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *) + f->cant_items*sizeof(t_Item);
268 tmp = (char *)malloc(*size);
269 if (tmp == NULL) return NULL;
270 memcpy(tmp, f, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *));
271 memcpy(tmp+sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *), f->items, f->cant_items*sizeof(t_Item));