4 t_LstArticulos *lst_articulos;
6 t_Articulo *art_form_buscar(WINDOW *win);
8 t_LstArticulos *art_cargar(const char *filename)
11 xmlNode *node, *inicio;
16 tmp = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
17 if (tmp == NULL) return NULL;
19 /* tmp->array = (t_Reg_Articulo *)malloc(sizeof(t_Reg_Articulo)*tmp->cant);*/
20 printf("%p\n", tmp->array);
22 if (tmp->array == NULL) {
23 printf("Fallo malloc\n");
28 if (filename != NULL) {
29 document = xmlReadFile(filename, "ISO-8859-1",0);
30 if (document == NULL) {
35 node = xmlDocGetRootElement(document);
36 /* Busco el TAG principal "ARTICULOS" */
38 if (node->type == XML_ELEMENT_NODE) {
39 if (strcmp(node->name, "ARTICULOS") == 0) {
40 inicio = node->children;
47 /* Cuento la cantidad de articulos en el archivo */
49 for ( ; node ; node = node->next) {
50 if (node->type == XML_ELEMENT_NODE) {
51 if (strcmp(node->name, "ARTICULO") == 0) {
57 /* leo los datos y los guardo en el archivo*/
59 /* FIXME : por ahora hago que entren 2 bloques y me sobre algo de espacio*/
60 tmp->fp = emufs_crear("articulos", T3, sizeof(t_Articulo)*2, sizeof(t_Articulo));
61 for (node=inicio ; node ; node = node->next) {
62 if (node->type == XML_ELEMENT_NODE) {
63 if (strcmp(node->name, "ARTICULO") == 0) {
65 art.numero = atoi(xmlGetProp(node, "NroArtículo"));
66 strncpy(art.desc, xmlGetProp(node, "Descripción"), 50);
67 strncpy(art.presentacion, xmlGetProp(node, "Presentación"), 30);
68 strncpy(art.existencia, xmlGetProp(node, "Existencia"), 8);
69 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
70 strncpy(art.pvu, xmlGetProp(node, "PVU"), 8);
71 strncpy(art.emin, xmlGetProp(node, "Emín"), 8);
72 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
73 tmp->array[cant].num_reg = tmp->fp->grabar_registro(tmp->fp, &art, sizeof(t_Articulo));
74 tmp->array[cant].numero = art.numero;
83 tmp->fp = emufs_abrir("articulos");
90 int art_liberar(t_LstArticulos *l)
92 if (l == NULL) l = lst_articulos;
93 if (l == NULL) return 1;
95 ver_archivo_FS(l->fp);
96 emufs_destruir(l->fp);
100 lst_articulos = NULL;
104 t_Articulo *art_obtener(t_LstArticulos *lst, const char *numero)
106 /* FIXME : NO ME GUSTA :-/ */
109 int n = atoi(numero);
111 if (lst == NULL) lst = lst_articulos;
113 for(i=0; i<lst->cant; i++) {
114 if (n == lst->array[i].numero) {
115 art = (t_Articulo *)malloc(sizeof(t_Articulo));
116 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
117 lst->fp->leer_registro(lst->fp, lst->array[i].num_reg, art);
125 t_Articulo *art_form_buscar(WINDOW *win)
128 t_Articulo *articulo;
130 form = form_crear(win);
131 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
132 form_ejecutar(form, 1,1);
133 articulo = art_obtener(NULL, form_obtener_valor_char(form, "Numero de Artículo"));
139 void art_modificar(char *s)
143 t_Articulo *articulo;
146 win = newwin(8, 68, 13, 1);
150 articulo = art_form_buscar(win);
152 if (articulo != NULL) {
153 form = form_crear(win);
154 sprintf(num, "%07d", articulo->numero);
155 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
156 form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
157 form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
158 form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
159 form_agregar_widget(form, INPUT, "PVU", 8, articulo->pvu);
160 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
161 form_ejecutar(form, 1,1);
163 /* TODO : Actualizar registro */
174 void art_eliminar(char *s)
177 t_Articulo *articulo;
179 win = newwin(8, 68, 13, 1);
183 articulo = art_form_buscar(win);
185 if (articulo == NULL) {
186 wattron(win, COLOR_PAIR(COLOR_YELLOW));
187 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
188 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
192 /* TODO : Eliminar un registro */
200 void art_agregar(char *s)
206 win = newwin(8, 68, 13, 1);
210 form = form_crear(win);
211 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
212 form_agregar_widget(form, INPUT, "Descripción", 50, "");
213 form_agregar_widget(form, INPUT, "Presentación", 30, "");
214 form_agregar_widget(form, INPUT, "Stock Actual", 8, "");
215 form_agregar_widget(form, INPUT, "PVU", 8, "");
216 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, "");
217 form_ejecutar(form, 1,1);
219 art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
220 strcpy(art.desc, form_obtener_valor_char(form, "Descripción"));
221 strcpy(art.presentacion, form_obtener_valor_char(form, "Presentación"));
222 strcpy(art.existencia, form_obtener_valor_char(form, "Stock Actual"));
223 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
224 strcpy(art.pvu, form_obtener_valor_char(form, "PVU"));
225 strcpy(art.emin, form_obtener_valor_char(form, "Stock Mínimo"));
227 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
228 lst_articulos->array[lst_articulos->cant].num_reg = lst_articulos->fp->grabar_registro(lst_articulos->fp, &art, sizeof(t_Articulo));
229 lst_articulos->array[lst_articulos->cant].numero = art.numero;
230 lst_articulos->cant++;