Merged PR 82: feat:アクション選択UIの改善

以下の内容を改修しました。
1.TASK581:アクションのカテゴリおよび並び順を設定できるようにする
2.各アクションは対応イベント以外に設置できないようにする
3.DB構造を変更しました。
  * action: categoryidとnosort列追加
  * category: アクションのカテゴリマスタ追加
  * eventaction: アクションごと設置できないイベントIDを登録
4.デプロイの際、scripts\kintoneToolDB_20240820_update.sqlを実行してDBを更新してください。

Related work items: #524, #581
This commit is contained in:
Shohtetsu Ma
2024-08-21 01:30:01 +00:00
committed by Takuto Yoshida(タクト)
9 changed files with 839 additions and 28 deletions

View File

@@ -66,6 +66,9 @@ export const useFlowEditorStore = defineStore('flowEditor', {
setActiveNode(node: IActionNode) {
this.activeNode = node;
},
setCurrentEvent(event:IKintoneEvent | undefined){
this.selectedEvent=event;
},
setApp(app: AppInfo) {
this.appInfo = app;
},