ปรับปรุงจากหลายข้อ

This commit is contained in:
nakorn
2021-11-18 14:00:11 +07:00
parent b6e27e9f12
commit aae66b1d97
4 changed files with 1339 additions and 1 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,86 @@
using Microsoft.EntityFrameworkCore.Migrations;
namespace tb320eva.Migrations
{
public partial class AddEx01 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<decimal>(
name: "Final_summary_competency_supervisor3A",
table: "eva_create_evaluation_detail",
nullable: true);
migrationBuilder.AddColumn<decimal>(
name: "Final_summary_supervisor3A",
table: "eva_create_evaluation_detail",
nullable: true);
migrationBuilder.AddColumn<decimal>(
name: "achievement_supervisor3A",
table: "eva_create_evaluation_detail",
nullable: true);
migrationBuilder.AddColumn<decimal>(
name: "competency_supervisor3A",
table: "eva_create_evaluation_detail",
nullable: true);
migrationBuilder.AddColumn<string>(
name: "level_score_supervisor3A",
table: "eva_create_evaluation_detail",
maxLength: 255,
nullable: true);
migrationBuilder.AddColumn<decimal>(
name: "score_supervisor3A",
table: "eva_create_evaluation_detail",
nullable: true);
migrationBuilder.AddColumn<decimal>(
name: "total_summary_competency_supervisor3A",
table: "eva_create_evaluation_detail",
nullable: true);
migrationBuilder.AddColumn<decimal>(
name: "total_summary_supervisor3A",
table: "eva_create_evaluation_detail",
nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Final_summary_competency_supervisor3A",
table: "eva_create_evaluation_detail");
migrationBuilder.DropColumn(
name: "Final_summary_supervisor3A",
table: "eva_create_evaluation_detail");
migrationBuilder.DropColumn(
name: "achievement_supervisor3A",
table: "eva_create_evaluation_detail");
migrationBuilder.DropColumn(
name: "competency_supervisor3A",
table: "eva_create_evaluation_detail");
migrationBuilder.DropColumn(
name: "level_score_supervisor3A",
table: "eva_create_evaluation_detail");
migrationBuilder.DropColumn(
name: "score_supervisor3A",
table: "eva_create_evaluation_detail");
migrationBuilder.DropColumn(
name: "total_summary_competency_supervisor3A",
table: "eva_create_evaluation_detail");
migrationBuilder.DropColumn(
name: "total_summary_supervisor3A",
table: "eva_create_evaluation_detail");
}
}
}

View File

@@ -243,12 +243,16 @@ namespace tb320eva.Migrations
b.Property<decimal?>("Final_summary_competency_supervisor2A");
b.Property<decimal?>("Final_summary_competency_supervisor3A");
b.Property<decimal?>("Final_summary_supervisor");
b.Property<decimal?>("Final_summary_supervisor1A");
b.Property<decimal?>("Final_summary_supervisor2A");
b.Property<decimal?>("Final_summary_supervisor3A");
b.Property<decimal?>("achievement_chief");
b.Property<decimal?>("achievement_supervisor");
@@ -257,6 +261,8 @@ namespace tb320eva.Migrations
b.Property<decimal?>("achievement_supervisor2A");
b.Property<decimal?>("achievement_supervisor3A");
b.Property<int?>("chief");
b.Property<int?>("chief_a");
@@ -280,6 +286,8 @@ namespace tb320eva.Migrations
b.Property<decimal?>("competency_supervisor2A");
b.Property<decimal?>("competency_supervisor3A");
b.Property<int?>("create_evaluation_id");
b.Property<DateTime>("created");
@@ -304,6 +312,9 @@ namespace tb320eva.Migrations
b.Property<string>("level_score_supervisor2A")
.HasMaxLength(255);
b.Property<string>("level_score_supervisor3A")
.HasMaxLength(255);
b.Property<int?>("order_of_data");
b.Property<string>("remark")
@@ -317,6 +328,8 @@ namespace tb320eva.Migrations
b.Property<decimal?>("score_supervisor2A");
b.Property<decimal?>("score_supervisor3A");
b.Property<string>("status_chief")
.HasMaxLength(1);
@@ -428,12 +441,16 @@ namespace tb320eva.Migrations
b.Property<decimal?>("total_summary_competency_supervisor2A");
b.Property<decimal?>("total_summary_competency_supervisor3A");
b.Property<decimal?>("total_summary_supervisor");
b.Property<decimal?>("total_summary_supervisor1A");
b.Property<decimal?>("total_summary_supervisor2A");
b.Property<decimal?>("total_summary_supervisor3A");
b.Property<DateTime>("updated");
b.Property<decimal?>("work_period");

View File

@@ -32,7 +32,7 @@ function eva_adjust_postponement_detail_quota_02_FeedDataToForm(data, i, blankIt
$("#eva_adjust_postponement_detail_quota_02_sarary_" + i).text(formatNumber(data.sarary));
$("#eva_adjust_postponement_detail_quota_02_cost_living_" + i).text(formatNumber(data.cost_living));
$("#eva_adjust_postponement_detail_quota_02_middle_" + i).text(formatNumber(data.middle));
$("#eva_adjust_postponement_detail_quota_02_promoted_percentage_" + i).text(formatNumberTemp(data.promoted_percentage));
$("#eva_adjust_postponement_detail_quota_02_promoted_percentage_" + i).text(formatNumber2(data.promoted_percentage, 3));
$("#eva_adjust_postponement_detail_quota_02_total_promote_" + i).text(formatNumber(data.total_promote));
$("#eva_adjust_postponement_detail_quota_02_new_sarary_" + i).text(formatNumberTemp(data.new_sarary));
$("#eva_adjust_postponement_detail_quota_02_new_cost_living_" + i).val(data.new_cost_living);