First Initial

This commit is contained in:
Nakorn Rientrakrunchai
2020-02-20 15:02:39 +07:00
commit 8b98125e49
3048 changed files with 760804 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using TTSW.EF;
using TTSW.Utils;
using TTSW.Constant;
using TTSW.Common;
using TodoAPI2.Models;
namespace TodoAPI2.Models
{
public interface Ieva_adjust_postponement_detail_quotaService : IBaseService<int, eva_adjust_postponement_detail_quotaInputModel, eva_adjust_postponement_detail_quotaViewModel>
{
new eva_adjust_postponement_detail_quotaViewModel Insert(eva_adjust_postponement_detail_quotaInputModel model);
new eva_adjust_postponement_detail_quotaViewModel Update(int id, eva_adjust_postponement_detail_quotaInputModel model);
List<eva_adjust_postponement_detail_quotaViewModel> GetListByadjust_postponement_quota_id(int? adjust_postponement_quota_id);
List<eva_adjust_postponement_detail_quotaViewModel> GetListBySearch(eva_adjust_postponement_detail_quotaSearchModel model);
string UpdateMultiple(List<eva_adjust_postponement_detail_quotaInputModel> model);
eva_adjust_postponement_detail_quotaWithSelectionViewModel GetWithSelection(int id);
eva_adjust_postponement_detail_quotaWithSelectionViewModel GetBlankItem();
string AddMultiple(int? adjust_postponement_quota_id, List<int> model, int? fiscal_year, int? theRound);
}
}

View File

@@ -0,0 +1,58 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Threading.Tasks;
using TTSW.EF;
using TTSW.Utils;
using TTSW.Constant;
using TTSW.Common;
namespace TodoAPI2.Models
{
public class eva_adjust_postponement_detail_quotaInputModel
{
public int? id { get; set; }
public int? adjust_postponement_quota_id { get; set; }
public int? employee_id { get; set; }
public decimal? sarary { get; set; }
public decimal? cost_living { get; set; }
public decimal? middle { get; set; }
public decimal? promoted_percentage { get; set; }
public decimal? total_promote { get; set; }
public decimal? new_sarary { get; set; }
public decimal? new_cost_living { get; set; }
public string remark { get; set; }
public decimal? receive_quota { get; set; }
public decimal? new_sarary_with_quota { get; set; }
public string emp_code { get; set; }
public string emp_fullname { get; set; }
public string emp_position { get; set; }
public string emp_level { get; set; }
public decimal? total_score { get; set; }
public string eva_result { get; set; }
public string active_mode { get; set; }
}
}

View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Threading.Tasks;
using TTSW.EF;
using TTSW.Utils;
using TTSW.Constant;
using TTSW.Common;
namespace TodoAPI2.Models
{
public class eva_adjust_postponement_detail_quotaReportRequestModel : eva_adjust_postponement_detail_quotaSearchModel
{
public string filetype { get; set; }
public string contentType { get { return MyHelper.GetContentType(filetype); } }
}
}

View File

@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Threading.Tasks;
using TTSW.EF;
using TTSW.Utils;
using TTSW.Constant;
using TTSW.Common;
namespace TodoAPI2.Models
{
public class eva_adjust_postponement_detail_quotaSearchModel
{
public int id { get; set; }
public int? adjust_postponement_quota_id { get; set; }
}
}

View File

