Blame view

doc/uml/activities/routine_manager/submit_request_act.txt 351 Bytes
164eebbd   haribo   UML and comments
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@startuml

title Submit request

(*) --> if "Request is complete"
		--> [Yes] if "Request is already submitted"
			--> [Yes] "Display error message"
			--> (*)
		else
			--> [No] "Get obs conditions from DB"
			--> "Set all sequences to OBS or TBP"
			--> "Start scheduling"
			--> (*)
		endif
	else
		--> [No] "Display error message"

	endif

@enduml