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 document = xmlReadFile(filename, "ISO-8859-1",0);
17 if (document == NULL) {
22 node = xmlDocGetRootElement(document);
23 /* Busco el TAG principal "ARTICULOS" */
25 if (node->type == XML_ELEMENT_NODE) {
26 if (strcmp(node->name, "ARTICULOS") == 0) {
27 inicio = node->children;
34 /* Cuento la cantidad de articulos en el archivo */
36 for ( ; node ; node = node->next) {
37 if (node->type == XML_ELEMENT_NODE) {
38 if (strcmp(node->name, "ARTICULO") == 0) {
43 t_LstArticulos *tmp = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
45 if (tmp == NULL) return NULL;
47 /* tmp->array = (t_Reg_Articulo *)malloc(sizeof(t_Reg_Articulo)*tmp->cant);*/
48 printf("%p\n", tmp->array);
50 if (tmp->array == NULL) {
51 printf("Fallo malloc\n");
58 /* leo los datos y los guardo en el archivo*/
60 /* FIXME : por ahora hago que entren 2 bloques y me sobre algo de espacio*/
61 tmp->fp = emufs_crear("articulos", T3, sizeof(t_Articulo)*2, sizeof(t_Articulo));
62 for (node=inicio ; node ; node = node->next) {
63 if (node->type == XML_ELEMENT_NODE) {
64 if (strcmp(node->name, "ARTICULO") == 0) {
66 art.numero = atoi(xmlGetProp(node, "NroArtículo"));
67 strncpy(art.desc, xmlGetProp(node, "Descripción"), 50);
68 strncpy(art.presentacion, xmlGetProp(node, "Presentación"), 30);
69 strncpy(art.existencia, xmlGetProp(node, "Existencia"), 8);
70 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
71 strncpy(art.pvu, xmlGetProp(node, "PVU"), 8);
72 strncpy(art.emin, xmlGetProp(node, "Emín"), 8);
74 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
75 tmp->array[cant].num_reg = tmp->fp->grabar_registro(tmp->fp, &art, sizeof(t_Articulo));
76 tmp->array[cant].numero = art.numero;
77 printf("ID(%d) -> (%d,%d)\n", cant, art.numero, tmp->array[cant].num_reg);
91 int art_liberar(t_LstArticulos *l)
93 if (l == NULL) l = lst_articulos;
94 if (l == NULL) return 1;
96 ver_archivo_FS(l->fp);
97 emufs_destruir(l->fp);
101 lst_articulos = NULL;
105 t_Articulo *art_obtener(t_LstArticulos *lst, const char *numero)
107 /* FIXME : NO ME GUSTA :-/ */
110 int n = atoi(numero);
112 if (lst == NULL) lst = lst_articulos;
114 for(i=0; i<lst->cant; i++) {
115 if (n == lst->array[i].numero) {
116 art = (t_Articulo *)malloc(sizeof(t_Articulo));
117 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
118 lst->fp->leer_registro(lst->fp, lst->array[i].num_reg, art, sizeof(t_Articulo));
126 t_Articulo *art_form_buscar(WINDOW *win)
129 t_Articulo *articulo;
131 form = form_crear(win);
132 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
133 form_ejecutar(form, 1,1);
134 articulo = art_obtener(NULL, form_obtener_valor_char(form, "Numero de Artículo"));
140 void art_modificar(char *s)
144 t_Articulo *articulo;
147 win = newwin(8, 68, 13, 1);
151 articulo = art_form_buscar(win);
153 if (articulo != NULL) {
154 form = form_crear(win);
155 sprintf(num, "%07d", articulo->numero);
156 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
157 form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
158 form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
159 form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
160 form_agregar_widget(form, INPUT, "PVU", 8, articulo->pvu);
161 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
162 form_ejecutar(form, 1,1);
164 /* TODO : Actualizar registro */
175 void art_eliminar(char *s)
178 t_Articulo *articulo;
180 win = newwin(8, 68, 13, 1);
184 articulo = art_form_buscar(win);
186 if (articulo == NULL) {
187 wattron(win, COLOR_PAIR(COLOR_YELLOW));
188 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
189 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
193 /* TODO : Eliminar un registro */
201 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 /* TODO : Agregar el nuevo elemento */