Commit 4f28c1d3 by Nattana Chaiyamat

กำหนดค่าระบบประเมินสมรรถนะ

parent 581dec38
......@@ -37,12 +37,12 @@
Clear
</button>
</div>
<div class="px-1">
<!-- <div class="px-1">
<button href="javascript:void(0);" class="ti-btn ti-btn-soft-warning h-10 m-0 shadow-md">
<i class="ti ti-book fs-l"></i>
Help
</button>
</div>
</div> -->
</div>
</div>
......
......@@ -9,12 +9,12 @@
Save
</button>
</div>
<div class="px-1">
<!-- <div class="px-1">
<button href="javascript:void(0);" class="ti-btn ti-btn-soft-warning h-10 m-0 shadow-md">
<i class="ti ti-book fs-l"></i>
Help
</button>
</div>
</div> -->
</div>
</div>
......
......@@ -32,7 +32,7 @@ export class CompetencyConfigurationComponent {
}
saveSetting() {
this.setting.loading = true
this.settingAssessmentService.post(new MySettingAssessmentModel({ ...this.setting.data, expectationLevel: +(this.setting.data.expectationLevel) })).subscribe({
this.settingAssessmentService.post(new MySettingAssessmentModel({ ...this.setting.data, expectationLevel: +(this.setting.data.expectationLevel), active: true })).subscribe({
next: response => {
if (response.success) {
this.showAlert(response.message, 'success')
......
......@@ -37,12 +37,12 @@
Clear
</button>
</div>
<div class="px-1">
<!-- <div class="px-1">
<button href="javascript:void(0);" class="ti-btn ti-btn-soft-warning h-10 m-0 shadow-md">
<i class="ti ti-book fs-l"></i>
Help
</button>
</div>
</div> -->
</div>
</div>
......
......@@ -8,6 +8,7 @@ export interface SettingAssessmentModel {
settingScore3: number;
settingScore2: number;
settingScore1: number;
active: boolean
}
export class MySettingAssessmentModel implements SettingAssessmentModel {
......@@ -20,7 +21,7 @@ export class MySettingAssessmentModel implements SettingAssessmentModel {
settingScore3: number;
settingScore2: number;
settingScore1: number;
active: boolean
constructor(data?: Partial<SettingAssessmentModel>) {
this.apsyear = data?.apsyear || "";
this.companyId = data?.companyId || "";
......@@ -31,5 +32,6 @@ export class MySettingAssessmentModel implements SettingAssessmentModel {
this.settingScore3 = data?.settingScore3 ?? 0;
this.settingScore2 = data?.settingScore2 ?? 0;
this.settingScore1 = data?.settingScore1 ?? 0;
this.active = data?.active ?? false
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment