|
|
|
@ -370,7 +370,7 @@ def pyOpenRPA_Agent_O2A(inRequest, inGSettings):
|
|
|
|
|
lReturnActivityItemDict = None
|
|
|
|
|
# If lInput['ActivityLastGUIDStr'] is '' > return 0 element for send in Agent
|
|
|
|
|
if lInput['ActivityLastGUIDStr'] == "":
|
|
|
|
|
lReturnActivityItemDict = lActivityItem[0]
|
|
|
|
|
lReturnActivityItemDict = lThisAgentDict["ActivityList"][0]
|
|
|
|
|
else:
|
|
|
|
|
# go from the end - search element with GUIDStr
|
|
|
|
|
lForTriggerGetNextItem = False
|
|
|
|
@ -381,7 +381,7 @@ def pyOpenRPA_Agent_O2A(inRequest, inGSettings):
|
|
|
|
|
if lForActivityItemDict['GUIDStr'] == lInput['ActivityLastGUIDStr']: lForTriggerGetNextItem = True
|
|
|
|
|
# CASE if GUID is not detected - return 0 element
|
|
|
|
|
if lReturnActivityItemDict == None and lForTriggerGetNextItem == False:
|
|
|
|
|
lReturnActivityItemDict = lActivityItem[0]
|
|
|
|
|
lReturnActivityItemDict = lThisAgentDict["ActivityList"][0]
|
|
|
|
|
# Send QUEUE ITEM
|
|
|
|
|
if lReturnActivityItemDict is not None:
|
|
|
|
|
lReturnActivityItemDict = copy.deepcopy(lReturnActivityItemDict)
|
|
|
|
|