@@ -0,0 +1,365 @@
using AutoMapper;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using TTSW.EF;
using TTSW.Utils;
using TTSW.Constant;
using TTSW.Common;
using TodoAPI2.Models;
using System.IO;
using System.Web;
using System.Net;
using TTSW.Configure;
using Microsoft.Extensions.Options;
using System.Data;
namespace TodoAPI2.Models
{
public class eva_adjust_postponement_detail_quotaService : Ieva_adjust_postponement_detail_quotaService
{
private IBaseRepository2<eva_adjust_postponement_detailEntity, int> _repository;
private IMyDatabase db;
private Iexternal_linkageService ext;
private Iexternal_employeeService emp;
public eva_adjust_postponement_detail_quotaService(IBaseRepository2<eva_adjust_postponement_detailEntity, int> repository,
IMyDatabase mydb, Iexternal_linkageService inext, Iexternal_employeeService inemp)
{
_repository = repository;
db = mydb;
ext = inext;
emp = inemp;
}
#region Private Functions
private eva_adjust_postponement_detailEntity GetEntity(eva_adjust_postponement_detail_quotaInputModel model)
{
return Mapper.Map<eva_adjust_postponement_detailEntity>(model);
}
private List<eva_adjust_postponement_detailEntity> GetEntityList(List<eva_adjust_postponement_detail_quotaInputModel> models)
{
return Mapper.Map<List<eva_adjust_postponement_detailEntity>>(models);
}
private eva_adjust_postponement_detail_quotaViewModel GetDto(eva_adjust_postponement_detailEntity entity)
{
return Mapper.Map<eva_adjust_postponement_detail_quotaViewModel>(entity);
}
private List<eva_adjust_postponement_detail_quotaViewModel> GetDtoList(List<eva_adjust_postponement_detailEntity> entities)
{
return Mapper.Map<List<eva_adjust_postponement_detail_quotaViewModel>>(entities);
}
#endregion
#region Public Functions
#region Query Functions
public eva_adjust_postponement_detail_quotaViewModel Get(int id)
{
var entity = _repository.Get(id);
return GetDto(entity);
}
public eva_adjust_postponement_detail_quotaWithSelectionViewModel GetWithSelection(int id)
{
var entity = _repository.Get(id);
var i = Mapper.Map<eva_adjust_postponement_detail_quotaWithSelectionViewModel>(entity);
var all_emp = emp.GetListByemployee_type(null, null);
i.item_employee_id = all_emp.ToList();
return i;
}
public eva_adjust_postponement_detail_quotaWithSelectionViewModel GetBlankItem()
{
var i = new eva_adjust_postponement_detail_quotaWithSelectionViewModel();
var all_emp = emp.GetListByemployee_type(null, null);
i.item_employee_id = all_emp.ToList();
return i;
}
public List<eva_adjust_postponement_detail_quotaViewModel> GetListByadjust_postponement_quota_id(int? adjust_postponement_quota_id)
{
var model = new eva_adjust_postponement_detail_quotaSearchModel();
model.adjust_postponement_quota_id = adjust_postponement_quota_id;
return GetListBySearch(model);
}
public List<eva_adjust_postponement_detail_quotaViewModel> GetListBySearch(eva_adjust_postponement_detail_quotaSearchModel model)
{
var all_emp = emp.GetListByemployee_type(null, null);
var data = (
from m_eva_adjust_postponement_detail_quota in _repository.Context.eva_adjust_postponement_detail
join fk_eva_adjust_postponement1 in _repository.Context.eva_adjust_postponement on m_eva_adjust_postponement_detail_quota.adjust_postponement_quota_id equals fk_eva_adjust_postponement1.id
into eva_adjust_postponementResult1
from fk_eva_adjust_postponementResult1 in eva_adjust_postponementResult1.DefaultIfEmpty()
join fk_external_linkage2 in all_emp on m_eva_adjust_postponement_detail_quota.employee_id equals fk_external_linkage2.id
into external_linkageResult2
from fk_external_linkageResult2 in external_linkageResult2.DefaultIfEmpty()
join create_detail in _repository.Context.eva_create_evaluation_detail
on fk_eva_adjust_postponementResult1.create_evaluation_id equals create_detail.create_evaluation_id
into create_detailResult
from fk_create_detailResult in create_detailResult.DefaultIfEmpty()
where 1==1
//&& (m_eva_adjust_postponement_detail_quota.id == model.id || !model.id.HasValue)
&& (m_eva_adjust_postponement_detail_quota.adjust_postponement_quota_id == model.adjust_postponement_quota_id || !model.adjust_postponement_quota_id.HasValue)
//&& fk_create_detailResult.employee_id == m_eva_adjust_postponement_detail_quota.employee_id
orderby m_eva_adjust_postponement_detail_quota.created descending
select new eva_adjust_postponement_detail_quotaViewModel()
{
id = m_eva_adjust_postponement_detail_quota.id,
adjust_postponement_quota_id = m_eva_adjust_postponement_detail_quota.adjust_postponement_quota_id,
employee_id = m_eva_adjust_postponement_detail_quota.employee_id,
sarary = m_eva_adjust_postponement_detail_quota.sarary,
cost_living = m_eva_adjust_postponement_detail_quota.cost_living,
middle = m_eva_adjust_postponement_detail_quota.middle,
promoted_percentage = m_eva_adjust_postponement_detail_quota.promoted_percentage,
total_promote = m_eva_adjust_postponement_detail_quota.total_promote,
new_sarary = m_eva_adjust_postponement_detail_quota.new_sarary,
new_cost_living = m_eva_adjust_postponement_detail_quota.new_cost_living,
remark = m_eva_adjust_postponement_detail_quota.remark,
receive_quota = m_eva_adjust_postponement_detail_quota.receive_quota,
new_sarary_with_quota = m_eva_adjust_postponement_detail_quota.new_sarary_with_quota,
emp_code = fk_external_linkageResult2.employee_no,
emp_fullname = fk_external_linkageResult2.fullname,
emp_position = fk_external_linkageResult2.position_name,
emp_level = fk_external_linkageResult2.position_level_text,
total_score = fk_create_detailResult.score_supervisor,
eva_result = fk_create_detailResult.level_score_supervisor,
adjust_postponement_quota_id_eva_adjust_postponement_fiscal_year = fk_eva_adjust_postponementResult1.fiscal_year,
employee_id_external_linkage_external_name = fk_external_linkageResult2.fullname,
isActive = m_eva_adjust_postponement_detail_quota.isActive,
Created = m_eva_adjust_postponement_detail_quota.created,
Updated = m_eva_adjust_postponement_detail_quota.updated
}
).Take(100).ToList();
return data;
}
#endregion
#region Manipulation Functions
public int GetNewPrimaryKey()
{
int? newkey = 0;
var x = (from i in _repository.Context.eva_adjust_postponement_detail
orderby i.id descending
select i).Take(1).ToList();
if(x.Count > 0)
{
newkey = x[0].id + 1;
}
return newkey.Value;
}
public eva_adjust_postponement_detail_quotaViewModel Insert(eva_adjust_postponement_detail_quotaInputModel model)
{
var entity = GetEntity(model);
entity.id = GetNewPrimaryKey();
var inserted = _repository.Insert(entity);
return Get(inserted.id);
}
public eva_adjust_postponement_detail_quotaViewModel Update(int id, eva_adjust_postponement_detail_quotaInputModel model)
{
var existingEntity = _repository.Get(id);
if (existingEntity != null)
{
existingEntity.adjust_postponement_quota_id = model.adjust_postponement_quota_id;
existingEntity.employee_id = model.employee_id;
existingEntity.sarary = model.sarary;
existingEntity.cost_living = model.cost_living;
existingEntity.middle = model.middle;
existingEntity.promoted_percentage = model.promoted_percentage;
existingEntity.total_promote = model.total_promote;
existingEntity.new_sarary = model.new_sarary;
existingEntity.new_cost_living = model.new_cost_living;
existingEntity.remark = model.remark;
existingEntity.receive_quota = model.receive_quota;
existingEntity.new_sarary_with_quota = model.new_sarary_with_quota;
//existingEntity.emp_code = model.emp_code;
//existingEntity.emp_fullname = model.emp_fullname;
//existingEntity.emp_position = model.emp_position;
//existingEntity.emp_level = model.emp_level;
//existingEntity.total_score = model.total_score;
//existingEntity.eva_result = model.eva_result;
var updated = _repository.Update(id, existingEntity);
return Get(updated.id);
}
else
throw new NotificationException("No data to update");
}
public string UpdateMultiple(List<eva_adjust_postponement_detail_quotaInputModel> model)
{
foreach(var i in model)
{
if (i.active_mode == "1" && i.id.HasValue) // update
{
var existingEntity = _repository.Get(i.id.Value);
if (existingEntity != null)
{
existingEntity.adjust_postponement_quota_id = i.adjust_postponement_quota_id;
existingEntity.employee_id = i.employee_id;
existingEntity.sarary = i.sarary;
existingEntity.cost_living = i.cost_living;
existingEntity.middle = i.middle;
existingEntity.promoted_percentage = i.promoted_percentage;
existingEntity.total_promote = i.total_promote;
existingEntity.new_sarary = i.new_sarary;
existingEntity.new_cost_living = i.new_cost_living;
existingEntity.remark = i.remark;
existingEntity.receive_quota = i.receive_quota;
existingEntity.new_sarary_with_quota = i.new_sarary_with_quota;
//existingEntity.emp_code = i.emp_code;
//existingEntity.emp_fullname = i.emp_fullname;
//existingEntity.emp_position = i.emp_position;
//existingEntity.emp_level = i.emp_level;
//existingEntity.total_score = i.total_score;
//existingEntity.eva_result = i.eva_result;
_repository.UpdateWithoutCommit(i.id.Value, existingEntity);
}
}
else if (i.active_mode == "1" && !i.id.HasValue) // add
{
var entity = GetEntity(i);
entity.id = GetNewPrimaryKey();
_repository.InsertWithoutCommit(entity);
}
else if (i.active_mode == "0" && i.id.HasValue) // remove
{
_repository.DeleteWithoutCommit(i.id.Value);
}
else if (i.active_mode == "0" && !i.id.HasValue)
{
// nothing to do
}
}
_repository.Context.SaveChanges();
return model.Count().ToString();
}
public string AddMultiple(int? adjust_postponement_quota_id, List<int> model, int? fiscal_year, int? theRound)
{
if (!adjust_postponement_quota_id.HasValue)
{
return "0";
}
else
{
int k = 0;
var all_emp = emp.GetListByemployee_type(null, null);
var ex = (from x in _repository.Context.eva_adjust_postponement_detail
where x.adjust_postponement_quota_id == adjust_postponement_quota_id
select x.employee_id).ToList();
foreach (var i in model)
{
if (checkExistEmployeeInExternal(i, all_emp))
{
if (!checkExistEmployeeInInternal(i, ex))
{
var q = (from p in _repository.Context.eva_adjust_postponement_detail
where p.employee_id == i
&& p.eva_adjust_postponement.fiscal_year == fiscal_year
&& p.eva_adjust_postponement.theRound == theRound
select p).FirstOrDefault();
if(q != null)
{
q.adjust_postponement_quota_id = adjust_postponement_quota_id;
q.updated = DateTime.Now;
q.isActive = true;
k++;
}
}
}
}
_repository.Context.SaveChanges();
return k.ToString();
}
}
private bool checkExistEmployeeInExternal(int emp_id, List<external_employeeViewModel> emp)
{
foreach (var i in emp)
{
if (i.id == emp_id) return true;
}
return false;
}
private bool checkExistEmployeeInInternal(int emp_id, List<int?> ex)
{
foreach (var i in ex)
{
if (i.Value == emp_id) return true;
}
return false;
}
public eva_adjust_postponement_detail_quotaViewModel SetAsActive(int id)
{
var updated = _repository.SetAsActive(id);
return Get(updated.id);
}
public eva_adjust_postponement_detail_quotaViewModel SetAsInactive(int id)
{
var updated = _repository.SetAsInActive(id);
return Get(updated.id);
}
public void Delete(int id)
{
//_repository.Delete(id);
var ex = (from x in _repository.Context.eva_adjust_postponement_detail
where x.id == id
select x).FirstOrDefault();
if(ex != null)
{
ex.adjust_postponement_quota_id = null;
}
_repository.Context.SaveChanges();
return;
}
#endregion
#region Match Item
#endregion
#endregion
}
}

