This commit is contained in:
AdisakKanthawilang 2024-03-04 14:54:15 +07:00
parent 2bb68463be
commit 5e2e13d8e8
9 changed files with 12 additions and 13 deletions

View file

@ -51,7 +51,7 @@ export class OrgRootController extends Controller {
async GetRoot(@Path() id: string) {
const orgRoot = await this.orgRootRepository.findOne({ where: { id } });
if (!orgRoot) {
throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล โครงสร้างระดับ Root");
throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลโครงสร้างระดับ Root นี้");
}
const getOrgRoot = {
orgRootId: orgRoot.id,