def graficar(self): inicio=str(self.deDesde.date().toString('yyyy-MM-dd')) fin=str(self.deHasta.date().toString('yyyy-MM-dd')) ch=Chart(self.parent,700,300) if (inicio==fin): ch.hoursPlot(self.periodo) else: ch.dayPlot(self.periodo) pix=ch.toPix(home+'/grafica.png') self.grafica=pix self.lblGrafica.setPixmap(pix) self.stack.setCurrentIndex(2)
def imprimir(self): fecha = "%s-%s" % (self.deDesde.date().toString("(dd.MMM.yyyy)"), self.deHasta.date().toString("(dd.MMM.yyyy)")) campos = {"titulo": "Reporte de ventas de %s" % fecha, "%fecha%": fecha} for key in self.parent.modulos["config"].modulos["empresa"]: try: campos["%" + key + "%"] = self.parent.cfg.get("empresa", key) except: pass campos["%detalles%"] = str(self.teEntradasDetalle.toHtml()) # libutil.printb(self.parent,'Reporte de ventas',os.path.join(self.parent.home,"formas","ventas.xml"),campos) # for tabla in self.tablas: # campos['%detalles%']+=str(tabla.toHtml())+"<br>" doc = Documento(self.parent, os.path.join(self.parent.home, "formas", "ventas.xml"), campos) ch = Chart(self.parent, 700, 300) ch.dayPlot(self.periodo) pix = ch.toPix("/tmp/grafica.png") doc.addPage(ch.escena) doc.guardarPDF()