View File

@@ -0,0 +1,57 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Threading.Tasks;
using TTSW.EF;
using TTSW.Utils;
using TTSW.Constant;
using TTSW.Common;
namespace TodoAPI2.Models
{
public class eva_adjust_postponement_detail_quotaViewModel : BaseViewModel2<int>
{
public int? adjust_postponement_quota_id { get; set; }
public int? employee_id { get; set; }
public decimal? sarary { get; set; }
public decimal? cost_living { get; set; }
public decimal? middle { get; set; }
public decimal? promoted_percentage { get; set; }
public decimal? total_promote { get; set; }
public decimal? new_sarary { get; set; }
public decimal? new_cost_living { get; set; }
public string remark { get; set; }
public decimal? receive_quota { get; set; }
public decimal? new_sarary_with_quota { get; set; }
public string emp_code { get; set; }
public string emp_fullname { get; set; }
public string emp_position { get; set; }
public string emp_level { get; set; }
public decimal? total_score { get; set; }
public string eva_result { get; set; }
public int? adjust_postponement_quota_id_eva_adjust_postponement_fiscal_year { get; set; }
public string employee_id_external_linkage_external_name { get; set; }
}
}

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace TodoAPI2.Models
{
public class eva_adjust_postponement_detail_quotaWithSelectionViewModel: eva_adjust_postponement_detail_quotaViewModel
{
public List<external_employeeViewModel> item_employee_id { get; set; }
}
}