reporte.py
1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import xlsxwriter
import time
class Reporte():
COLUMNA = ("A", "B", "C", "E", "F", "G", "H", "I", "J", "K",
"L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "Y", "Z")
def __init__(self):
self.fecha = time.strftime("%y%m%d")
self.archivo = "tmp/reporte"+ self.fecha + ".xlsx"
self.QUERY = []
def NombreArchivo(self, nombre):
self.archivo = "tmp/"+ nombre + self.fecha + ".xlsx"
def __generarLibro__(self):
self.Libro = xlsxwriter.Workbook(self.archivo)
self.bold = self.Libro.add_format({'bold': True})
self.Hoja1 = self.Libro.add_worksheet("Totalizado")
def __escribir_linea__(self, datos, linea):
n = 0
for dato in datos:
celda = Reporte.COLUMNA[n] + linea
self.Hoja1.write(celda, str(dato))
n = n + 1
def __escribir_global(self):
n = 2
for query in self.QUERY:
self.__escribir_linea__(query, str(n))
n = n + 1
def ArmarLibro(self, estado="1"):
self.__generarLibro__()
self.__escribir_global()
self.fin()
return(self.archivo)
def fin(self):
self.Libro.close()