diff --git a/BO/Controllers/croomController.cs b/BO/Controllers/croomController.cs index ebe39b1..1f349c5 100644 --- a/BO/Controllers/croomController.cs +++ b/BO/Controllers/croomController.cs @@ -959,11 +959,11 @@ namespace NP.BO.Controllers { vm.DocumentList = Dao.Get("cr.documnetspast", ht); return ExportExcel( - new String[] { "구분","과정분류","교육유형","이름","주민번호","기술인분류","교육구분","교육목적","등급","직무분야","과정명","수료번호","업체명","업체주소","사업자등록번호", + new String[] { "구분","과정분류","교육유형","아이디","이름","주민번호","기술인분류","교육구분","교육목적","등급","직무분야","과정명","수료번호","업체명","업체주소","사업자등록번호", "고용보험관리번호","업태","종목","대표자","교육시작일","교육종료일","교육이수시간","소속협회","학력","직위","교육생연락처","업체담당자","업체담당당자 연락처","교육비", "환급액","환급은행명","환급계좌" ,"환급계좌예금주","계산서이메일","교육연도"}, - new String[] { "kind", "cg", "cshape", "username", "userpno", "typeman", "edukind", "typeedu", "typegrade", "typejob", "cgname", "completeno", "companyname", - "companyaddr", "brno", "eino", "btype", "bkind", "ceoname", "ssdate","sedate","sctime","assign","slevel","uduty","phone","mname","mphone", + new String[] { "kind", "cg", "cshape","id", "username", "userpno", "typeman", "edukind", "typeedu", "typegrade", "typejob", "cgname", "completeno", "companyname", + "companyaddr", "brno", "eino", "btype", "bkind", "ceoname", "ssdateymd","sedateymd","sctime","assign","slevel","uduty","phone","mname","mphone", "sprice","rprice","rbank","rbankno","rbankuser","taxemail","syear"}, vm.DocumentList, "증빙서류출력(과거)"); diff --git a/BO/obj/Debug/BO.csprojAssemblyReference.cache b/BO/obj/Debug/BO.csprojAssemblyReference.cache index a7bdf91..b066eca 100644 Binary files a/BO/obj/Debug/BO.csprojAssemblyReference.cache and b/BO/obj/Debug/BO.csprojAssemblyReference.cache differ diff --git a/Base/obj/Debug/Base.csprojAssemblyReference.cache b/Base/obj/Debug/Base.csprojAssemblyReference.cache index eff1ae4..bbd4f55 100644 Binary files a/Base/obj/Debug/Base.csprojAssemblyReference.cache and b/Base/obj/Debug/Base.csprojAssemblyReference.cache differ diff --git a/Dao/obj/Debug/Dao.csprojAssemblyReference.cache b/Dao/obj/Debug/Dao.csprojAssemblyReference.cache index ac7f71b..d834cd3 100644 Binary files a/Dao/obj/Debug/Dao.csprojAssemblyReference.cache and b/Dao/obj/Debug/Dao.csprojAssemblyReference.cache differ diff --git a/Model/Documents.cs b/Model/Documents.cs index b37dcf5..ffca30a 100644 --- a/Model/Documents.cs +++ b/Model/Documents.cs @@ -39,6 +39,10 @@ namespace NP.Model /// public String cshape { get; set; } /// + /// 아이디 (공백) + /// + public String id { get; set; } + /// /// 이름 /// public String username { get; set; } @@ -106,10 +110,25 @@ namespace NP.Model /// 교육시작일 /// public DateTime? ssdate { get; set; } + public String ssdateymd + { + get + { + return ssdate != null ? ssdate.Value.ToString("yyyy-MM-dd") : null; + } + } + /// /// 교육종료일 /// public DateTime? sedate { get; set; } + public String sedateymd + { + get + { + return sedate != null ? sedate.Value.ToString("yyyy-MM-dd") : null; + } + } /// /// 교육이수시간 ///