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:
16
ClientSpecific.py
Normal file
16
ClientSpecific.py
Normal 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()
|
||||
Reference in New Issue
Block a user