#1356 command36,37
This commit is contained in:
parent
fdb51a799d
commit
b5bfc6bacd
1 changed files with 3 additions and 3 deletions
|
|
@ -8681,7 +8681,7 @@ export class ReportController extends Controller {
|
|||
id: v.refId,
|
||||
},
|
||||
});
|
||||
|
||||
|
||||
if (salary != null) {
|
||||
await new CallAPI()
|
||||
.PostData(request, "/org/profile-employee/salary/update", {
|
||||
|
|
@ -8696,7 +8696,7 @@ export class ReportController extends Controller {
|
|||
posNoAbb: salary.orgShortName,
|
||||
positionName: salary.position,
|
||||
positionType: salary.posType,
|
||||
positionLevel: salary.posLevel != null ? salary.posLevel.toString() : null,
|
||||
positionLevel: (salary.posTypeShort != null ? salary.posTypeShort + "." : '') + (salary.posLevel != null ? salary.posLevel.toString() : ''),
|
||||
remark: v.remark,
|
||||
orgRoot: salary.root,
|
||||
orgChild1: salary.child1,
|
||||
|
|
@ -8780,7 +8780,7 @@ export class ReportController extends Controller {
|
|||
posNoAbb: salary.orgShortName,
|
||||
positionName: salary.position,
|
||||
positionType: salary.posType,
|
||||
positionLevel: salary.posLevel != null ? salary.posLevel.toString() : null,
|
||||
positionLevel: (salary.posTypeShort != null ? salary.posTypeShort + "." : '') + (salary.posLevel != null ? salary.posLevel.toString() : ''),
|
||||
remark: v.remark,
|
||||
orgRoot: salary.root,
|
||||
orgChild1: salary.child1,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue