small change to getapps command

This commit is contained in:
StevanFreeborn
2022-04-29 13:29:15 -05:00
parent b753975a83
commit abcb1b04ee
+4 -3
View File
@@ -30,12 +30,15 @@ def main():
if command == 'getapps': if command == 'getapps':
PrintGetApps(onspring) PrintGetApps(onspring)
return
if command == 'getappbyid': if command == 'getappbyid':
PrintGetAppById(onspring, 195) PrintGetAppById(onspring, 195)
return
if command == 'getappsbyids': if command == 'getappsbyids':
PrintGetAppsByIds(onspring, [195, 240]) PrintGetAppsByIds(onspring, [195, 240])
return
if command == 'getfieldbyid': if command == 'getfieldbyid':
PrintGetFieldById(onspring, 9686 ) PrintGetFieldById(onspring, 9686 )
@@ -54,9 +57,6 @@ def main():
PrintGetFileInfoById(onspring, recordId, fieldId, fileId) PrintGetFileInfoById(onspring, recordId, fieldId, fileId)
return return
PrintGetFileById(onspring, )
return
if command == 'savefile': if command == 'savefile':
PrintSaveFile( PrintSaveFile(
onspring, onspring,
@@ -64,6 +64,7 @@ def main():
60, 60,
6989 6989
) )
return
if command == 'getrecordsbyappid': if command == 'getrecordsbyappid':
PrintGetRecordsByAppId(onspring, 195) PrintGetRecordsByAppId(onspring, 195)