ปรับปรุงรายงานแบบประเมิน และแก้ไข bug จากผล unit test

This commit is contained in:
Nakorn Rientrakrunchai
2020-08-30 11:16:09 +07:00
parent a049fa6d8b
commit 2df3962e59
10 changed files with 160 additions and 96 deletions

View File

@@ -257,14 +257,14 @@ namespace TodoAPI2.Controllers
select x).FirstOrDefault(); select x).FirstOrDefault();
if(detail != null) if(detail != null)
{ {
i.total_summary_supervisor2A = detail.total_summary_supervisor2A; i.total_summary_supervisor2a = detail.total_summary_supervisor2A;
i.Final_summary_supervisor2A = detail.Final_summary_supervisor2A; i.final_summary_supervisor2a = detail.Final_summary_supervisor2A;
i.total_summary_competency_supervisor2A = detail.total_summary_competency_supervisor2A; i.total_summary_competency_supervisor2a = detail.total_summary_competency_supervisor2A;
i.Final_summary_competency_supervisor2A = detail.Final_summary_competency_supervisor2A; i.final_summary_competency_supervisor2a = detail.Final_summary_competency_supervisor2A;
i.achievement_supervisor2A = detail.achievement_supervisor2A; i.achievement_supervisor2a = detail.achievement_supervisor2A;
i.competency_supervisor2A = detail.competency_supervisor2A; i.competency_supervisor2a = detail.competency_supervisor2A;
i.score_supervisor2A = detail.score_supervisor2A; i.score_supervisor2a = detail.score_supervisor2A;
i.level_score_supervisor2A = detail.level_score_supervisor2A; i.level_score_supervisor2a = detail.level_score_supervisor2A;
} }
i.w1 = p.create_evaluation_score1; i.w1 = p.create_evaluation_score1;

View File

@@ -174,6 +174,17 @@ namespace TodoAPI2.Models
{ {
existingEntity.create_evaluation_id = model.create_evaluation_id; existingEntity.create_evaluation_id = model.create_evaluation_id;
//existingEntity.total_summary_supervisor = model.total_summary_supervisor;
//existingEntity.Final_summary_supervisor = model.Final_summary_supervisor;
//existingEntity.total_summary_competency_supervisor = model.total_summary_competency_supervisor;
//existingEntity.Final_summary_competency_supervisor = model.Final_summary_competency_supervisor;
//existingEntity.achievement_supervisor = model.achievement_supervisor;
//existingEntity.competency_supervisor = model.competency_supervisor;
//existingEntity.score_supervisor = model.score_supervisor;
//existingEntity.level_score_supervisor = model.level_score_supervisor;
if (model.who_update == "2")
{
existingEntity.total_summary_supervisor = model.total_summary_supervisor; existingEntity.total_summary_supervisor = model.total_summary_supervisor;
existingEntity.Final_summary_supervisor = model.Final_summary_supervisor; existingEntity.Final_summary_supervisor = model.Final_summary_supervisor;
existingEntity.total_summary_competency_supervisor = model.total_summary_competency_supervisor; existingEntity.total_summary_competency_supervisor = model.total_summary_competency_supervisor;
@@ -183,6 +194,46 @@ namespace TodoAPI2.Models
existingEntity.score_supervisor = model.score_supervisor; existingEntity.score_supervisor = model.score_supervisor;
existingEntity.level_score_supervisor = model.level_score_supervisor; existingEntity.level_score_supervisor = model.level_score_supervisor;
existingEntity.total_summary_supervisor1A = model.total_summary_supervisor;
existingEntity.Final_summary_supervisor1A = model.Final_summary_supervisor;
existingEntity.total_summary_competency_supervisor1A = model.total_summary_competency_supervisor;
existingEntity.Final_summary_competency_supervisor1A = model.Final_summary_competency_supervisor;
existingEntity.achievement_supervisor1A = model.achievement_supervisor;
existingEntity.competency_supervisor1A = model.competency_supervisor;
existingEntity.score_supervisor1A = model.score_supervisor;
existingEntity.level_score_supervisor1A = model.level_score_supervisor;
}
else if (model.who_update == "3")
{
existingEntity.total_summary_supervisor1A = model.total_summary_supervisor;
existingEntity.Final_summary_supervisor1A = model.Final_summary_supervisor;
existingEntity.total_summary_competency_supervisor1A = model.total_summary_competency_supervisor;
existingEntity.Final_summary_competency_supervisor1A = model.Final_summary_competency_supervisor;
existingEntity.achievement_supervisor1A = model.achievement_supervisor;
existingEntity.competency_supervisor1A = model.competency_supervisor;
existingEntity.score_supervisor1A = model.score_supervisor;
existingEntity.level_score_supervisor1A = model.level_score_supervisor;
existingEntity.total_summary_supervisor2A = model.total_summary_supervisor;
existingEntity.Final_summary_supervisor2A = model.Final_summary_supervisor;
existingEntity.total_summary_competency_supervisor2A = model.total_summary_competency_supervisor;
existingEntity.Final_summary_competency_supervisor2A = model.Final_summary_competency_supervisor;
existingEntity.achievement_supervisor2A = model.achievement_supervisor;
existingEntity.competency_supervisor2A = model.competency_supervisor;
existingEntity.score_supervisor2A = model.score_supervisor;
existingEntity.level_score_supervisor2A = model.level_score_supervisor;
}
else if (model.who_update == "4")
{
existingEntity.total_summary_supervisor2A = model.total_summary_supervisor;
existingEntity.Final_summary_supervisor2A = model.Final_summary_supervisor;
existingEntity.total_summary_competency_supervisor2A = model.total_summary_competency_supervisor;
existingEntity.Final_summary_competency_supervisor2A = model.Final_summary_competency_supervisor;
existingEntity.achievement_supervisor2A = model.achievement_supervisor;
existingEntity.competency_supervisor2A = model.competency_supervisor;
existingEntity.score_supervisor2A = model.score_supervisor;
existingEntity.level_score_supervisor2A = model.level_score_supervisor;
}
var updated = _repository.Update(id, existingEntity); var updated = _repository.Update(id, existingEntity);
return Get(updated.id); return Get(updated.id);

View File

@@ -40,6 +40,7 @@ namespace TodoAPI2.Models
{ {
temp += " ถึง " + MyHelper.GetDateStringForReport(end_date); temp += " ถึง " + MyHelper.GetDateStringForReport(end_date);
} }
period_text = temp;
} }
public void DoAfterInsertUpdate(DataContext context) public void DoAfterInsertUpdate(DataContext context)

