no message
This commit is contained in:
parent
33533d5638
commit
d18d28cb5b
7 changed files with 26 additions and 20 deletions
|
|
@ -85,7 +85,7 @@ export class ProfileGovernmentEmployeeTempController extends Controller {
|
|||
posMaster == null || posMaster.orgChild1 == null ? null : posMaster.orgChild1.orgChild1Name,
|
||||
posMaster == null || posMaster.orgRoot == null ? null : posMaster.orgRoot.orgRootName,
|
||||
];
|
||||
const org = fullNameParts.filter((part) => part !== undefined && part !== null).join("/");
|
||||
const org = fullNameParts.filter((part) => part !== undefined && part !== null).join(" ");
|
||||
let orgShortName = "";
|
||||
if (posMaster != null) {
|
||||
if (posMaster.orgChild1Id === null) {
|
||||
|
|
@ -184,7 +184,7 @@ export class ProfileGovernmentEmployeeTempController extends Controller {
|
|||
posMaster == null || posMaster.orgChild1 == null ? null : posMaster.orgChild1.orgChild1Name,
|
||||
posMaster == null || posMaster.orgRoot == null ? null : posMaster.orgRoot.orgRootName,
|
||||
];
|
||||
const org = fullNameParts.filter((part) => part !== undefined && part !== null).join("/");
|
||||
const org = fullNameParts.filter((part) => part !== undefined && part !== null).join(" ");
|
||||
let orgShortName = "";
|
||||
if (posMaster != null) {
|
||||
if (posMaster.orgChild1Id === null) {
|
||||
|
|
@ -271,7 +271,7 @@ export class ProfileGovernmentEmployeeTempController extends Controller {
|
|||
posMaster == null || posMaster.orgChild1 == null ? null : posMaster.orgChild1.orgChild1Name,
|
||||
posMaster == null || posMaster.orgRoot == null ? null : posMaster.orgRoot.orgRootName,
|
||||
];
|
||||
const org = fullNameParts.filter((part) => part !== undefined && part !== null).join("/");
|
||||
const org = fullNameParts.filter((part) => part !== undefined && part !== null).join(" ");
|
||||
let orgShortName = "";
|
||||
if (posMaster != null) {
|
||||
if (posMaster.orgChild1Id === null) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue