4 static t_LstArticulos *lst_articulos;
6 static t_Articulo *art_form_buscar(WINDOW *win);
8 static int procesar_articulo(t_Articulo *dst, void *src, int size, t_LstArticulos *lst);
10 t_LstArticulos *art_cargar(const char *filename)
13 xmlNode *node, *inicio;
18 tmp = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
19 if (tmp == NULL) return NULL;
21 /* tmp->array = (t_Reg_Articulo *)malloc(sizeof(t_Reg_Articulo)*tmp->cant);*/
23 if (tmp->array == NULL) {
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");
84 /* TODO Cargar registros desde el archivo */
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 :-/ */
111 int n = atoi(numero);
113 if (lst == NULL) lst = lst_articulos;
114 if (lst == NULL) return NULL;
116 for(i=0; i<lst->cant; i++) {
117 if (n == lst->array[i].numero) {
118 art = (t_Articulo *)malloc(sizeof(t_Articulo));
119 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
120 tmp = lst->fp->leer_registro(lst->fp, lst->array[i].num_reg, &size);
122 if (procesar_articulo(art, tmp, size, lst_articulos) != 1) {
135 t_Articulo *art_form_buscar(WINDOW *win)
138 t_Articulo *articulo;
140 form = form_crear(win);
141 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
142 form_ejecutar(form, 1,1);
143 articulo = art_obtener(NULL, form_obtener_valor_char(form, "Numero de Artículo"));
149 void art_modificar(char *s)
153 t_Articulo *articulo;
156 win = newwin(8, COLS-2, 13, 1);
160 articulo = art_form_buscar(win);
162 if (articulo != NULL) {
163 form = form_crear(win);
164 sprintf(num, "%07d", articulo->numero);
165 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
166 form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
167 form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
168 form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
169 form_agregar_widget(form, INPUT, "PVU", 8, articulo->pvu);
170 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
171 form_ejecutar(form, 1,1);
173 /* TODO : Actualizar registro */
178 wattron(win, COLOR_PAIR(COLOR_YELLOW));
179 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
180 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
189 void art_eliminar(char *s)
192 t_Articulo *articulo;
194 win = newwin(8, COLS-2, 13, 1);
198 articulo = art_form_buscar(win);
200 if (articulo == NULL) {
201 wattron(win, COLOR_PAIR(COLOR_YELLOW));
202 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
203 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
207 /* TODO : Eliminar un registro */
215 void art_agregar(char *s)
221 win = newwin(8, COLS-2, 13, 1);
225 form = form_crear(win);
226 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
227 form_agregar_widget(form, INPUT, "Descripción", 50, "");
228 form_agregar_widget(form, INPUT, "Presentación", 30, "");
229 form_agregar_widget(form, INPUT, "Stock Actual", 8, "");
230 form_agregar_widget(form, INPUT, "PVU", 8, "");
231 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, "");
232 form_ejecutar(form, 1,1);
234 art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
235 strcpy(art.desc, form_obtener_valor_char(form, "Descripción"));
236 strcpy(art.presentacion, form_obtener_valor_char(form, "Presentación"));
237 strcpy(art.existencia, form_obtener_valor_char(form, "Stock Actual"));
238 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
239 strcpy(art.pvu, form_obtener_valor_char(form, "PVU"));
240 strcpy(art.emin, form_obtener_valor_char(form, "Stock Mínimo"));
242 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
243 lst_articulos->array[lst_articulos->cant].num_reg = lst_articulos->fp->grabar_registro(lst_articulos->fp, &art, sizeof(t_Articulo));
244 lst_articulos->array[lst_articulos->cant].numero = art.numero;
245 lst_articulos->cant++;
254 int procesar_articulo(t_Articulo *dst, void *src, int size, t_LstArticulos *lst)
256 switch (lst->fp->tipo) {
259 /* TODO : Leer campos variales */
262 if (size != sizeof(t_Articulo)) {
263 return 0; /* El tamaño no encaja!! */
265 memcpy(dst, src, size);
268 return 1; /* Todo ok */