Column Format is now working for both summary and item details. Load function passes client name to the client_Specific_Tabs function in ClientSpecific.py. This will allow any client customization to be done outside of the main program (in theory. I haven't actually tested this yet).

This commit is contained in:
Dan Dembinski
2019-06-25 13:47:17 -04:00
parent b8e5ae6baa
commit 28fce7e10f
5 changed files with 93 additions and 2365 deletions

16
ClientSpecific.py Normal file
View File

@@ -0,0 +1,16 @@
def client_Specific_Tabs(option):
if option == "Westfield":
Westfield()
elif option == " CCM":
CCM()
else:
return
def Westfield():
print("Neat westfield stuff will go here")
exit()
def CCM():
print("Neat CCM stuff will go here")
exit()