Commit 2257e717 by Juan

psql pruebas

1 parent 39cfaaff
...@@ -8,6 +8,7 @@ class Reporte(): ...@@ -8,6 +8,7 @@ class Reporte():
self.fecha = time.strftime("%y%m%d") self.fecha = time.strftime("%y%m%d")
self.archivo = "tmp/reporte"+ self.fecha + ".xlsx" self.archivo = "tmp/reporte"+ self.fecha + ".xlsx"
self.QUERY = [] self.QUERY = []
self.Encabesado = []
def NombreArchivo(self, nombre): def NombreArchivo(self, nombre):
self.archivo = "tmp/"+ nombre + self.fecha + ".xlsx" self.archivo = "tmp/"+ nombre + self.fecha + ".xlsx"
...@@ -30,6 +31,13 @@ class Reporte(): ...@@ -30,6 +31,13 @@ class Reporte():
self.__escribir_linea__(query, str(n)) self.__escribir_linea__(query, str(n))
n = n + 1 n = n + 1
def __encabesado__(self):
n = 0
for celda in self.Encabesado:
celda = Reporte.COLUMNA[n] + "1"
self.Hoja1.write(celda, str(celda))
n = n + 1
def ArmarLibro(self, estado="1"): def ArmarLibro(self, estado="1"):
self.__generarLibro__() self.__generarLibro__()
self.__escribir_global() self.__escribir_global()
......
...@@ -22,4 +22,5 @@ db.Leer() ...@@ -22,4 +22,5 @@ db.Leer()
#query = db.resultado #query = db.resultado
repo.QUERY = db.resultado repo.QUERY = db.resultado
repo.Encabesado = ["DOMINIO", "DATETIME", "FECHA", "CLENTE", "CALLE", "CALLE2", "LOCALIDAD", "PROBINCIA", "COD POSTAL", "PAIS", "DOMICILIO"]
repo.ArmarLibro() repo.ArmarLibro()
\ No newline at end of file \ No newline at end of file
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!