View File

@@ -139,7 +139,7 @@ namespace TodoAPI2.Models
entity.id = GetNewPrimaryKey(); entity.id = GetNewPrimaryKey();
entity.SetAutoField(_repository.Context);
var inserted = _repository.Insert(entity); var inserted = _repository.Insert(entity);
return Get(inserted.id); return Get(inserted.id);
@@ -156,7 +156,7 @@ namespace TodoAPI2.Models
existingEntity.start_date = model.start_date; existingEntity.start_date = model.start_date;
existingEntity.end_date = model.end_date; existingEntity.end_date = model.end_date;
existingEntity.SetAutoField(_repository.Context);
var updated = _repository.Update(id, existingEntity); var updated = _repository.Update(id, existingEntity);
return Get(updated.id); return Get(updated.id);
} }
@@ -179,7 +179,7 @@ namespace TodoAPI2.Models
existingEntity.start_date = i.start_date; existingEntity.start_date = i.start_date;
existingEntity.end_date = i.end_date; existingEntity.end_date = i.end_date;
existingEntity.SetAutoField(_repository.Context);
_repository.UpdateWithoutCommit(i.id.Value, existingEntity); _repository.UpdateWithoutCommit(i.id.Value, existingEntity);
} }
} }
@@ -187,6 +187,7 @@ namespace TodoAPI2.Models
{ {
var entity = GetEntity(i); var entity = GetEntity(i);
entity.id = GetNewPrimaryKey(); entity.id = GetNewPrimaryKey();
entity.SetAutoField(_repository.Context);
_repository.InsertWithoutCommit(entity); _repository.InsertWithoutCommit(entity);
} }
else if (i.active_mode == "0" && i.id.HasValue) // remove else if (i.active_mode == "0" && i.id.HasValue) // remove
@@ -247,3 +248,4 @@ namespace TodoAPI2.Models
#endregion #endregion
} }
} }

View File

@@ -35,14 +35,14 @@ namespace TodoAPI2.Models
public int? selected_round { get; set; } public int? selected_round { get; set; }
public string round1_text { get; set; } public string round1_text { get; set; }
public string round2_text { get; set; } public string round2_text { get; set; }
public decimal? total_summary_supervisor2A { get; set; } public decimal? total_summary_supervisor2a { get; set; }
public decimal? Final_summary_supervisor2A { get; set; } public decimal? final_summary_supervisor2a { get; set; }
public decimal? total_summary_competency_supervisor2A { get; set; } public decimal? total_summary_competency_supervisor2a { get; set; }
public decimal? Final_summary_competency_supervisor2A { get; set; } public decimal? final_summary_competency_supervisor2a { get; set; }
public decimal? achievement_supervisor2A { get; set; } public decimal? achievement_supervisor2a { get; set; }
public decimal? competency_supervisor2A { get; set; } public decimal? competency_supervisor2a { get; set; }
public decimal? score_supervisor2A { get; set; } public decimal? score_supervisor2a { get; set; }
public string level_score_supervisor2A { get; set; } public string level_score_supervisor2a { get; set; }
public decimal? w1 { get; set; } public decimal? w1 { get; set; }
public decimal? w2 { get; set; } public decimal? w2 { get; set; }

