no message
This commit is contained in:
parent
dd2780a06f
commit
33533d5638
2 changed files with 9 additions and 8 deletions
|
|
@ -4649,10 +4649,10 @@ export class ProfileController extends Controller {
|
|||
? null
|
||||
: _data.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.orgChild4;
|
||||
|
||||
let _child1 = child1 == null ? "" : `${child1.orgChild1Name}/`;
|
||||
let _child2 = child2 == null ? "" : `${child2.orgChild2Name}/`;
|
||||
let _child3 = child3 == null ? "" : `${child3.orgChild3Name}/`;
|
||||
let _child4 = child4 == null ? "" : `${child4.orgChild4Name}/`;
|
||||
let _child1 = child1 == null ? "" : `${child1.orgChild1Name} `;
|
||||
let _child2 = child2 == null ? "" : `${child2.orgChild2Name} `;
|
||||
let _child3 = child3 == null ? "" : `${child3.orgChild3Name} `;
|
||||
let _child4 = child4 == null ? "" : `${child4.orgChild4Name} `;
|
||||
|
||||
return {
|
||||
id: _data.id,
|
||||
|
|
@ -7335,6 +7335,7 @@ export class ProfileController extends Controller {
|
|||
.orWhere(`posType.posTypeName LIKE :keyword`, {
|
||||
keyword: `%${body.keyword}%`,
|
||||
})
|
||||
.where("profile.isLeave = false")
|
||||
.orWhere(conditionFullName, {
|
||||
keyword: `%${body.keyword}%`,
|
||||
})
|
||||
|
|
|
|||
|
|
@ -1714,10 +1714,10 @@ export class ProfileEmployeeController extends Controller {
|
|||
? null
|
||||
: _data.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.orgChild4;
|
||||
|
||||
let _child1 = child1 == null ? "" : `${child1.orgChild1Name}/`;
|
||||
let _child2 = child2 == null ? "" : `${child2.orgChild2Name}/`;
|
||||
let _child3 = child3 == null ? "" : `${child3.orgChild3Name}/`;
|
||||
let _child4 = child4 == null ? "" : `${child4.orgChild4Name}/`;
|
||||
let _child1 = child1 == null ? "" : `${child1.orgChild1Name} `;
|
||||
let _child2 = child2 == null ? "" : `${child2.orgChild2Name} `;
|
||||
let _child3 = child3 == null ? "" : `${child3.orgChild3Name} `;
|
||||
let _child4 = child4 == null ? "" : `${child4.orgChild4Name} `;
|
||||
return {
|
||||
id: _data.id,
|
||||
prefix: _data.prefix,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue