#include "facturas.h"
#include "idx.h"
+#include "common.h"
static t_LstFacturas *lst_facturas;
/* En el registro no guardo los punteros de nota ni items. Si guardo la cantidad de items
* y los items al final del registro.
*/
- if (tipo == T3) {
+ if ((tipo-1) == T3) {
/* Limito a 10 items en el caso de registro constante! */
cant_items = 10;
} else {
if (strcmp(node->name, "FACTURA") == 0) {
t_Factura fact;
void *save;
- memset(&fact, '*', sizeof(t_Factura));
+ memset(&fact, 0, sizeof(t_Factura));
prop = xml_get_prop(node, "NroFac");
fact.numero = atoi(prop); xmlFree(prop);
prop = xml_get_prop(node, "PorcDoI");