static t_Item *leer_items(xmlNode *, int *cant, int size);
static char *leer_nota(xmlNode *);
+t_LstFacturas *fact_get_lst()
+{
+ return lst_facturas;
+}
+
/* Hack! ... Si no existe propiedad retorna "" */
char *xml_get_prop(xmlNode *node, char *nombre)
{
}
if (tmp) {
- salida = (char *)malloc(sizeof(char)*400); /*(strlen(XML_GET_CONTENT(tmp->children))+1));*/
+ salida = (char *)malloc(sizeof(char)*(strlen(XML_GET_CONTENT(tmp->children))+1));
strcpy(salida, XML_GET_CONTENT(tmp->children));
} else {
- salida = (char *)malloc(sizeof(char)*400);
+ salida = (char *)malloc(sizeof(char));
salida[0] = '\0';
}
return salida;
cant_items = 0;
}
tmp->fp = emufs_crear("facturas", tipo-1, tam_bloque, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+cant_items*sizeof(t_Item));
- tmp->fp_texto = emufs_crear("notas", 1, 420, 400);
+ tmp->fp_texto = emufs_crear("notas", 1, 100, 0);
for (node=inicio ; node ; node = node->next) {
if (node->type == XML_ELEMENT_NODE) {
if (strcmp(node->name, "FACTURA") == 0) {
save = procesar_guardar_factura(&fact, lst_facturas, &size);
if (save != NULL) {
+ error = 0;
id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
- id_texto = tmp->fp_texto->grabar_registro(tmp->fp_texto, fact.nota, 400, &error);
+ error = 0;
+ id_texto = tmp->fp_texto->grabar_registro(tmp->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
agregar_nodo_factura(tmp, crear_nodo_factura(id, id_texto, fact.numero));
+ if (fact.items) free(fact.items);
+ if (fact.nota) free(fact.nota);
free(save);
}
}
return 0;
}
-t_Factura *fact_buscar(t_LstFacturas *lst, int numero)
+t_Factura *fact_buscar(t_LstFacturas *lst, int numero, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
{
t_Factura *fact;
t_Reg_Factura *reg;
reg = lst->primero;
while (reg) {
if (reg->numero == numero) {
+ size = 0;
+ fprintf(stderr, "Leer me dice que %lu\n", size);
+ error = 0;
leo = lst->fp->leer_registro(lst->fp, reg->num_reg, &size, &error);
+ fprintf(stderr, "Leer me dice que %lu\n", size);
if (leo != NULL) {
fact = (t_Factura *)malloc(sizeof(t_Factura));
procesar_leer_factura(fact, leo, size, lst);
+ (*id) = reg->num_reg;
+ (*id_texto) = reg->texto_reg;
+ free(leo);
}
break;
}
return fact;
}
-t_Factura *fact_form_buscar(WINDOW *win, EMUFS_REG_ID *id)
+t_Factura *fact_form_buscar(WINDOW *win, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
{
t_Form *form;
t_Factura *fact;
form = form_crear(win);
form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
form_ejecutar(form, 1,1);
- fact = fact_buscar(lst_facturas, form_obtener_valor_int(form, "Numero de Factura"));
+ fact = fact_buscar(lst_facturas, form_obtener_valor_int(form, "Numero de Factura"), id, id_texto);
form_destruir(form);
return fact;
}
+void fact_eliminar(char *s)
+{
+ WINDOW *win;
+ t_Factura *fact;
+ t_Reg_Factura *nodo;
+ EMUFS_REG_ID id;
+
+ win = newwin(LINES-4, COLS-2, 2, 1);
+ box(win, 0, 0);
+
+ fact = fact_form_buscar(win, &id, &id);
+
+ if (fact == NULL) {
+ wattron(win, COLOR_PAIR(COLOR_YELLOW));
+ mvwaddstr(win, 2, 1, "No existe artículo con ese código. Abortando!");
+ wattroff(win, COLOR_PAIR(COLOR_YELLOW));
+ wrefresh(win);
+ getch();
+ werase(win);
+ wrefresh(win);
+ delwin(win);
+ return;
+ }
+
+ nodo = lst_facturas->primero;
+ while (nodo) {
+ if (nodo->numero == fact->numero) {
+ lst_facturas->fp->borrar_registro(lst_facturas->fp, nodo->num_reg);
+ lst_facturas->fp_texto->borrar_registro(lst_facturas->fp_texto, nodo->texto_reg);
+ eliminar_nodo_factura(lst_facturas, nodo);
+ break;
+ }
+ nodo = nodo->sig;
+ }
+
+ free(fact->items);
+ free(fact);
+}
+
void fact_modificar(char *s)
{
WINDOW *win, *items;
t_Form *form;
t_Factura *fact;
/*EMUFS_REG_SIZE size;*/
- EMUFS_REG_ID id; /*, id_texto;*/
+ EMUFS_REG_ID id, id_texto;
/* int y_actual, cant, error;*/
char tmp_str[10];
win = newwin(LINES-4, COLS-2, 2, 1);
box(win, 0, 0);
- fact = fact_form_buscar(win, &id);
+ fact = fact_form_buscar(win, &id, &id_texto);
if (fact == NULL) {
+ wattron(win, COLOR_PAIR(COLOR_YELLOW));
+ mvwaddstr(win, 2, 1, "No existe artículo con ese código. Abortando!");
+ wattroff(win, COLOR_PAIR(COLOR_YELLOW));
+ wrefresh(win);
+ getch();
werase(win);
wrefresh(win);
delwin(win);
entrada = procesar_guardar_factura(&fact,lst_facturas, &size);
if (entrada) {
+ error = 0;
id = lst_facturas->fp->grabar_registro(lst_facturas->fp, entrada, size, &error);
/*id_texto = tmp->fp_texto->grabar_registro(tmp->fp_texto, fact.nota, 400, &error);*/
/* TODO : -1 == id_texto !!!!!!!! XXX XXX XXX XXX XXX XXX XXX */
(*size) = i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7]+i[8]+i[9]+i[10];
tmp = (char *)malloc(*size);
if (tmp == NULL) return NULL;
+ memset(tmp, 0, *size);
/* Ahora copio la info */
memcpy(tmp, &f->numero, i[0]);
memcpy(tmp, &f->procdoi, i[1]);
static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, t_LstFacturas *lst)
{
+ char *ini, *fin;
+
switch (lst->fp->tipo) {
case T1:
case T2:
+ ini = (char *)src;
+ /* Copio los campos numericos, muy facil:-) */
+ memcpy(&dst->numero, ini, sizeof(int));
+ ini+=sizeof(int);
+
+ memcpy(&dst->procdoi, ini, sizeof(float));
+ ini+=sizeof(float);
+
+ memcpy(&dst->numero_remito, ini, sizeof(int));
+ ini+=sizeof(int);
+
+ memcpy(&dst->cant_items, ini, sizeof(int));
+ ini+=sizeof(int);
+
+ /* Ahora empieza el juego */
+ /* Los \0 son los delimitadores de campo! */
+ fin = ini;
+ while (*fin!='\0') fin++;
+ memcpy(dst->emision, ini, fin-ini+1);
+
+ ini = fin+1;
+ fin = ini;
+ while (*fin!='\0') fin++;
+ memcpy(dst->vencimiento, ini, fin-ini+1);
+
+ ini = fin+1;
+ fin = ini;
+ while (*fin!='\0') fin++;
+ memcpy(dst->estado, ini, fin-ini+1);
+
+ ini = fin+1;
+ fin = ini;
+ while (*fin!='\0') fin++;
+ memcpy(dst->fp, ini, fin-ini+1);
+
+ ini = fin+1;
+ fin = ini;
+ while (*fin!='\0') fin++;
+ memcpy(dst->ctacte, ini, fin-ini+1);
+
+ ini = fin+1;
+ fin = ini;
+ while (*fin!='\0') fin++;
+ memcpy(dst->cheque, ini, fin-ini+1);
+
+ if (dst->cant_items > 0) {
+ /* Ahora tengo que cargar los items */
+ dst->items = (t_Item *)malloc(sizeof(t_Item)*dst->cant_items);
+
+ ini = fin+1;
+ fprintf(stderr, "trabajo con 1 -> %lu\n", size);
+ fin = (char *)src+size;
+ memcpy(dst->items, ini, fin-ini);
+ } else {
+ dst->items = NULL;
+ }
+
return 0;
case T3:
/* Se que tengo 10 items */