[Python] 纯文本查看 复制代码
import tkinter as tk
from tkinter import ttk
import re
import os
import os.path as osp
from glob import glob
import shutil
from tkinter import filedialog
from tkinter.messagebox import showerror,showinfo,showwarning
import pandas as pd
import time
def customer(text=''): #1、客户名称
left=170
top=45
width=80
height=22
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def year(text='3'): #2、年
left=448
top=45
width=20
height=22
textbox=list((left,top,width,height,text))
return textbox
def month(text=''): #3、月
left=472
top=45
width=30
height=22
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def day(text=''): #4、日
left=503
top=45
width=30
height=22
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def total_weight_1(text=''): #5、毛重列第一行
left=172
top=92
width=74
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def tare_weight_1(text=''): #6、皮重列第一行
left=245
top=92
width=74
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def net_weight_1(text=''): #7、净重列第一行
left=319
top=92
width=74
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def price_1(text=''): #8、单价列第一行
left=393
top=92
width=74
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def hundred_thousand_1(text=''): #9、十万位第一行
left=462
top=92
width=10
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def ten_thousand_1(text=''): #10、万位第一行
left=475
top=92
width=10
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def thousand_1(text=''): #11、千位第一行
left=488
top=92
width=10
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def hundred_1(text=''): #12、百位第一行
left=501
top=92
width=10
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def ten_1(text=''): #13、十位第一行
left=514
top=92
width=10
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def unit_1(text=''): #14、个位第一行
left=527
top=92
width=10
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def total_weight_2(text=''): #15、毛重列第二行
left=172
top=115
width=74
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def tare_weight_2(text=''): #16、皮重列第二行
left=245
top=115
width=74
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def net_weight_2(text=''): #17、净重列第二行
left=319
top=115
width=74
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def price_2(text=''): #18、单价列第二行
left=393
top=115
width=74
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def hundred_thousand_2(text=''): #19、十万位第二行
left=462
top=115
width=10
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def ten_thousand_2(text=''): #20、万位第二行
left=475
top=115
width=10
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def thousand_2(text=''): #21、千位第二行
left=488
top=115
width=10
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def hundred_2(text=''): #22、百位第二行
left=501
top=115
width=10
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def ten_2(text=''): #23、十位第二行
left=514
top=115
width=10
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def unit_2(text=''): #24、个位第二行
left=527
top=115
width=10
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def total_weight_3(text=''): #25、毛重列第三行
left=172
top=138
width=74
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def tare_weight_3(text=''): #26、皮重列第三行
left=245
top=138
width=74
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def net_weight_3(text=''): #27、净重列第三行
left=319
top=138
width=74
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def price_3(text=''): #28、单价列第三行
left=393
top=138
width=74
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def hundred_thousand_3(text=''): #29、十万位第三行
left=462
top=138
width=10
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def ten_thousand_3(text=''): #30、万位第三行
left=475
top=138
width=10
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def thousand_3(text=''): #31、千位第三行
left=488
top=138
width=10
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def hundred_3(text=''): #32、百位第三行
left=501
top=138
width=10
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def ten_3(text=''): #33、十位第三行
left=514
top=138
width=10
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def unit_3(text=''): #34、个位第三行
left=527
top=138
width=10
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def total_caps(text=''): #35 、合计大写栏第一个
left=170
top=161
width=260
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def total_caps_2(text=''): #36 、合计大写栏第二个
left=115
top=170
width=35
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def total_caps_3(text=''): #37 、合计大写栏第三个
left=155
top=170
width=35
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def total_caps_4(text=''): #38 、合计大写栏第四个
left=195
top=170
width=35
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def total_caps_5(text=''): #39 、合计大写栏第五个
left=235
top=170
width=35
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def total_caps_6(text=''): #40 、合计大写栏第六个
left=275
top=170
width=35
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def hundred_thousand_4(text=''): #41、十万位第四行(合计金额小写)
left=462
top=161
width=10
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def ten_thousand_4(text=''): #42、万位第四行(合计金额小写)
left=475
top=161
width=10
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def thousand_4(text=''): #43、千位第四行(合计金额小写)
left=488
top=161
width=10
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def hundred_4(text=''): #44、百位第四行(合计金额小写)
left=501
top=161
width=10
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def ten_4(text=''): #45、十位第四行(合计金额小写)
left=514
top=161
width=10
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox
def unit_4(text=''): #46、个位第三行(合计金额小写)
left=527
top=161
width=10
height=23
textbox=list((left,top,width,height,text))
#print(textbox)
return textbox