ตัด "/" สังกัด
This commit is contained in:
parent
0c4959e0d0
commit
324d911c83
3 changed files with 7 additions and 7 deletions
|
|
@ -467,7 +467,7 @@ export class KpiUserDevelopmentController extends Controller {
|
|||
|
||||
const organization = fullNameParts
|
||||
.filter((part) => part !== undefined && part !== null)
|
||||
.join("/");
|
||||
.join(" ");
|
||||
|
||||
return {
|
||||
id: item.id,
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue