From 3129cb10b02bb628bbe70c7d8b37f7db523f1ab3 Mon Sep 17 00:00:00 2001 From: Kittapath Date: Wed, 15 May 2024 12:28:58 +0700 Subject: [PATCH] no message --- src/controllers/OrganizationController.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/controllers/OrganizationController.ts b/src/controllers/OrganizationController.ts index f45ae9ea..ae258eb4 100644 --- a/src/controllers/OrganizationController.ts +++ b/src/controllers/OrganizationController.ts @@ -606,6 +606,7 @@ export class OrganizationController extends Controller { "orgRoot.orgRevisionId", "orgRoot.orgRootRank", "orgRoot.orgRootRankSub", + "orgRoot.responsibility", ]) .orderBy("orgRoot.orgRootOrder", "ASC") .getMany(); @@ -628,6 +629,7 @@ export class OrganizationController extends Controller { "orgChild1.orgRootId", "orgChild1.orgChild1Rank", "orgChild1.orgChild1RankSub", + "orgChild1.responsibility", ]) .orderBy("orgChild1.orgChild1Order", "ASC") .getMany() @@ -652,6 +654,7 @@ export class OrganizationController extends Controller { "orgChild2.orgChild2Rank", "orgChild2.orgChild2RankSub", "orgChild2.orgChild1Id", + "orgChild2.responsibility", ]) .orderBy("orgChild2.orgChild2Order", "ASC") .getMany() @@ -676,6 +679,7 @@ export class OrganizationController extends Controller { "orgChild3.orgChild3Rank", "orgChild3.orgChild3RankSub", "orgChild3.orgChild2Id", + "orgChild3.responsibility", ]) .orderBy("orgChild3.orgChild3Order", "ASC") .getMany() @@ -700,6 +704,7 @@ export class OrganizationController extends Controller { "orgChild4.orgChild4Rank", "orgChild4.orgChild4RankSub", "orgChild4.orgChild3Id", + "orgChild4.responsibility", ]) .orderBy("orgChild4.orgChild4Order", "ASC") .getMany()