เพิ่มฟิลด์ posNo
This commit is contained in:
parent
6dc7f9bd7e
commit
2d6cf2524b
2 changed files with 9 additions and 0 deletions
|
|
@ -4810,6 +4810,9 @@ export class ProfileController extends Controller {
|
||||||
nodeId: null,
|
nodeId: null,
|
||||||
type: profile.employeeClass,
|
type: profile.employeeClass,
|
||||||
salary: profile.amount,
|
salary: profile.amount,
|
||||||
|
posNo : root?.orgRootShortName && posMaster?.posMasterNo
|
||||||
|
? `${root?.orgRootShortName}${posMaster?.posMasterNo}`
|
||||||
|
: ""
|
||||||
};
|
};
|
||||||
if (_profile.child4Id != null) {
|
if (_profile.child4Id != null) {
|
||||||
_profile.node = 4;
|
_profile.node = 4;
|
||||||
|
|
@ -4951,6 +4954,9 @@ export class ProfileController extends Controller {
|
||||||
nodeId: null,
|
nodeId: null,
|
||||||
salary: profile ? profile.amount : null,
|
salary: profile ? profile.amount : null,
|
||||||
amountSpecial: profile ? profile.amountSpecial : null,
|
amountSpecial: profile ? profile.amountSpecial : null,
|
||||||
|
posNo : root?.orgRootShortName && posMaster?.posMasterNo
|
||||||
|
? `${root?.orgRootShortName}${posMaster?.posMasterNo}`
|
||||||
|
: ""
|
||||||
};
|
};
|
||||||
|
|
||||||
if (_profile.child4Id != null) {
|
if (_profile.child4Id != null) {
|
||||||
|
|
|
||||||
|
|
@ -2153,6 +2153,9 @@ export class ProfileEmployeeController extends Controller {
|
||||||
nodeId: null,
|
nodeId: null,
|
||||||
salary: profile ? profile.amount : null,
|
salary: profile ? profile.amount : null,
|
||||||
amountSpecial: profile ? profile.amountSpecial : null,
|
amountSpecial: profile ? profile.amountSpecial : null,
|
||||||
|
posNo : root?.orgRootShortName && posMaster?.posMasterNo
|
||||||
|
? `${root?.orgRootShortName}${posMaster?.posMasterNo}`
|
||||||
|
: ""
|
||||||
};
|
};
|
||||||
return new HttpSuccess(_profile);
|
return new HttpSuccess(_profile);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue