Commit 4f28c1d3 by Nattana Chaiyamat

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

parent 581dec38
...@@ -37,12 +37,12 @@ ...@@ -37,12 +37,12 @@
Clear Clear
</button> </button>
</div> </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"> <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> <i class="ti ti-book fs-l"></i>
Help Help
</button> </button>
</div> </div> -->
</div> </div>
</div> </div>
......
...@@ -9,12 +9,12 @@ ...@@ -9,12 +9,12 @@
Save Save
</button> </button>
</div> </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"> <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> <i class="ti ti-book fs-l"></i>
Help Help
</button> </button>
</div> </div> -->
</div> </div>
</div> </div>
......
...@@ -32,7 +32,7 @@ export class CompetencyConfigurationComponent { ...@@ -32,7 +32,7 @@ export class CompetencyConfigurationComponent {
} }
saveSetting() { saveSetting() {
this.setting.loading = true 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 => { next: response => {
if (response.success) { if (response.success) {
this.showAlert(response.message, 'success') this.showAlert(response.message, 'success')
......
...@@ -37,12 +37,12 @@ ...@@ -37,12 +37,12 @@
Clear Clear
</button> </button>
</div> </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"> <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> <i class="ti ti-book fs-l"></i>
Help Help
</button> </button>
</div> </div> -->
</div> </div>
</div> </div>
......
...@@ -8,6 +8,7 @@ export interface SettingAssessmentModel { ...@@ -8,6 +8,7 @@ export interface SettingAssessmentModel {
settingScore3: number; settingScore3: number;
settingScore2: number; settingScore2: number;
settingScore1: number; settingScore1: number;
active: boolean
} }
export class MySettingAssessmentModel implements SettingAssessmentModel { export class MySettingAssessmentModel implements SettingAssessmentModel {
...@@ -20,7 +21,7 @@ export class MySettingAssessmentModel implements SettingAssessmentModel { ...@@ -20,7 +21,7 @@ export class MySettingAssessmentModel implements SettingAssessmentModel {
settingScore3: number; settingScore3: number;
settingScore2: number; settingScore2: number;
settingScore1: number; settingScore1: number;
active: boolean
constructor(data?: Partial<SettingAssessmentModel>) { constructor(data?: Partial<SettingAssessmentModel>) {
this.apsyear = data?.apsyear || ""; this.apsyear = data?.apsyear || "";
this.companyId = data?.companyId || ""; this.companyId = data?.companyId || "";
...@@ -31,5 +32,6 @@ export class MySettingAssessmentModel implements SettingAssessmentModel { ...@@ -31,5 +32,6 @@ export class MySettingAssessmentModel implements SettingAssessmentModel {
this.settingScore3 = data?.settingScore3 ?? 0; this.settingScore3 = data?.settingScore3 ?? 0;
this.settingScore2 = data?.settingScore2 ?? 0; this.settingScore2 = data?.settingScore2 ?? 0;
this.settingScore1 = data?.settingScore1 ?? 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