]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/facturas.c
1e77446af7201b83af02bd00594a5e9982d4d80e
[z.facultad/75.06/emufs.git] / emufs_gui / facturas.c
1
2 #include "facturas.h"
3
4 static t_LstFacturas *lst_facturas;
5
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 *);
13
14 /* Hack! ... Si no existe propiedad retorna "" */
15 char *xml_get_prop(xmlNode *node, char *nombre)
16 {
17         if (xmlGetProp(node, nombre) == NULL) return "";
18         return xmlGetProp(node, nombre);
19 }
20
21 int eliminar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo)
22 {
23         if (nodo == NULL) return 0;
24         if (nodo->ant == NULL) {
25                 /* Me piden borrar el primer nodo */
26                 if (nodo->sig) {
27                         nodo->sig->ant = NULL;
28                 }
29                 lst->primero = nodo->sig;
30         } else {
31                 if (nodo->sig) {
32                         nodo->sig->ant = nodo->ant;
33                 }
34                 nodo->ant->sig = nodo->sig;
35         }
36         free(nodo);
37         return 1;
38 }
39
40 t_Reg_Factura *crear_nodo_factura(EMUFS_REG_ID reg, EMUFS_REG_ID texto, unsigned int num)
41 {
42         t_Reg_Factura *tmp;
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;
47         tmp->num_reg = reg;
48         tmp->texto_reg = texto;
49         tmp->numero = num;
50
51         return tmp;
52 }
53
54 int agregar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo)
55 {
56         if (nodo == NULL) return 0;
57
58         if (lst->primero) {
59                 lst->primero->ant = nodo;
60                 nodo->sig = lst->primero;
61                 lst->primero = nodo;
62         } else {
63                 lst->primero = nodo;
64         }
65         return 1;
66 }
67
68 t_Item *leer_items(xmlNode *node, int *cant, int size)
69 {
70         t_Item *tmp;
71         int count;
72         if (size == -1) {
73                 *cant = 0;
74                 return NULL;
75         } else {
76                 (*cant) = size;
77                 tmp = (t_Item *)malloc(sizeof(t_Item)*size);
78                 memset(tmp, '$', sizeof(t_Item)*size);
79
80                 count = 0;
81                 node = node->children;
82                 while (node) {
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"));
88                                         count++;
89                                 }
90                         }
91                         node = node->next;
92                 }
93         }
94         return tmp;
95 }
96
97 char *leer_nota(xmlNode *node)
98 {
99         xmlNode *tmp;
100         char *salida;
101         tmp = node->children;
102         while (tmp) {
103                 if (tmp->type == XML_ELEMENT_NODE) {
104                         if (strcmp(tmp->name, "NOTA") == 0) {
105                                 break;
106                         }
107                 }
108                 tmp = tmp->next;
109         }
110
111         if (tmp) {
112                 salida = (char *)malloc(sizeof(char)*400); /*(strlen(XML_GET_CONTENT(tmp->children))+1));*/
113                 strcpy(salida, XML_GET_CONTENT(tmp->children));
114         } else {
115                 salida = (char *)malloc(sizeof(char)*400);
116                 salida[0] = '\0';
117         }
118         return salida;
119 }
120
121
122 t_LstFacturas *fact_cargar(const char *filename, int tipo, int tam_bloque)
123 {
124         xmlDocPtr document;
125         xmlNode *node, *inicio;
126         int error = 0, cant_items;
127         EMUFS_REG_SIZE size;
128         t_LstFacturas *tmp;
129         EMUFS_REG_ID id, id_texto; /*, *indices, indices_cant;*/
130         
131         lst_facturas = NULL;
132
133         tmp = (t_LstFacturas *)malloc(sizeof(t_LstFacturas));
134         if (tmp == NULL) return NULL;
135         lst_facturas = tmp;
136         tmp->primero = NULL;
137
138         if (filename != NULL) {
139                 document = xmlReadFile(filename, "ISO-8859-1",0);
140                 if (document == NULL) {
141                         fprintf(stderr, "ERROR ABRIENDO %s\n", filename);
142                         return NULL;
143                 }
144
145                 inicio = NULL;
146                 node = xmlDocGetRootElement(document);
147                 /* Busco el TAG principal "ARTICULOS" */
148                 while (node) {
149                         if (node->type == XML_ELEMENT_NODE) {
150                                 if (strcmp(node->name, "FACTURAS") == 0) {
151                                         inicio = node->children;
152                                         break;
153                                 }
154                         }
155                         node = node->next;
156                 }
157
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.
160                  */
161                 if (tipo == 3) {
162                         /* Limito a 10 items en el caso de registro constante! */
163                         cant_items = 10;
164                 } else {
165                         cant_items = 0;
166                 }
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) {
172                                         t_Factura fact;
173                                         void *save;
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"));
184
185                                         fact.nota = leer_nota(node);
186                                         fact.items = leer_items(node, &fact.cant_items, (tipo==3)?10:-1);
187
188                                         save = procesar_guardar_factura(&fact, lst_facturas, &size);
189                                         if (save != NULL) {
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));
195                                                 free(save);
196                                         }
197                                 }
198                         }
199                 }
200                 xmlFreeDoc(document);
201                 xmlCleanupParser();
202         } else {
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++) {
207                         t_Articulo art;
208                         void *save;*/
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));
213                                 free(save);
214                         }
215                 }
216                 free(indices);*/
217         }
218         return lst_facturas;
219 }
220
221 int fact_liberar(t_LstFacturas *l)
222 {
223         if (l == NULL) l = lst_facturas;
224         if (l == NULL) return 1;
225
226         emufs_destruir(l->fp);
227         free(l);
228
229         lst_facturas = NULL;
230         return 0;
231 }
232
233
234 void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, EMUFS_REG_SIZE *size)
235 {
236         char *tmp=NULL;
237         int i[9];
238
239         switch (lst->fp->tipo) {
240                 case T1:
241                 case T2:
242                         /* Calculo el tamaño que voy a necesitar */
243                         i[0] = sizeof(int);
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 */
246                         i[3] = sizeof(int);
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]);
265                 break;
266                 case T3:
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));
272         }
273         return tmp;
274 }
275