diff --git a/src/controllers/ProfileController.ts b/src/controllers/ProfileController.ts index f533dfc7..ed5a1e4b 100644 --- a/src/controllers/ProfileController.ts +++ b/src/controllers/ProfileController.ts @@ -7806,7 +7806,7 @@ export class ProfileController extends Controller { positionType: item.posTypeId, positionTypeName: item.posType?.posTypeName, posNo: shortName, - organization: root == null ? null : root.orgRootShortName, + organization: root == null ? null : root.orgRootName, salary: item.amount, posMasterNo: posMasterNo ?? null, posTypeId: item.posTypeId, diff --git a/src/controllers/ProfileEmployeeController.ts b/src/controllers/ProfileEmployeeController.ts index 4dd10a4b..d9d2f070 100644 --- a/src/controllers/ProfileEmployeeController.ts +++ b/src/controllers/ProfileEmployeeController.ts @@ -2392,7 +2392,7 @@ export class ProfileEmployeeController extends Controller { positionType: item.posTypeId, positionTypeName: item.posType?.posTypeName, posNo: shortName, - organization: root == null ? null : root.orgRootShortName, + organization: root == null ? null : root.orgRootName, salary: item.amount, root: rootHolder?.orgRootName ?? null, rootId: rootHolder?.id ?? null, @@ -4030,7 +4030,7 @@ export class ProfileEmployeeController extends Controller { positionType: item.posTypeId, positionTypeName: item.posType?.posTypeName, posNo: shortName, - organization: root == null ? null : root.orgRootShortName, + organization: root == null ? null : root.orgRootName, salary: item.amount, posMasterNo: posMasterNo ?? null, posTypeId: item.posTypeId,