ตัด "/" สังกัด

This commit is contained in:
Bright 2025-02-06 15:53:51 +07:00
parent 0c4959e0d0
commit 324d911c83
3 changed files with 7 additions and 7 deletions

View file

@ -467,7 +467,7 @@ export class KpiUserDevelopmentController extends Controller {
const organization = fullNameParts
.filter((part) => part !== undefined && part !== null)
.join("/");
.join(" ");
return {
id: item.id,

View file

@ -350,7 +350,7 @@ export class KpiUserEvaluationController extends Controller {
const organization = fullNameParts
.filter((part) => part !== undefined && part !== null)
.join("/");
.join(" ");
return {
id: item.id,
@ -470,7 +470,7 @@ export class KpiUserEvaluationController extends Controller {
const organization = fullNameParts
.filter((part) => part !== undefined && part !== null)
.join("/");
.join(" ");
return {
id: item.id,

View file

@ -795,7 +795,7 @@ export class ReportController extends Controller {
const affiliation = fullNameParts
.filter((part) => part !== undefined && part !== null)
.join("/");
.join(" ");
if (!acc.fullName) {
acc.fullName = x.prefix + " " + x.firstName + " " + x.lastName;
@ -1175,7 +1175,7 @@ export class ReportController extends Controller {
const affiliation = fullNameParts
.filter((part) => part !== undefined && part !== null)
.join("/");
.join(" ");
if (!acc.fullName) {
acc.fullName = x.prefix + " " + x.firstName + " " + x.lastName;
@ -1546,7 +1546,7 @@ export class ReportController extends Controller {
]
.map((x: any, index) => (x ? combianText[index] : null))
.filter((x: any) => x !== null)
.join("/"),
.join(" "),
}),
);
@ -1559,7 +1559,7 @@ export class ReportController extends Controller {
];
affiliation = fullNameParts
.filter((part: any) => part !== undefined && part !== null)
.join("/");
.join(" ");
}
}
formattedData = {