Created
February 25, 2015 11:11
-
-
Save mmmpa/305565e4de2c7f3f13ed to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@startuml{example.png} | |
!include color.inc | |
title <size:18>クーポン発行フロー</size> | |
(*) --> "発行情報を登録/変更" | |
--> "情報入力フォーム" as input <<input>> | |
--> "入力内容の確認" | |
--> if "" then | |
note right:入力 OK? | |
--> [はい] if "" then | |
note right:割引券発行済み? | |
--> [はい] "失敗" <<fail>> | |
else | |
--> [いいえ] "「割引券」自動登録" | |
--> "登録完了" <<page>> | |
endif | |
else | |
-u-> [いいえ] input | |
endif | |
"登録完了" --> (*) | |
@enduml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment