แก้ไข Feature OP ข้อ 2990
This commit is contained in:
637
Migrations/25630812141704_AddStatusDateColumn.Designer.cs
generated
Normal file
637
Migrations/25630812141704_AddStatusDateColumn.Designer.cs
generated
Normal file
@@ -0,0 +1,637 @@
|
|||||||
|
// <auto-generated />
|
||||||
|
using System;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
||||||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
||||||
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
||||||
|
using TTSW.EF;
|
||||||
|
|
||||||
|
namespace tb320eva.Migrations
|
||||||
|
{
|
||||||
|
[DbContext(typeof(DataContext))]
|
||||||
|
[Migration("25630812141704_AddStatusDateColumn")]
|
||||||
|
partial class AddStatusDateColumn
|
||||||
|
{
|
||||||
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
||||||
|
{
|
||||||
|
#pragma warning disable 612, 618
|
||||||
|
modelBuilder
|
||||||
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.SerialColumn)
|
||||||
|
.HasAnnotation("ProductVersion", "2.2.4-servicing-10062")
|
||||||
|
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
||||||
|
|
||||||
|
modelBuilder.Entity("TodoAPI2.Models.eva_adjust_postponementEntity", b =>
|
||||||
|
{
|
||||||
|
b.Property<int>("id");
|
||||||
|
|
||||||
|
b.Property<string>("command_no")
|
||||||
|
.HasMaxLength(100);
|
||||||
|
|
||||||
|
b.Property<int?>("create_evaluation_id");
|
||||||
|
|
||||||
|
b.Property<DateTime>("created");
|
||||||
|
|
||||||
|
b.Property<int?>("fiscal_year");
|
||||||
|
|
||||||
|
b.Property<bool>("isActive");
|
||||||
|
|
||||||
|
b.Property<decimal?>("limit");
|
||||||
|
|
||||||
|
b.Property<decimal?>("limit_frame");
|
||||||
|
|
||||||
|
b.Property<decimal?>("limit_frame_quota");
|
||||||
|
|
||||||
|
b.Property<decimal?>("limit_quota");
|
||||||
|
|
||||||
|
b.Property<int?>("managed_by");
|
||||||
|
|
||||||
|
b.Property<decimal?>("percentage");
|
||||||
|
|
||||||
|
b.Property<DateTime?>("theDate");
|
||||||
|
|
||||||
|
b.Property<int?>("theRound");
|
||||||
|
|
||||||
|
b.Property<DateTime>("updated");
|
||||||
|
|
||||||
|
b.HasKey("id");
|
||||||
|
|
||||||
|
b.HasIndex("create_evaluation_id");
|
||||||
|
|
||||||
|
b.ToTable("eva_adjust_postponement");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("TodoAPI2.Models.eva_adjust_postponement_detailEntity", b =>
|
||||||
|
{
|
||||||
|
b.Property<int>("id");
|
||||||
|
|
||||||
|
b.Property<int?>("adjust_postponement_id");
|
||||||
|
|
||||||
|
b.Property<int?>("adjust_postponement_quota_id");
|
||||||
|
|
||||||
|
b.Property<decimal?>("cost_living");
|
||||||
|
|
||||||
|
b.Property<DateTime>("created");
|
||||||
|
|
||||||
|
b.Property<int?>("employee_id");
|
||||||
|
|
||||||
|
b.Property<bool>("isActive");
|
||||||
|
|
||||||
|
b.Property<decimal?>("middle");
|
||||||
|
|
||||||
|
b.Property<decimal?>("new_cost_living");
|
||||||
|
|
||||||
|
b.Property<decimal?>("new_sarary");
|
||||||
|
|
||||||
|
b.Property<decimal?>("new_sarary_with_quota");
|
||||||
|
|
||||||
|
b.Property<decimal?>("promoted_percentage");
|
||||||
|
|
||||||
|
b.Property<decimal?>("receive_quota");
|
||||||
|
|
||||||
|
b.Property<string>("remark")
|
||||||
|
.HasMaxLength(1000);
|
||||||
|
|
||||||
|
b.Property<decimal?>("sarary");
|
||||||
|
|
||||||
|
b.Property<decimal?>("total_promote");
|
||||||
|
|
||||||
|
b.Property<DateTime>("updated");
|
||||||
|
|
||||||
|
b.HasKey("id");
|
||||||
|
|
||||||
|
b.HasIndex("adjust_postponement_id");
|
||||||
|
|
||||||
|
b.HasIndex("adjust_postponement_quota_id");
|
||||||
|
|
||||||
|
b.ToTable("eva_adjust_postponement_detail");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("TodoAPI2.Models.eva_create_evaluationEntity", b =>
|
||||||
|
{
|
||||||
|
b.Property<int>("id");
|
||||||
|
|
||||||
|
b.Property<DateTime>("created");
|
||||||
|
|
||||||
|
b.Property<int?>("employee_id");
|
||||||
|
|
||||||
|
b.Property<Guid?>("evaluation_group_id");
|
||||||
|
|
||||||
|
b.Property<bool>("isActive");
|
||||||
|
|
||||||
|
b.Property<Guid?>("performance_plan_id");
|
||||||
|
|
||||||
|
b.Property<decimal?>("score1");
|
||||||
|
|
||||||
|
b.Property<decimal?>("score2");
|
||||||
|
|
||||||
|
b.Property<int?>("supervisor1_id");
|
||||||
|
|
||||||
|
b.Property<int?>("supervisor2_id");
|
||||||
|
|
||||||
|
b.Property<DateTime>("updated");
|
||||||
|
|
||||||
|
b.HasKey("id");
|
||||||
|
|
||||||
|
b.HasIndex("evaluation_group_id");
|
||||||
|
|
||||||
|
b.HasIndex("performance_plan_id");
|
||||||
|
|
||||||
|
b.ToTable("eva_create_evaluation");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("TodoAPI2.Models.eva_create_evaluation_detailEntity", b =>
|
||||||
|
{
|
||||||
|
b.Property<int>("id");
|
||||||
|
|
||||||
|
b.Property<decimal?>("Final_summary_chief");
|
||||||
|
|
||||||
|
b.Property<decimal?>("Final_summary_competency_chief");
|
||||||
|
|
||||||
|
b.Property<decimal?>("Final_summary_competency_supervisor");
|
||||||
|
|
||||||
|
b.Property<decimal?>("Final_summary_supervisor");
|
||||||
|
|
||||||
|
b.Property<decimal?>("achievement_chief");
|
||||||
|
|
||||||
|
b.Property<decimal?>("achievement_supervisor");
|
||||||
|
|
||||||
|
b.Property<int?>("chief");
|
||||||
|
|
||||||
|
b.Property<decimal?>("competency_chief");
|
||||||
|
|
||||||
|
b.Property<decimal?>("competency_supervisor");
|
||||||
|
|
||||||
|
b.Property<int?>("create_evaluation_id");
|
||||||
|
|
||||||
|
b.Property<DateTime>("created");
|
||||||
|
|
||||||
|
b.Property<int?>("employee_id");
|
||||||
|
|
||||||
|
b.Property<bool>("isActive");
|
||||||
|
|
||||||
|
b.Property<string>("level_score_chief")
|
||||||
|
.HasMaxLength(255);
|
||||||
|
|
||||||
|
b.Property<string>("level_score_supervisor")
|
||||||
|
.HasMaxLength(255);
|
||||||
|
|
||||||
|
b.Property<decimal?>("score_chief");
|
||||||
|
|
||||||
|
b.Property<decimal?>("score_supervisor");
|
||||||
|
|
||||||
|
b.Property<string>("status_chief")
|
||||||
|
.HasMaxLength(1);
|
||||||
|
|
||||||
|
b.Property<DateTime?>("status_chief_click_date");
|
||||||
|
|
||||||
|
b.Property<string>("status_self")
|
||||||
|
.HasMaxLength(1);
|
||||||
|
|
||||||
|
b.Property<DateTime?>("status_self_click_date");
|
||||||
|
|
||||||
|
b.Property<string>("status_supervisor")
|
||||||
|
.HasMaxLength(1);
|
||||||
|
|
||||||
|
b.Property<string>("status_supervisor1A")
|
||||||
|
.HasMaxLength(1);
|
||||||
|
|
||||||
|
b.Property<DateTime?>("status_supervisor1A_click_date");
|
||||||
|
|
||||||
|
b.Property<string>("status_supervisor2A")
|
||||||
|
.HasMaxLength(1);
|
||||||
|
|
||||||
|
b.Property<DateTime?>("status_supervisor2A_click_date");
|
||||||
|
|
||||||
|
b.Property<DateTime?>("status_supervisor_click_date");
|
||||||
|
|
||||||
|
b.Property<int?>("supervisor1");
|
||||||
|
|
||||||
|
b.Property<int?>("supervisor1A");
|
||||||
|
|
||||||
|
b.Property<DateTime?>("supervisor1A_date");
|
||||||
|
|
||||||
|
b.Property<string>("supervisor1A_remark")
|
||||||
|
.HasMaxLength(1000);
|
||||||
|
|
||||||
|
b.Property<string>("supervisor1A_result")
|
||||||
|
.HasMaxLength(1);
|
||||||
|
|
||||||
|
b.Property<DateTime?>("supervisor1_date");
|
||||||
|
|
||||||
|
b.Property<string>("supervisor1_remark")
|
||||||
|
.HasMaxLength(1000);
|
||||||
|
|
||||||
|
b.Property<string>("supervisor1_result")
|
||||||
|
.HasMaxLength(1);
|
||||||
|
|
||||||
|
b.Property<int?>("supervisor2");
|
||||||
|
|
||||||
|
b.Property<int?>("supervisor2A");
|
||||||
|
|
||||||
|
b.Property<DateTime?>("supervisor2A_date");
|
||||||
|
|
||||||
|
b.Property<string>("supervisor2A_remark")
|
||||||
|
.HasMaxLength(1000);
|
||||||
|
|
||||||
|
b.Property<string>("supervisor2A_result")
|
||||||
|
.HasMaxLength(1);
|
||||||
|
|
||||||
|
b.Property<DateTime?>("supervisor2_date");
|
||||||
|
|
||||||
|
b.Property<string>("supervisor2_remark")
|
||||||
|
.HasMaxLength(1000);
|
||||||
|
|
||||||
|
b.Property<string>("supervisor2_result")
|
||||||
|
.HasMaxLength(1);
|
||||||
|
|
||||||
|
b.Property<decimal?>("total_summary_chief");
|
||||||
|
|
||||||
|
b.Property<decimal?>("total_summary_competency_chief");
|
||||||
|
|
||||||
|
b.Property<decimal?>("total_summary_competency_supervisor");
|
||||||
|
|
||||||
|
b.Property<decimal?>("total_summary_supervisor");
|
||||||
|
|
||||||
|
b.Property<DateTime>("updated");
|
||||||
|
|
||||||
|
b.HasKey("id");
|
||||||
|
|
||||||
|
b.ToTable("eva_create_evaluation_detail");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("TodoAPI2.Models.eva_evaluation_achievementEntity", b =>
|
||||||
|
{
|
||||||
|
b.Property<int>("id");
|
||||||
|
|
||||||
|
b.Property<string>("achievement")
|
||||||
|
.HasMaxLength(1000);
|
||||||
|
|
||||||
|
b.Property<int?>("create_evaluation_detail_id");
|
||||||
|
|
||||||
|
b.Property<DateTime>("created");
|
||||||
|
|
||||||
|
b.Property<bool>("isActive");
|
||||||
|
|
||||||
|
b.Property<decimal?>("score");
|
||||||
|
|
||||||
|
b.Property<decimal?>("score2");
|
||||||
|
|
||||||
|
b.Property<decimal?>("sumary");
|
||||||
|
|
||||||
|
b.Property<decimal?>("sumary2");
|
||||||
|
|
||||||
|
b.Property<string>("target_score1")
|
||||||
|
.HasMaxLength(255);
|
||||||
|
|
||||||
|
b.Property<string>("target_score2")
|
||||||
|
.HasMaxLength(255);
|
||||||
|
|
||||||
|
b.Property<string>("target_score3")
|
||||||
|
.HasMaxLength(255);
|
||||||
|
|
||||||
|
b.Property<string>("target_score4")
|
||||||
|
.HasMaxLength(255);
|
||||||
|
|
||||||
|
b.Property<string>("target_score5")
|
||||||
|
.HasMaxLength(255);
|
||||||
|
|
||||||
|
b.Property<string>("thefile")
|
||||||
|
.HasMaxLength(1000);
|
||||||
|
|
||||||
|
b.Property<DateTime>("updated");
|
||||||
|
|
||||||
|
b.Property<decimal?>("weight");
|
||||||
|
|
||||||
|
b.HasKey("id");
|
||||||
|
|
||||||
|
b.HasIndex("create_evaluation_detail_id");
|
||||||
|
|
||||||
|
b.ToTable("eva_evaluation_achievement");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("TodoAPI2.Models.eva_evaluation_behaviorEntity", b =>
|
||||||
|
{
|
||||||
|
b.Property<int>("id");
|
||||||
|
|
||||||
|
b.Property<string>("behavior")
|
||||||
|
.HasMaxLength(1000);
|
||||||
|
|
||||||
|
b.Property<int?>("create_evaluation_detail_id");
|
||||||
|
|
||||||
|
b.Property<DateTime>("created");
|
||||||
|
|
||||||
|
b.Property<bool>("isActive");
|
||||||
|
|
||||||
|
b.Property<decimal?>("score");
|
||||||
|
|
||||||
|
b.Property<decimal?>("score2");
|
||||||
|
|
||||||
|
b.Property<decimal?>("sumary");
|
||||||
|
|
||||||
|
b.Property<decimal?>("sumary2");
|
||||||
|
|
||||||
|
b.Property<string>("target_score1")
|
||||||
|
.HasMaxLength(255);
|
||||||
|
|
||||||
|
b.Property<string>("target_score2")
|
||||||
|
.HasMaxLength(255);
|
||||||
|
|
||||||
|
b.Property<string>("target_score3")
|
||||||
|
.HasMaxLength(255);
|
||||||
|
|
||||||
|
b.Property<string>("target_score4")
|
||||||
|
.HasMaxLength(255);
|
||||||
|
|
||||||
|
b.Property<string>("target_score5")
|
||||||
|
.HasMaxLength(255);
|
||||||
|
|
||||||
|
b.Property<DateTime>("updated");
|
||||||
|
|
||||||
|
b.Property<decimal?>("weight");
|
||||||
|
|
||||||
|
b.HasKey("id");
|
||||||
|
|
||||||
|
b.HasIndex("create_evaluation_detail_id");
|
||||||
|
|
||||||
|
b.ToTable("eva_evaluation_behavior");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("TodoAPI2.Models.eva_evaluation_groupEntity", b =>
|
||||||
|
{
|
||||||
|
b.Property<Guid>("id")
|
||||||
|
.ValueGeneratedOnAdd();
|
||||||
|
|
||||||
|
b.Property<string>("code")
|
||||||
|
.HasMaxLength(255);
|
||||||
|
|
||||||
|
b.Property<DateTime>("created");
|
||||||
|
|
||||||
|
b.Property<bool>("isActive");
|
||||||
|
|
||||||
|
b.Property<string>("thegroup")
|
||||||
|
.HasMaxLength(255);
|
||||||
|
|
||||||
|
b.Property<DateTime>("updated");
|
||||||
|
|
||||||
|
b.HasKey("id");
|
||||||
|
|
||||||
|
b.ToTable("eva_evaluation_group");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("TodoAPI2.Models.eva_evaluation_group_detailEntity", b =>
|
||||||
|
{
|
||||||
|
b.Property<Guid>("id")
|
||||||
|
.ValueGeneratedOnAdd();
|
||||||
|
|
||||||
|
b.Property<DateTime>("created");
|
||||||
|
|
||||||
|
b.Property<int?>("employee_id");
|
||||||
|
|
||||||
|
b.Property<Guid?>("evaluation_group_id");
|
||||||
|
|
||||||
|
b.Property<bool>("isActive");
|
||||||
|
|
||||||
|
b.Property<DateTime>("updated");
|
||||||
|
|
||||||
|
b.HasKey("id");
|
||||||
|
|
||||||
|
b.HasIndex("evaluation_group_id");
|
||||||
|
|
||||||
|
b.ToTable("eva_evaluation_group_detail");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("TodoAPI2.Models.eva_idp_planEntity", b =>
|
||||||
|
{
|
||||||
|
b.Property<int>("id");
|
||||||
|
|
||||||
|
b.Property<int?>("create_evaluation_detail_id");
|
||||||
|
|
||||||
|
b.Property<DateTime>("created");
|
||||||
|
|
||||||
|
b.Property<string>("develop")
|
||||||
|
.HasMaxLength(1000);
|
||||||
|
|
||||||
|
b.Property<string>("development_method")
|
||||||
|
.HasMaxLength(1000);
|
||||||
|
|
||||||
|
b.Property<DateTime?>("end_date");
|
||||||
|
|
||||||
|
b.Property<bool>("isActive");
|
||||||
|
|
||||||
|
b.Property<DateTime?>("start_date");
|
||||||
|
|
||||||
|
b.Property<DateTime>("updated");
|
||||||
|
|
||||||
|
b.HasKey("id");
|
||||||
|
|
||||||
|
b.ToTable("eva_idp_plan");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("TodoAPI2.Models.eva_level_scoreEntity", b =>
|
||||||
|
{
|
||||||
|
b.Property<Guid>("id")
|
||||||
|
.ValueGeneratedOnAdd();
|
||||||
|
|
||||||
|
b.Property<string>("code")
|
||||||
|
.HasMaxLength(255);
|
||||||
|
|
||||||
|
b.Property<DateTime>("created");
|
||||||
|
|
||||||
|
b.Property<string>("detail")
|
||||||
|
.HasMaxLength(1000);
|
||||||
|
|
||||||
|
b.Property<bool>("isActive");
|
||||||
|
|
||||||
|
b.Property<decimal?>("max_score");
|
||||||
|
|
||||||
|
b.Property<decimal?>("min_score");
|
||||||
|
|
||||||
|
b.Property<DateTime>("updated");
|
||||||
|
|
||||||
|
b.HasKey("id");
|
||||||
|
|
||||||
|
b.ToTable("eva_level_score");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("TodoAPI2.Models.eva_performance_planEntity", b =>
|
||||||
|
{
|
||||||
|
b.Property<Guid>("id")
|
||||||
|
.ValueGeneratedOnAdd();
|
||||||
|
|
||||||
|
b.Property<DateTime>("created");
|
||||||
|
|
||||||
|
b.Property<int?>("fiscal_year");
|
||||||
|
|
||||||
|
b.Property<bool>("isActive");
|
||||||
|
|
||||||
|
b.Property<int?>("theTime");
|
||||||
|
|
||||||
|
b.Property<DateTime>("updated");
|
||||||
|
|
||||||
|
b.HasKey("id");
|
||||||
|
|
||||||
|
b.ToTable("eva_performance_plan");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("TodoAPI2.Models.eva_performance_plan_detailEntity", b =>
|
||||||
|
{
|
||||||
|
b.Property<Guid>("id")
|
||||||
|
.ValueGeneratedOnAdd();
|
||||||
|
|
||||||
|
b.Property<DateTime>("created");
|
||||||
|
|
||||||
|
b.Property<DateTime?>("end_date");
|
||||||
|
|
||||||
|
b.Property<bool>("isActive");
|
||||||
|
|
||||||
|
b.Property<int?>("list_no");
|
||||||
|
|
||||||
|
b.Property<Guid?>("performance_plan_id");
|
||||||
|
|
||||||
|
b.Property<string>("remark")
|
||||||
|
.HasMaxLength(1000);
|
||||||
|
|
||||||
|
b.Property<DateTime?>("start_date");
|
||||||
|
|
||||||
|
b.Property<string>("step")
|
||||||
|
.HasMaxLength(1000);
|
||||||
|
|
||||||
|
b.Property<DateTime>("updated");
|
||||||
|
|
||||||
|
b.HasKey("id");
|
||||||
|
|
||||||
|
b.HasIndex("performance_plan_id");
|
||||||
|
|
||||||
|
b.ToTable("eva_performance_plan_detail");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("TodoAPI2.Models.eva_promoted_percentageEntity", b =>
|
||||||
|
{
|
||||||
|
b.Property<Guid>("id")
|
||||||
|
.ValueGeneratedOnAdd();
|
||||||
|
|
||||||
|
b.Property<string>("code")
|
||||||
|
.HasMaxLength(255);
|
||||||
|
|
||||||
|
b.Property<DateTime>("created");
|
||||||
|
|
||||||
|
b.Property<string>("detail")
|
||||||
|
.HasMaxLength(1000);
|
||||||
|
|
||||||
|
b.Property<bool>("isActive");
|
||||||
|
|
||||||
|
b.Property<Guid?>("level_score_id");
|
||||||
|
|
||||||
|
b.Property<decimal?>("max_score");
|
||||||
|
|
||||||
|
b.Property<decimal?>("min_score");
|
||||||
|
|
||||||
|
b.Property<decimal?>("promoted_percentage");
|
||||||
|
|
||||||
|
b.Property<DateTime>("updated");
|
||||||
|
|
||||||
|
b.HasKey("id");
|
||||||
|
|
||||||
|
b.HasIndex("level_score_id");
|
||||||
|
|
||||||
|
b.ToTable("eva_promoted_percentage");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("TodoAPI2.Models.eva_salary_cylinderEntity", b =>
|
||||||
|
{
|
||||||
|
b.Property<int>("id");
|
||||||
|
|
||||||
|
b.Property<decimal?>("cost_living");
|
||||||
|
|
||||||
|
b.Property<DateTime>("created");
|
||||||
|
|
||||||
|
b.Property<bool>("isActive");
|
||||||
|
|
||||||
|
b.Property<decimal?>("middle");
|
||||||
|
|
||||||
|
b.Property<int?>("position_level");
|
||||||
|
|
||||||
|
b.Property<int?>("position_type");
|
||||||
|
|
||||||
|
b.Property<decimal?>("temporary_min");
|
||||||
|
|
||||||
|
b.Property<decimal?>("themax");
|
||||||
|
|
||||||
|
b.Property<decimal?>("themin");
|
||||||
|
|
||||||
|
b.Property<DateTime>("updated");
|
||||||
|
|
||||||
|
b.HasKey("id");
|
||||||
|
|
||||||
|
b.ToTable("eva_salary_cylinder");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("TodoAPI2.Models.eva_adjust_postponementEntity", b =>
|
||||||
|
{
|
||||||
|
b.HasOne("TodoAPI2.Models.eva_create_evaluationEntity", "eva_create_evaluation")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("create_evaluation_id");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("TodoAPI2.Models.eva_adjust_postponement_detailEntity", b =>
|
||||||
|
{
|
||||||
|
b.HasOne("TodoAPI2.Models.eva_adjust_postponementEntity", "eva_adjust_postponement")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("adjust_postponement_id");
|
||||||
|
|
||||||
|
b.HasOne("TodoAPI2.Models.eva_adjust_postponementEntity", "eva_adjust_postponement_quota")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("adjust_postponement_quota_id")
|
||||||
|
.HasConstraintName("FK_eva_adjust_postponement_detail_eva_adjust_postponement_adj~1");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("TodoAPI2.Models.eva_create_evaluationEntity", b =>
|
||||||
|
{
|
||||||
|
b.HasOne("TodoAPI2.Models.eva_evaluation_groupEntity", "eva_evaluation_group")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("evaluation_group_id");
|
||||||
|
|
||||||
|
b.HasOne("TodoAPI2.Models.eva_performance_planEntity", "eva_performance_plan")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("performance_plan_id");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("TodoAPI2.Models.eva_evaluation_achievementEntity", b =>
|
||||||
|
{
|
||||||
|
b.HasOne("TodoAPI2.Models.eva_create_evaluation_detailEntity", "eva_create_evaluation_detail")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("create_evaluation_detail_id");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("TodoAPI2.Models.eva_evaluation_behaviorEntity", b =>
|
||||||
|
{
|
||||||
|
b.HasOne("TodoAPI2.Models.eva_create_evaluation_detailEntity", "eva_create_evaluation_detail")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("create_evaluation_detail_id");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("TodoAPI2.Models.eva_evaluation_group_detailEntity", b =>
|
||||||
|
{
|
||||||
|
b.HasOne("TodoAPI2.Models.eva_evaluation_groupEntity", "eva_evaluation_group")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("evaluation_group_id");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("TodoAPI2.Models.eva_performance_plan_detailEntity", b =>
|
||||||
|
{
|
||||||
|
b.HasOne("TodoAPI2.Models.eva_performance_planEntity", "eva_performance_plan")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("performance_plan_id");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("TodoAPI2.Models.eva_promoted_percentageEntity", b =>
|
||||||
|
{
|
||||||
|
b.HasOne("TodoAPI2.Models.eva_level_scoreEntity", "eva_level_score")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("level_score_id");
|
||||||
|
});
|
||||||
|
#pragma warning restore 612, 618
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
59
Migrations/25630812141704_AddStatusDateColumn.cs
Normal file
59
Migrations/25630812141704_AddStatusDateColumn.cs
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
using System;
|
||||||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
|
namespace tb320eva.Migrations
|
||||||
|
{
|
||||||
|
public partial class AddStatusDateColumn : Migration
|
||||||
|
{
|
||||||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
migrationBuilder.AddColumn<DateTime>(
|
||||||
|
name: "status_chief_click_date",
|
||||||
|
table: "eva_create_evaluation_detail",
|
||||||
|
nullable: true);
|
||||||
|
|
||||||
|
migrationBuilder.AddColumn<DateTime>(
|
||||||
|
name: "status_self_click_date",
|
||||||
|
table: "eva_create_evaluation_detail",
|
||||||
|
nullable: true);
|
||||||
|
|
||||||
|
migrationBuilder.AddColumn<DateTime>(
|
||||||
|
name: "status_supervisor1A_click_date",
|
||||||
|
table: "eva_create_evaluation_detail",
|
||||||
|
nullable: true);
|
||||||
|
|
||||||
|
migrationBuilder.AddColumn<DateTime>(
|
||||||
|
name: "status_supervisor2A_click_date",
|
||||||
|
table: "eva_create_evaluation_detail",
|
||||||
|
nullable: true);
|
||||||
|
|
||||||
|
migrationBuilder.AddColumn<DateTime>(
|
||||||
|
name: "status_supervisor_click_date",
|
||||||
|
table: "eva_create_evaluation_detail",
|
||||||
|
nullable: true);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
migrationBuilder.DropColumn(
|
||||||
|
name: "status_chief_click_date",
|
||||||
|
table: "eva_create_evaluation_detail");
|
||||||
|
|
||||||
|
migrationBuilder.DropColumn(
|
||||||
|
name: "status_self_click_date",
|
||||||
|
table: "eva_create_evaluation_detail");
|
||||||
|
|
||||||
|
migrationBuilder.DropColumn(
|
||||||
|
name: "status_supervisor1A_click_date",
|
||||||
|
table: "eva_create_evaluation_detail");
|
||||||
|
|
||||||
|
migrationBuilder.DropColumn(
|
||||||
|
name: "status_supervisor2A_click_date",
|
||||||
|
table: "eva_create_evaluation_detail");
|
||||||
|
|
||||||
|
migrationBuilder.DropColumn(
|
||||||
|
name: "status_supervisor_click_date",
|
||||||
|
table: "eva_create_evaluation_detail");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -181,18 +181,28 @@ namespace tb320eva.Migrations
|
|||||||
b.Property<string>("status_chief")
|
b.Property<string>("status_chief")
|
||||||
.HasMaxLength(1);
|
.HasMaxLength(1);
|
||||||
|
|
||||||
|
b.Property<DateTime?>("status_chief_click_date");
|
||||||
|
|
||||||
b.Property<string>("status_self")
|
b.Property<string>("status_self")
|
||||||
.HasMaxLength(1);
|
.HasMaxLength(1);
|
||||||
|
|
||||||
|
b.Property<DateTime?>("status_self_click_date");
|
||||||
|
|
||||||
b.Property<string>("status_supervisor")
|
b.Property<string>("status_supervisor")
|
||||||
.HasMaxLength(1);
|
.HasMaxLength(1);
|
||||||
|
|
||||||
b.Property<string>("status_supervisor1A")
|
b.Property<string>("status_supervisor1A")
|
||||||
.HasMaxLength(1);
|
.HasMaxLength(1);
|
||||||
|
|
||||||
|
b.Property<DateTime?>("status_supervisor1A_click_date");
|
||||||
|
|
||||||
b.Property<string>("status_supervisor2A")
|
b.Property<string>("status_supervisor2A")
|
||||||
.HasMaxLength(1);
|
.HasMaxLength(1);
|
||||||
|
|
||||||
|
b.Property<DateTime?>("status_supervisor2A_click_date");
|
||||||
|
|
||||||
|
b.Property<DateTime?>("status_supervisor_click_date");
|
||||||
|
|
||||||
b.Property<int?>("supervisor1");
|
b.Property<int?>("supervisor1");
|
||||||
|
|
||||||
b.Property<int?>("supervisor1A");
|
b.Property<int?>("supervisor1A");
|
||||||
|
|||||||
@@ -110,5 +110,17 @@ namespace TodoAPI2.Models
|
|||||||
|
|
||||||
[MaxLength(1)]
|
[MaxLength(1)]
|
||||||
public string status_supervisor2A { get; set; }
|
public string status_supervisor2A { get; set; }
|
||||||
|
|
||||||
|
//existingEntity.status_self = model.status_self;
|
||||||
|
// existingEntity.status_chief = model.status_chief;
|
||||||
|
// existingEntity.status_supervisor = model.status_supervisor;
|
||||||
|
// existingEntity.status_supervisor1A = model.status_supervisor1A;
|
||||||
|
// existingEntity.status_supervisor2A = model.status_supervisor2A;
|
||||||
|
|
||||||
|
public DateTime? status_self_click_date { get; set; }
|
||||||
|
public DateTime? status_chief_click_date { get; set; }
|
||||||
|
public DateTime? status_supervisor_click_date { get; set; }
|
||||||
|
public DateTime? status_supervisor1A_click_date { get; set; }
|
||||||
|
public DateTime? status_supervisor2A_click_date { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -275,6 +275,12 @@ namespace TodoAPI2.Models
|
|||||||
fk_eva_create_evaluationResult10.supervisor1_id,
|
fk_eva_create_evaluationResult10.supervisor1_id,
|
||||||
fk_eva_create_evaluationResult10.supervisor2_id, path),
|
fk_eva_create_evaluationResult10.supervisor2_id, path),
|
||||||
|
|
||||||
|
status_self_click_date = m_eva_create_evaluation_detail_process.status_self_click_date,
|
||||||
|
status_chief_click_date = m_eva_create_evaluation_detail_process.status_chief_click_date,
|
||||||
|
status_supervisor_click_date = m_eva_create_evaluation_detail_process.status_supervisor_click_date,
|
||||||
|
status_supervisor1A_click_date = m_eva_create_evaluation_detail_process.status_supervisor1A_click_date,
|
||||||
|
status_supervisor2A_click_date = m_eva_create_evaluation_detail_process.status_supervisor2A_click_date,
|
||||||
|
|
||||||
isActive = m_eva_create_evaluation_detail_process.isActive,
|
isActive = m_eva_create_evaluation_detail_process.isActive,
|
||||||
Created = m_eva_create_evaluation_detail_process.created,
|
Created = m_eva_create_evaluation_detail_process.created,
|
||||||
Updated = m_eva_create_evaluation_detail_process.updated
|
Updated = m_eva_create_evaluation_detail_process.updated
|
||||||
|
|||||||
@@ -60,6 +60,34 @@ namespace TodoAPI2.Models
|
|||||||
public string role_code { get; set; }
|
public string role_code { get; set; }
|
||||||
|
|
||||||
public string remark_hrm_work_record { get; set; }
|
public string remark_hrm_work_record { get; set; }
|
||||||
|
|
||||||
|
public DateTime? status_self_click_date { get; set; }
|
||||||
|
public DateTime? status_chief_click_date { get; set; }
|
||||||
|
public DateTime? status_supervisor_click_date { get; set; }
|
||||||
|
public DateTime? status_supervisor1A_click_date { get; set; }
|
||||||
|
public DateTime? status_supervisor2A_click_date { get; set; }
|
||||||
|
|
||||||
|
public string txt_status_self { get { return getStatusText(status_self) + MyHelper.GetDateStringForReport(status_self_click_date); } }
|
||||||
|
public string txt_status_chief { get { return getStatusText(status_chief) + MyHelper.GetDateStringForReport(status_chief_click_date); } }
|
||||||
|
public string txt_status_supervisor { get { return getStatusText(status_supervisor) + MyHelper.GetDateStringForReport(status_supervisor_click_date); } }
|
||||||
|
public string txt_status_supervisor1A { get { return getStatusText(status_supervisor1A) + MyHelper.GetDateStringForReport(status_supervisor1A_click_date); } }
|
||||||
|
public string txt_status_supervisor2A { get { return getStatusText(status_supervisor2A) + MyHelper.GetDateStringForReport(status_supervisor2A_click_date); } }
|
||||||
|
|
||||||
|
private string getStatusText(string s)
|
||||||
|
{
|
||||||
|
if (!string.IsNullOrEmpty(s))
|
||||||
|
{
|
||||||
|
if(s=="Y")
|
||||||
|
{
|
||||||
|
return "ส่งแบบประเมินแล้ว ";
|
||||||
|
}
|
||||||
|
else if (s == "N")
|
||||||
|
{
|
||||||
|
return "ตีกลับ ";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return " ";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -28,6 +28,8 @@ namespace TodoAPI2.Models
|
|||||||
|
|
||||||
public string status_supervisor2A { get; set; }
|
public string status_supervisor2A { get; set; }
|
||||||
|
|
||||||
|
public string status_mode { get; set; }
|
||||||
|
|
||||||
public string active_mode { get; set; }
|
public string active_mode { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -105,6 +105,12 @@ namespace TodoAPI2.Models
|
|||||||
status_supervisor1A = m_eva_create_evaluation_detail_status.status_supervisor1A,
|
status_supervisor1A = m_eva_create_evaluation_detail_status.status_supervisor1A,
|
||||||
status_supervisor2A = m_eva_create_evaluation_detail_status.status_supervisor2A,
|
status_supervisor2A = m_eva_create_evaluation_detail_status.status_supervisor2A,
|
||||||
|
|
||||||
|
status_self_click_date = m_eva_create_evaluation_detail_status.status_self_click_date,
|
||||||
|
status_chief_click_date = m_eva_create_evaluation_detail_status.status_chief_click_date,
|
||||||
|
status_supervisor_click_date = m_eva_create_evaluation_detail_status.status_supervisor_click_date,
|
||||||
|
status_supervisor1A_click_date = m_eva_create_evaluation_detail_status.status_supervisor1A_click_date,
|
||||||
|
status_supervisor2A_click_date = m_eva_create_evaluation_detail_status.status_supervisor2A_click_date,
|
||||||
|
|
||||||
isActive = m_eva_create_evaluation_detail_status.isActive,
|
isActive = m_eva_create_evaluation_detail_status.isActive,
|
||||||
Created = m_eva_create_evaluation_detail_status.created,
|
Created = m_eva_create_evaluation_detail_status.created,
|
||||||
Updated = m_eva_create_evaluation_detail_status.updated
|
Updated = m_eva_create_evaluation_detail_status.updated
|
||||||
@@ -168,6 +174,47 @@ namespace TodoAPI2.Models
|
|||||||
if(existingEntity.status_chief == "Y") existingEntity.status_supervisor = existingEntity.status_chief;
|
if(existingEntity.status_chief == "Y") existingEntity.status_supervisor = existingEntity.status_chief;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (model.status_mode == "next0")
|
||||||
|
{
|
||||||
|
existingEntity.status_self_click_date = MyHelper.RemoveTimeFromDate(DateTime.Now);
|
||||||
|
}
|
||||||
|
else if (model.status_mode == "next1")
|
||||||
|
{
|
||||||
|
existingEntity.status_chief_click_date = MyHelper.RemoveTimeFromDate(DateTime.Now);
|
||||||
|
}
|
||||||
|
else if (model.status_mode == "back1")
|
||||||
|
{
|
||||||
|
existingEntity.status_chief_click_date = MyHelper.RemoveTimeFromDate(DateTime.Now);
|
||||||
|
existingEntity.status_self_click_date = null;
|
||||||
|
}
|
||||||
|
else if (model.status_mode == "next2")
|
||||||
|
{
|
||||||
|
existingEntity.status_supervisor_click_date = MyHelper.RemoveTimeFromDate(DateTime.Now);
|
||||||
|
}
|
||||||
|
else if (model.status_mode == "back2")
|
||||||
|
{
|
||||||
|
existingEntity.status_supervisor_click_date = MyHelper.RemoveTimeFromDate(DateTime.Now);
|
||||||
|
existingEntity.status_chief_click_date = null;
|
||||||
|
}
|
||||||
|
else if (model.status_mode == "next3")
|
||||||
|
{
|
||||||
|
existingEntity.status_supervisor1A_click_date = MyHelper.RemoveTimeFromDate(DateTime.Now);
|
||||||
|
}
|
||||||
|
else if (model.status_mode == "back3")
|
||||||
|
{
|
||||||
|
existingEntity.status_supervisor1A_click_date = MyHelper.RemoveTimeFromDate(DateTime.Now);
|
||||||
|
existingEntity.status_supervisor_click_date = null;
|
||||||
|
}
|
||||||
|
else if (model.status_mode == "next4")
|
||||||
|
{
|
||||||
|
existingEntity.status_supervisor2A_click_date = MyHelper.RemoveTimeFromDate(DateTime.Now);
|
||||||
|
}
|
||||||
|
else if (model.status_mode == "back4")
|
||||||
|
{
|
||||||
|
existingEntity.status_supervisor2A_click_date = MyHelper.RemoveTimeFromDate(DateTime.Now);
|
||||||
|
existingEntity.status_supervisor1A_click_date = null;
|
||||||
|
}
|
||||||
|
|
||||||
var updated = _repository.Update(id, existingEntity);
|
var updated = _repository.Update(id, existingEntity);
|
||||||
return Get(updated.id);
|
return Get(updated.id);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -25,6 +25,18 @@ namespace TodoAPI2.Models
|
|||||||
public string status_supervisor1A { get; set; }
|
public string status_supervisor1A { get; set; }
|
||||||
|
|
||||||
public string status_supervisor2A { get; set; }
|
public string status_supervisor2A { get; set; }
|
||||||
|
|
||||||
|
public DateTime? status_self_click_date { get; set; }
|
||||||
|
public DateTime? status_chief_click_date { get; set; }
|
||||||
|
public DateTime? status_supervisor_click_date { get; set; }
|
||||||
|
public DateTime? status_supervisor1A_click_date { get; set; }
|
||||||
|
public DateTime? status_supervisor2A_click_date { get; set; }
|
||||||
|
|
||||||
|
public string txt_status_self_click_date { get { return MyHelper.GetDateStringForReport(status_self_click_date); } }
|
||||||
|
public string txt_status_chief_click_date { get { return MyHelper.GetDateStringForReport(status_chief_click_date); } }
|
||||||
|
public string txt_status_supervisor_click_date { get { return MyHelper.GetDateStringForReport(status_supervisor_click_date); } }
|
||||||
|
public string txt_status_supervisor1A_click_date { get { return MyHelper.GetDateStringForReport(status_supervisor1A_click_date); } }
|
||||||
|
public string txt_status_supervisor2A_click_date { get { return MyHelper.GetDateStringForReport(status_supervisor2A_click_date); } }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -34,6 +34,15 @@ public class MyHelper
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static DateTime? RemoveTimeFromDate(DateTime? d)
|
||||||
|
{
|
||||||
|
if (d.HasValue)
|
||||||
|
{
|
||||||
|
return new DateTime(d.Value.Year, d.Value.Month, d.Value.Day);
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
public static string GetDateStringForReport(DateTime? date)
|
public static string GetDateStringForReport(DateTime? date)
|
||||||
{
|
{
|
||||||
if (date.HasValue)
|
if (date.HasValue)
|
||||||
|
|||||||
@@ -304,7 +304,7 @@
|
|||||||
<div class='row'>
|
<div class='row'>
|
||||||
<div class="form-group col-md-6">
|
<div class="form-group col-md-6">
|
||||||
<label id="lab_eva_create_evaluation_detail_review01_supervisor1_date" for="eva_create_evaluation_detail_review01_supervisor1_date">วันที่ประเมิน</label>
|
<label id="lab_eva_create_evaluation_detail_review01_supervisor1_date" for="eva_create_evaluation_detail_review01_supervisor1_date">วันที่ประเมิน</label>
|
||||||
<input disabled class="form-control" type="text" id="eva_create_evaluation_detail_review01_supervisor1_date" data-provide="datepicker" data-date-language="th-th" iLabel="วันที่ประเมิน" iRequire="false" iGroup="eva_create_evaluation_detail_review01" />
|
<input class="form-control" type="text" id="eva_create_evaluation_detail_review01_supervisor1_date" data-provide="datepicker" data-date-language="th-th" iLabel="วันที่ประเมิน" iRequire="false" iGroup="eva_create_evaluation_detail_review01" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class='row'>
|
<div class='row'>
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
{
|
{
|
||||||
"connectionStrings": {
|
"connectionStrings": {
|
||||||
//"mainDBConnectionString": "Server=192.168.1.34;Port=32432;Database=tb320_hr_site2;User ID=postgres;Password=ZdPr0jects;",
|
"mainDBConnectionString": "Server=192.168.1.34;Port=32432;Database=tb320_hr_site2;User ID=postgres;Password=ZdPr0jects;",
|
||||||
//"externalDBConnectionString": "Server=192.168.1.34;Port=32432;Database=tb320_hr_site2;User ID=postgres;Password=ZdPr0jects;"
|
"externalDBConnectionString": "Server=192.168.1.34;Port=32432;Database=tb320_hr_site2;User ID=postgres;Password=ZdPr0jects;"
|
||||||
"mainDBConnectionString": "Server=192.168.2.233;Port=5432;Database=tb320_hr_site2;User ID=postgres;Password=project0*;",
|
//"mainDBConnectionString": "Server=192.168.2.233;Port=5432;Database=tb320_hr_site2;User ID=postgres;Password=project0*;",
|
||||||
"externalDBConnectionString": "Server=192.168.2.233;Port=5432;Database=tb320_hr_site2;User ID=postgres;Password=project0*;"
|
//"externalDBConnectionString": "Server=192.168.2.233;Port=5432;Database=tb320_hr_site2;User ID=postgres;Password=project0*;"
|
||||||
},
|
},
|
||||||
"IdentityServer": {
|
"IdentityServer": {
|
||||||
"url": "",
|
"url": "",
|
||||||
|
|||||||
@@ -195,11 +195,11 @@ var eva_create_evaluation_detail_process_setupTable = function (result) {
|
|||||||
{ "data": "employee_position_level" },
|
{ "data": "employee_position_level" },
|
||||||
{ "data": "org_id_external_linkage_external_name" },
|
{ "data": "org_id_external_linkage_external_name" },
|
||||||
{ "data": "role_desc" },
|
{ "data": "role_desc" },
|
||||||
{ "data": "status_self" },
|
{ "data": "txt_status_self" },
|
||||||
{ "data": "status_chief" },
|
{ "data": "txt_status_chief" },
|
||||||
{ "data": "status_supervisor" },
|
{ "data": "txt_status_supervisor" },
|
||||||
{ "data": "status_supervisor1A" },
|
{ "data": "txt_status_supervisor1A" },
|
||||||
{ "data": "status_supervisor2A" }
|
{ "data": "txt_status_supervisor2A" }
|
||||||
],
|
],
|
||||||
"columnDefs": [
|
"columnDefs": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -170,7 +170,7 @@ function setPageByRoleAndStatus(role_code, status_self, status_chief, status_sup
|
|||||||
$("#btna01").hide();
|
$("#btna01").hide();
|
||||||
$("#btna02").hide();
|
$("#btna02").hide();
|
||||||
$("#btna03").hide();
|
$("#btna03").hide();
|
||||||
$("#eva_create_evaluation_detail_review01_supervisor1_date").attr("disabled", true);
|
$("#eva_create_evaluation_detail_review01_supervisor1_date").prop('disabled', true);
|
||||||
$("#eva_create_evaluation_detail_review01_supervisor1_remark").attr("disabled", true);
|
$("#eva_create_evaluation_detail_review01_supervisor1_remark").attr("disabled", true);
|
||||||
|
|
||||||
if(role_code === "1"){ // ผู้ประเมิน
|
if(role_code === "1"){ // ผู้ประเมิน
|
||||||
@@ -181,7 +181,7 @@ function setPageByRoleAndStatus(role_code, status_self, status_chief, status_sup
|
|||||||
$("#btna01").show();
|
$("#btna01").show();
|
||||||
$("#btna02").show();
|
$("#btna02").show();
|
||||||
$("#btna03").show();
|
$("#btna03").show();
|
||||||
$("#eva_create_evaluation_detail_review01_supervisor1_date").attr("disabled", false);
|
$("#eva_create_evaluation_detail_review01_supervisor1_date").prop("disabled", false);
|
||||||
$("#eva_create_evaluation_detail_review01_supervisor1_remark").attr("disabled", false);
|
$("#eva_create_evaluation_detail_review01_supervisor1_remark").attr("disabled", false);
|
||||||
}else{
|
}else{
|
||||||
$("#thestatus").text("(ผู้รับการประเมิน ยังไม่ส่งแบบประเมิน คุณจึงไม่สามารถให้ความเห็นได้)");
|
$("#thestatus").text("(ผู้รับการประเมิน ยังไม่ส่งแบบประเมิน คุณจึงไม่สามารถให้ความเห็นได้)");
|
||||||
@@ -195,7 +195,7 @@ function setPageByRoleAndStatus(role_code, status_self, status_chief, status_sup
|
|||||||
$("#btna01").hide();
|
$("#btna01").hide();
|
||||||
$("#btna02").hide();
|
$("#btna02").hide();
|
||||||
$("#btna03").hide();
|
$("#btna03").hide();
|
||||||
$("#eva_create_evaluation_detail_review01_supervisor1_date").attr("disabled", true);
|
$("#eva_create_evaluation_detail_review01_supervisor1_date").prop("disabled", true);
|
||||||
$("#eva_create_evaluation_detail_review01_supervisor1_remark").attr("disabled", true);
|
$("#eva_create_evaluation_detail_review01_supervisor1_remark").attr("disabled", true);
|
||||||
}
|
}
|
||||||
}else{
|
}else{
|
||||||
|
|||||||
@@ -73,6 +73,8 @@ function eva_create_evaluation_detail_status_PutUpdate(a) {
|
|||||||
|
|
||||||
var data = eva_create_evaluation_detail_status_GetFromForm();
|
var data = eva_create_evaluation_detail_status_GetFromForm();
|
||||||
|
|
||||||
|
data.status_mode = a;
|
||||||
|
|
||||||
if(a == "next0"){
|
if(a == "next0"){
|
||||||
data.status_self = "Y";
|
data.status_self = "Y";
|
||||||
}
|
}
|
||||||
@@ -81,27 +83,27 @@ function eva_create_evaluation_detail_status_PutUpdate(a) {
|
|||||||
}
|
}
|
||||||
else if(a == "back1"){
|
else if(a == "back1"){
|
||||||
data.status_chief = "N";
|
data.status_chief = "N";
|
||||||
data.status_self = "N";
|
data.status_self = "";
|
||||||
}
|
}
|
||||||
else if(a == "next2"){
|
else if(a == "next2"){
|
||||||
data.status_supervisor = "Y";
|
data.status_supervisor = "Y";
|
||||||
}
|
}
|
||||||
else if(a == "back2"){
|
else if(a == "back2"){
|
||||||
data.status_supervisor = "N";
|
data.status_supervisor = "N";
|
||||||
data.status_chief = "N";
|
data.status_chief = "";
|
||||||
}
|
}
|
||||||
else if(a == "next3"){
|
else if(a == "next3"){
|
||||||
data.status_supervisor1A = "Y";
|
data.status_supervisor1A = "Y";
|
||||||
}
|
}
|
||||||
else if(a == "back3"){
|
else if(a == "back3"){
|
||||||
data.status_supervisor = "N";
|
data.status_supervisor = "";
|
||||||
data.status_supervisor1A = "N";
|
data.status_supervisor1A = "N";
|
||||||
}
|
}
|
||||||
else if(a == "next4"){
|
else if(a == "next4"){
|
||||||
data.status_supervisor2A = "Y";
|
data.status_supervisor2A = "Y";
|
||||||
}
|
}
|
||||||
else if(a == "back4"){
|
else if(a == "back4"){
|
||||||
data.status_supervisor1A = "N";
|
data.status_supervisor1A = "";
|
||||||
data.status_supervisor2A = "N";
|
data.status_supervisor2A = "N";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user