123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404 |
- import requests
- import datetime
- from PyQt6.QtCore import QObject
- from .LogerinTxt import app_logger
- from PyQt6 import QtCore
- class sortdisplaySever(QObject):
- sortupdate = QtCore.pyqtSignal(str, dict, list, str, str)
- def __init__(self, name, ip, selectedtime, text, displayMode, selectedbc, displayselect, thread):
- super().__init__()
- self.funcName = name
- self.ipinfo = ip
- self.selectedtime = selectedtime
- self.text = text
- self.displayMode = displayMode
- self.selectedbc = selectedbc
- self.displayselect_mode = displayselect
- self.thread = thread
- nowDay = datetime.datetime.now().strftime("%Y%m%d")
- tomorr =(datetime.date.today() + datetime.timedelta(days=1)).strftime("%Y%m%d")
- yester =(datetime.date.today() - datetime.timedelta(days=1)).strftime("%Y%m%d")
- if self.selectedtime == nowDay:
- self.date = "2"
- elif self.selectedtime == tomorr:
- self.date = "3"
- elif self.selectedtime == yester:
- self.date = "1"
- else:
- self.date = "4"
- def run(self):
- try:
- list = []
- if self.funcName == "sortTableWidgetDispaly":
- #print("1")
- self.sortTableWidgetDispaly()
- self.sortupdate.emit("sortTableWidgetDispaly", self.sorttableWidgetDispalydata, list, self.seversts,self.displayMode)
- self.sortupdate.emit("sortTableWidgetDispalyALL", self.DispalydataAll, list, self.seversts,self.displayMode)
- if self.funcName == "sortTableWidgetDispalyALL":
- #print("2")
- self.sortTableWidgetDispalyALL()
- self.sortupdate.emit("sortTableWidgetDispalyALL", self.sorttableWidgetDispalydata, list, self.seversts,self.displayMode)
- elif self.funcName == "SearchsortTableWidgetDispaly":
- #print("3")
- self.SearchsortTableWidgetDispaly()
- self.sortupdate.emit("SearchsortTableWidgetDispaly", self.sorttableWidgetDispalydata, list,self.seversts,self.displayMode)
- elif self.funcName == "sorttableWidgetDisplayChange":
- #print("4")
- self.sorttableWidgetDisplayChange()
- self.sortupdate.emit("sorttableWidgetDisplayChange", self.sortlogchange, list, self.seversts,self.displayMode)
- elif self.funcName == "sorttableWidgetPeopleDisplay":
- self.sorttableWidgetPeopleDisplay()
- self.sortupdate.emit("sorttableWidgetPeopleDisplay", self.sortdiplaylist, self.peopleOnJob,self.seversts, self.displayMode)
- elif self.funcName == "sorttableWidgetLOGDispaly":
- self.sorttableWidgetLOGDispaly()
- self.sortupdate.emit("sorttableWidgetLOGDispaly", self.sortlog, list, self.seversts, self.displayMode)
- elif self.funcName == "sorttableWidgetPHONEDispaly":
- self.sorttableWidgetPHONEDispaly()
- self.sortupdate.emit("sorttableWidgetPHONEDispaly", self.sorttableWidgetPHONEDispalydata, list,self.seversts, "")
- self.thread.quit()
- except Exception as e:
- app_logger.log_error(e)
- self.thread.quit()
- def severpost_nomeassge(self, postname, postdata, postdata2, postdata3):
- try:
- ip = "http://" + str(self.ipinfo) + "/static/" + str(postname) + str(postdata) + str(postdata2) + str(postdata3)
- try:
- res = requests.get(url=ip, timeout=30).json()
- self.seversts = "1"
- return res
- except Exception as e:
- app_logger.log_error(e)
- app_logger.log_error("重大bug")
- app_logger.log_error(ip)
- self.seversts = "0"
- return []
- except Exception as e:
- app_logger.log_error(e)
- def sorttableWidgetPHONEDispaly(self):
- try:
- sorttableWidgetPHONEDispalydataall = self.severpost_nomeassge("getphonelist", "", "", "")
- self.sorttableWidgetPHONEDispalydata = {}
- num = 0
- if sorttableWidgetPHONEDispalydataall != None:
- if self.text != "":
- for i in sorttableWidgetPHONEDispalydataall.keys():
- if str.lower(str(self.text)) in str(sorttableWidgetPHONEDispalydataall[i]):
- self.sorttableWidgetPHONEDispalydata[str(num)] = sorttableWidgetPHONEDispalydataall[i]
- num += 1
- else:
- self.sorttableWidgetPHONEDispalydata = sorttableWidgetPHONEDispalydataall
- except Exception as e:
- app_logger.log_error(e)
- def checkall(self, datas, text):
- res = {}
- try:
- num = 0
- for i in datas.keys():
- if datas[i]["109"] != text:
- res[str(num)] = datas[i]
- num += 1
- except Exception as e:
- app_logger.log_error(e)
- return res
- def checkStrsingle(self,datas, text, text2): #单一条件筛选
- res = {}
- try:
- num = 0
- for i in datas.keys():
- if str(text) in str(datas[i]) and datas[i]["109"] != text2:
- res[str(num)] = datas[i]
- num += 1
- except Exception as e:
- app_logger.log_error(e)
- return res
- def checkStrTerminalAll(self,datas, text1,text2,text3,text4): #筛选航站且显示全部
- res = {}
- try:
- num = 0
- for i in datas.keys():
- if str(datas[i]["8"]) != "" and datas[i]["109"] != text1:
- if str(datas[i]["8"])[0] == text2 and str(datas[i]["8"])[0] == text3:
- res[str(num)] = datas[i]
- num += 1
- elif str(datas[i]["8"]) == "" and str(datas[i]["109"]) == text4:
- res[str(num)] = datas[i]
- num += 1
- except Exception as e:
- app_logger.log_error(e)
- return res
- def checkStrTerminalAll2(self,datas, text1,text2,text3,text4): #筛选航站且显示全部
- res = {}
- try:
- num = 0
- for i in datas.keys():
- if str(datas[i]["8"]) != "" and datas[i]["109"] != text1:
- if str(datas[i]["8"])[0] != text2 and str(datas[i]["8"])[0] != text3:
- res[str(num)] = datas[i]
- num += 1
- elif str(datas[i]["8"]) == "" and str(datas[i]["109"]) == text4:
- res[str(num)] = datas[i]
- num += 1
- except Exception as e:
- app_logger.log_error(e)
- return res
- def checkStrTerminalAll3(self,datas, text1,text2,text3,text4): #筛选航站且显示全部
- res = {}
- try:
- num = 0
- for i in datas.keys():
- if str(datas[i]["8"]) != "" and datas[i]["109"] == text1:
- if str(datas[i]["8"])[0] == text2 and str(datas[i]["8"])[0] == text3:
- res[str(num)] = datas[i]
- num += 1
- elif str(datas[i]["8"]) == "" and str(datas[i]["109"]) == text4:
- res[str(num)] = datas[i]
- num += 1
- except Exception as e:
- app_logger.log_error(e)
- return res
- def checkStrTerminalAll4(self,datas, text1,text2,text3,text4): #筛选航站且显示全部
- res = {}
- try:
- num = 0
- for i in datas.keys():
- if str(datas[i]["8"]) != "" and datas[i]["109"] == text1:
- if str(datas[i]["8"])[0] != text2 and str(datas[i]["8"])[0] != text3:
- res[str(num)] = datas[i]
- num += 1
- elif str(datas[i]["8"]) == "" and str(datas[i]["109"]) == text4:
- res[str(num)] = datas[i]
- num += 1
- except Exception as e:
- app_logger.log_error(e)
- return res
- def sortTableWidgetDispaly(self):
- try:
- text = self.text
- Partdisplay = self.displayselect_mode # 不显示起飞航班
- # print(Partdisplay)
- tableWidgetDispalydataAll = {}
- if self.displayMode == "A" and (self.selectedbc == "0" or self.date=="4"):
- tableWidgetDispalydataAll = self.severpost_nomeassge("tableWidgetDispaly", "/%s" % self.selectedtime,"/%s"%self.date,"")
- elif self.displayMode == "B"and (self.selectedbc == "0" or self.date=="4"):
- tableWidgetDispalydataAll = self.severpost_nomeassge("tableWidgetDispaly2", "/%s" % self.selectedtime,"/%s"%self.date,"")
- elif self.displayMode == "A" and self.selectedbc == "1":
- tableWidgetDispalydataAll = self.severpost_nomeassge("tableWidgetDispalyRead","/%s"%self.date,"","")
- elif self.displayMode == "B"and self.selectedbc == "1":
- tableWidgetDispalydataAll = self.severpost_nomeassge("tableWidgetDispalyRead2","/%s"%self.date,"","")
- self.DispalydataAll=tableWidgetDispalydataAll
- self.sorttableWidgetDispalydata = {}
- num = 0
- if tableWidgetDispalydataAll != None:
- if text != "" and text != "T1" and text != "T2" and text != "T6" and text != "T2T6" and text != "T1T6" and Partdisplay == "0":
- self.sorttableWidgetDispalydata=self.checkStrsingle(tableWidgetDispalydataAll, text, "")
- elif text == "T1" and Partdisplay == "0":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll(tableWidgetDispalydataAll, "", "1", "1", "1")
- elif text == "T2" and Partdisplay == "0":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll(tableWidgetDispalydataAll, "", "2", "2", "2")
- elif text == "T2T6" and Partdisplay == "0":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll2(tableWidgetDispalydataAll, "", "1", "1", "1")
- elif text == "T1T6" and Partdisplay == "0":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll2(tableWidgetDispalydataAll, "", "2", "2", "1")
- elif text == "T6" and Partdisplay == "0":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll2(tableWidgetDispalydataAll, "", "1", "2", "1")
- elif text != "" and text != "T1" and text != "T2" and text != "T6" and text != "T2T6" and text != "T1T6" and Partdisplay == "1":
- self.sorttableWidgetDispalydata = self.checkStrsingle(tableWidgetDispalydataAll, text, "4")
- elif text == "T1" and Partdisplay == "1":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll(tableWidgetDispalydataAll, "4", "1", "1", "1")
- elif text == "T2" and Partdisplay == "1":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll(tableWidgetDispalydataAll, "4", "2", "2", "1")
- elif text == "T2T6" and Partdisplay == "1":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll2(tableWidgetDispalydataAll, "4", "1", "1", "1")
- elif text == "T1T6" and Partdisplay == "1":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll2(tableWidgetDispalydataAll, "4", "2", "2", "1")
- elif text == "T6" and Partdisplay == "1":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll2(tableWidgetDispalydataAll, "4", "1", "2", "1")
- elif text == "" and Partdisplay == "1":
- self.sorttableWidgetDispalydata = self.checkall(tableWidgetDispalydataAll, "4")
- elif text != "" and text != "T1" and text != "T2" and text != "T6" and text != "T2T6" and text != "T1T6" and Partdisplay == "3":
- self.sorttableWidgetDispalydata = self.checkStrsingle(tableWidgetDispalydataAll, text, "1")
- elif text == "T1" and Partdisplay == "3":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll3(tableWidgetDispalydataAll, "1", "1", "1", "1")
- elif text == "T2" and Partdisplay == "3":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll3(tableWidgetDispalydataAll, "1", "2", "2", "1")
- elif text == "T2T6" and Partdisplay == "3":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll4(tableWidgetDispalydataAll, "1", "1", "1", "1")
- elif text == "T1T6" and Partdisplay == "3":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll4(tableWidgetDispalydataAll, "1", "2", "2", "1")
- elif text == "T6" and Partdisplay == "3":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll4(tableWidgetDispalydataAll, "1", "1", "2", "1")
- elif text == "" and Partdisplay == "3":
- for i in tableWidgetDispalydataAll.keys():
- if tableWidgetDispalydataAll[i]["109"] == '1':
- self.sorttableWidgetDispalydata[str(num)] = tableWidgetDispalydataAll[i]
- num += 1
- else:
- self.sorttableWidgetDispalydata = tableWidgetDispalydataAll
- except Exception as e:
- app_logger.log_error(e)
- def sortTableWidgetDispalyALL(self):
- try:
- if self.displayMode == "A" and (self.selectedbc == "0" or self.date=="4"):
- self.sorttableWidgetDispalydata = self.severpost_nomeassge("tableWidgetDispaly", "/%s" % self.selectedtime,"/%s"%self.date,"")
- elif self.displayMode == "B"and (self.selectedbc == "0" or self.date=="4"):
- self.sorttableWidgetDispalydata = self.severpost_nomeassge("tableWidgetDispaly2", "/%s" % self.selectedtime,"/%s"%self.date,"")
- elif self.displayMode == "A" and self.selectedbc == "1":
- self.sorttableWidgetDispalydata = self.severpost_nomeassge("tableWidgetDispalyRead","/%s"%self.date,"","")
- elif self.displayMode == "B"and self.selectedbc == "1":
- self.sorttableWidgetDispalydata = self.severpost_nomeassge("tableWidgetDispalyRead2","/%s"%self.date,"","")
- except Exception as e:
- app_logger.log_error(e)
- def SearchsortTableWidgetDispaly(self):
- try:
- text = self.text
- self.seversts = "1"
- Partdisplay = self.displayselect_mode # 不显示起飞航班
- # print(Partdisplay)
- tableWidgetDispalydataAll = self.selectedbc
- self.sorttableWidgetDispalydata = {}
- num = 0
- if tableWidgetDispalydataAll != None:
- if text != "" and text != "T1" and text != "T2" and text != "T6" and text != "T2T6" and text != "T1T6"and Partdisplay == "0":
- self.sorttableWidgetDispalydata = self.checkStrsingle(tableWidgetDispalydataAll, text, "")
- elif text == "T1" and Partdisplay == "0":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll(tableWidgetDispalydataAll, "", "1", "1", "1")
- elif text == "T2" and Partdisplay == "0":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll(tableWidgetDispalydataAll, "", "2", "2", "1")
- elif text == "T2T6" and Partdisplay == "0":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll2(tableWidgetDispalydataAll, "", "1", "1", "1")
- elif text == "T1T6" and Partdisplay == "0":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll2(tableWidgetDispalydataAll, "", "2", "2", "1")
- elif text == "T6" and Partdisplay == "0":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll2(tableWidgetDispalydataAll, "", "1", "2", "1")
- elif text != "" and text != "T1" and text != "T2" and text != "T6" and text != "T2T6" and text != "T1T6" and Partdisplay == "1":
- self.sorttableWidgetDispalydata = self.checkStrsingle(tableWidgetDispalydataAll, text, "4")
- elif text == "T1" and Partdisplay == "1":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll(tableWidgetDispalydataAll, "4", "1", "1", "1")
- elif text == "T2" and Partdisplay == "1":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll(tableWidgetDispalydataAll, "4", "2", "2", "1")
- elif text == "T2T6" and Partdisplay == "1":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll2(tableWidgetDispalydataAll, "4", "1", "1", "1")
- elif text == "T1T6" and Partdisplay == "1":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll2(tableWidgetDispalydataAll, "4", "2", "2", "1")
- elif text == "T6" and Partdisplay == "1":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll2(tableWidgetDispalydataAll, "4", "1", "2", "1")
- elif text == "" and Partdisplay == "1":
- self.sorttableWidgetDispalydata = self.checkall(tableWidgetDispalydataAll, "4")
- elif text != "" and text != "T1" and text != "T2" and text != "T6" and text != "T2T6" and text != "T1T6" and Partdisplay == "3":
- for i in tableWidgetDispalydataAll.keys():
- if str(text) in str(tableWidgetDispalydataAll[i]) and tableWidgetDispalydataAll[i]["109"] == '1':
- self.sorttableWidgetDispalydata[str(num)] = tableWidgetDispalydataAll[i]
- num += 1
- elif text == "T1" and Partdisplay == "3":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll3(tableWidgetDispalydataAll, "1", "1", "1", "1")
- elif text == "T2" and Partdisplay == "3":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll3(tableWidgetDispalydataAll, "1", "2", "2", "1")
- elif text == "T2T6" and Partdisplay == "3":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll4(tableWidgetDispalydataAll, "1", "1", "1", "1")
- elif text == "T1T6" and Partdisplay == "3":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll4(tableWidgetDispalydataAll, "1", "2", "2", "1")
- elif text == "T6" and Partdisplay == "3":
- self.sorttableWidgetDispalydata = self.checkStrTerminalAll4(tableWidgetDispalydataAll, "1", "1", "2", "1")
- elif text == "" and Partdisplay == "3":
- for i in tableWidgetDispalydataAll.keys():
- if tableWidgetDispalydataAll[i]["109"] == '1':
- self.sorttableWidgetDispalydata[str(num)] = tableWidgetDispalydataAll[i]
- num += 1
- else:
- self.sorttableWidgetDispalydata = tableWidgetDispalydataAll
- except Exception as e:
- app_logger.log_error(e)
- def sorttableWidgetDisplayChange(self):
- try:
- text = self.text
- logall = self.severpost_nomeassge("tableWidgetDisplayChange", "/%s" % self.selectedtime, "", "")
- self.sortlogchange = {}
- num = 0
- if text != "":
- for i in logall.keys():
- if str(text) in str(logall[i]):
- self.sortlogchange[str(num)] = logall[i]
- num += 1
- else:
- self.sortlogchange = logall
- except Exception as e:
- app_logger.log_error(e)
- def sorttableWidgetPeopleDisplay(self):
- try:
- if self.displayselect_mode == "" or self.displayselect_mode == []:
- text = self.text
- self.peopleOnJob = [""]
- bc = self.selectedbc
- nowDaystr = self.selectedtime # 选择的日期
- diplaylistall = self.severpost_nomeassge("qtPeopleLoad", "/%s" % nowDaystr, "/%s" % bc, "")
- self.sortdiplaylist = {}
- num = 0
- if text != "":
- for i in diplaylistall.keys():
- if str(text) in str(diplaylistall[i]):
- self.sortdiplaylist[str(num)] = diplaylistall[i]
- num += 1
- else:
- self.sortdiplaylist = diplaylistall
- for i in self.sortdiplaylist.keys():
- self.peopleOnJob.append(self.sortdiplaylist[i]["姓名"])
- else:
- names = self.displayselect_mode
- text = self.text
- self.peopleOnJob = [""]
- bc = self.selectedbc
- nowDaystr = self.selectedtime # 选择的日期
- diplaylistall = self.severpost_nomeassge("qtPeopleLoad", "/%s" % nowDaystr, "/%s" % bc, "")
- self.sortdiplaylist = {}
- num = 0
- if text != "":
- for i in diplaylistall.keys():
- if str(text) in str(diplaylistall[i]):
- for name in names:
- if str(name) in str(diplaylistall[i]):
- self.sortdiplaylist[str(num)] = diplaylistall[i]
- num += 1
- else:
- for i in diplaylistall.keys():
- for name in names:
- if str(name) in str(diplaylistall[i]):
- self.sortdiplaylist[str(num)] = diplaylistall[i]
- num += 1
- for i in self.sortdiplaylist.keys():
- self.peopleOnJob.append(self.sortdiplaylist[i]["姓名"])
- except Exception as e:
- app_logger.log_error(e)
- def sorttableWidgetLOGDispaly(self):
- try:
- text = self.text
- logall = self.severpost_nomeassge("tableWidgetLOGDispaly", "/%s" % self.selectedtime, "", "")
- self.sortlog = {}
- num = 0
- if text != "":
- for i in logall.keys():
- if str(text) in str(logall[i]):
- self.sortlog[str(num)] = logall[i]
- num += 1
- else:
- self.sortlog = logall
- except Exception as e:
- app_logger.log_error(e)
|