]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs_gui/facturas.c
* Se agrega exportar a XML de ambos archivos.
[z.facultad/75.06/emufs.git] / emufs_gui / facturas.c
index 8cd926772526d2ac1a31ed02020379d3ad747721..a585be9d792a6833b1ec391eb56a69d8026f0556 100644 (file)
@@ -868,3 +868,45 @@ void fact_reformatear(int tipo, int tam_bloque, int tam_reg, int nota_tipo, int
        PERR("==== TERMINE ====\n");
 }
 
+int fact_exportar_xml(const char *filename)
+{
+       int j;
+       t_Reg_Factura *nodo;
+       t_Factura *fact;
+       EMUFS_REG_ID id, id1;
+       FILE *fp;
+
+       if (lst_facturas->primero == NULL) return 0;
+
+       nodo = lst_facturas->primero;
+
+       if (!(fp = fopen(filename, "wt"))) return 0;
+       
+       fprintf(fp, "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n");
+       fprintf(fp, "<FACTURAS>\n");
+       while (nodo) {
+               fact = fact_buscar(lst_facturas, nodo->numero, &id, &id1);
+               fprintf(fp, "\t<FACTURA NroFac=\"%08d\" ", nodo->numero);
+               fprintf(fp, "FechaEmisión=\"%s\" ", fact->emision);
+               fprintf(fp, "FechaVto=\"%s\" ", fact->vencimiento);
+               fprintf(fp, "NroRemito=\"%08d\" ", fact->numero_remito);
+               fprintf(fp, "FP=\"%s\" ", fact->fp);
+               fprintf(fp, "Estado=\"%s\" ", fact->estado);
+               fprintf(fp, "NroCheque=\"%s\" ", fact->cheque);
+               fprintf(fp, "PorcDoI=\"%.2f\" ", fact->procdoi);
+               fprintf(fp, "NroCtaCte=\"%s\" ", fact->ctacte);
+               fprintf(fp, ">\n");
+               fprintf(fp, "\t\t<NOTA>%s</NOTA>\n", fact->nota);
+               for(j=0; j<fact->cant_items; j++) {
+                       if (fact->items[j].numero != 0)
+                               fprintf(fp, "\t\t<ITEMVENTA NroArtículo=\"%08d\" CV=\"%s\" PVU=\"%s\" />\n", fact->items[j].numero, fact->items[j].cv, fact->items[j].pvu);
+               }
+               fprintf(fp, "\t</FACTURA>\n");
+               nodo = nodo->sig;
+       }
+       fprintf(fp, "\t</FACTURAS>\n");
+
+       fclose(fp);
+       return 1;
+}
+