View File

@@ -255,6 +255,15 @@ public class MyHelper
+ (d.Month < 10 ? "0" + d.Month.ToString() : d.Month.ToString()) + "-" + (d.Month < 10 ? "0" + d.Month.ToString() : d.Month.ToString()) + "-"
+ (d.Day < 10 ? "0" + d.Day.ToString() : d.Day.ToString()); + (d.Day < 10 ? "0" + d.Day.ToString() : d.Day.ToString());
} }
if (propertyInfo.PropertyType.ToString().Contains("Decimal")
|| propertyInfo.PropertyType.ToString().Contains("Double")
|| propertyInfo.PropertyType.ToString().Contains("Float"))
{
if(value != null)
{
value = ((decimal)value).ToString("0.#####");
}
}
parameter += propertyInfo.Name + "=" + value; parameter += propertyInfo.Name + "=" + value;
} }
} }

View File

@@ -106,20 +106,20 @@
<td colspan="2">ลาป่วย</td> <td colspan="2">ลาป่วย</td>
<td colspan="2">ลากิจ</td> <td colspan="2">ลากิจ</td>
<td rowspan="2">ลาพักผ่อน</td> <td rowspan="2">ลาพักผ่อน</td>
<td rowspan="2">ขอกลับก่อนเวลา</td> <td rowspan="2">ขอกลับ<br/>ก่อนเวลา</td>
<td>สาย</td> <td>สาย</td>
<td>ขาด</td> <td>ขาด</td>
<td colspan="2">รวม (ป่วย/กิจ)</td> <td colspan="2">รวม (ป่วย/กิจ)</td>
</tr> </tr>
<tr> <tr>
<td>วัน</td> <td width="10%">วัน</td>
<td>ครั้ง</td> <td width="10%">ครั้ง</td>
<td>วัน</td> <td width="10%">วัน</td>
<td>ครั้ง</td> <td width="10%">ครั้ง</td>
<td>สาย</td> <td width="10%">สาย</td>
<td>ขาด</td> <td width="10%">ขาด</td>
<td>วัน</td> <td width="10%">วัน</td>
<td>ครั้ง</td> <td width="10%">ครั้ง</td>
</tr> </tr>
<tr> <tr>
<td><p id="sum_day_sick_leave"></p></td> @*ลาป่วย วัน*@ <td><p id="sum_day_sick_leave"></p></td> @*ลาป่วย วัน*@

View File

@@ -156,20 +156,20 @@
<td colspan="2">ลาป่วย</td> <td colspan="2">ลาป่วย</td>
<td colspan="2">ลากิจ</td> <td colspan="2">ลากิจ</td>
<td rowspan="2">ลาพักผ่อน</td> <td rowspan="2">ลาพักผ่อน</td>
<td rowspan="2">ขอกลับก่อนเวลา</td> <td rowspan="2">ขอกลับ<br/>ก่อนเวลา</td>
<td>สาย</td> <td>สาย</td>
<td>ขาด</td> <td>ขาด</td>
<td colspan="2">รวม (ป่วย/กิจ)</td> <td colspan="2">รวม (ป่วย/กิจ)</td>
</tr> </tr>
<tr> <tr>
<td>วัน</td> <td width="10%">วัน</td>
<td>ครั้ง</td> <td width="10%">ครั้ง</td>
<td>วัน</td> <td width="10%">วัน</td>
<td>ครั้ง</td> <td width="10%">ครั้ง</td>
<td>สาย</td> <td width="10%">สาย</td>
<td>ขาด</td> <td width="10%">ขาด</td>
<td>วัน</td> <td width="10%">วัน</td>
<td>ครั้ง</td> <td width="10%">ครั้ง</td>
</tr> </tr>
<tr> <tr>
<td><p id="sum_day_sick_leave"></p></td> @*ลาป่วย วัน*@ <td><p id="sum_day_sick_leave"></p></td> @*ลาป่วย วัน*@

View File

@@ -45,6 +45,7 @@ function rep_eva_x_DoSearch(fileType, data) {
var report_url = apisite + "/api/rep_eva_x/rep_eva_x_report?" + p; var report_url = apisite + "/api/rep_eva_x/rep_eva_x_report?" + p;
if (fileType === "pdf") { if (fileType === "pdf") {
$("#report_result").attr("src", "");
$("#report_result").attr("src", report_url); $("#report_result").attr("src", report_url);
$("#report_result").show(); $("#report_result").show();
//window.open(report_url); //window.open(report_url);