-
Notifications
You must be signed in to change notification settings - Fork 0
/
prints.py
65 lines (58 loc) · 2.23 KB
/
prints.py
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import webbrowser
from tkinter import messagebox
from os import path
from os import system
from sys import platform
sistema = platform
ruta1 = path.abspath(__file__)
ruta2 = path.split(ruta1)
archivo = ruta2[0] + "/config"
a = open(archivo, "r")
dato = a.readlines()
ruta3 = dato[0].lstrip("ruta_boleta:").rstrip("\n")
naveg = dato[6].lstrip("navegador_1:").rstrip("\n")
a.close()
def imprimir(argu):
# Determina en que OS estamos trabajando
# Si estamos en GNU/Linux
####################################################################
if sistema == "linux":
if not ruta3:
# Si no se a especificado la ruta se utiliza la default
ruta = ruta2[0] + "/Boletas/Orden" + argu + ".pdf"
else:
ruta = ruta3 + "/Orden" + argu + ".pdf"
# Preguntamos si queremos imprimir el pdf
bole = messagebox.askyesno(message="¿Imprimir boleta?", title="Boleta")
if bole:
# Comando GNU/Linux para la impresion
# Necesita tener cups instalado en su sistema
# Y configurado su impresora a traves de cups
ruta_l = "lp -o media=A4" + " " + ruta
system(ruta_l)
# Abrimos el pdf en el navegador
if not naveg:
webbrowser.open(ruta, new=2, autoraise=True)
# Si estamos en Windows
####################################################################
elif sistema == "win32" or "win64":
from win32api import ShellExecute
# Si no se a especificado la ruta se utiliza la default
if not ruta3:
ruta = ruta2[0] + "\\Boletas\\Orden" + argu + ".pdf"
else:
ruta = ruta3 + "\\Orden" + argu + ".pdf"
# Preguntamos si queremos imprimir el pdf
bole = messagebox.askyesno(message="¿Imprimir boleta?", title="Boleta")
if bole:
try:
ShellExecute(0, "print", ruta, None, ".", 0)
except:
print("Impresora no encontrada")
# Abrimos el pdf en el navegador
if not naveg:
webbrowser.open(ruta, new=2, autoraise=True)
# Si no reconoce el sistema
####################################################################
else:
print("Sistema no reconocido")