2024-01-31 18:16 교육배치확정관리 오류 수정
This commit is contained in:
parent
b376de8781
commit
18a209df63
@ -91,6 +91,7 @@ public class VEEduExcelVO {
|
|||||||
private String specialWorkAllow; //특수근무수당(도서벽지수당)
|
private String specialWorkAllow; //특수근무수당(도서벽지수당)
|
||||||
private String distanceAllow; //거리수당
|
private String distanceAllow; //거리수당
|
||||||
private String trafficFee; //교통비
|
private String trafficFee; //교통비
|
||||||
|
private String foodExpenses; //식비
|
||||||
|
|
||||||
private String allowance; //수당
|
private String allowance; //수당
|
||||||
private String instrFeeSum; //강사료 합계
|
private String instrFeeSum; //강사료 합계
|
||||||
@ -527,6 +528,12 @@ public class VEEduExcelVO {
|
|||||||
public void setTrafficFee(String trafficFee) {
|
public void setTrafficFee(String trafficFee) {
|
||||||
this.trafficFee = trafficFee;
|
this.trafficFee = trafficFee;
|
||||||
}
|
}
|
||||||
|
public String getFoodExpenses() {
|
||||||
|
return foodExpenses;
|
||||||
|
}
|
||||||
|
public void setFoodExpenses(String foodExpenses) {
|
||||||
|
this.foodExpenses = foodExpenses;
|
||||||
|
}
|
||||||
public String getAcmdtFee() {
|
public String getAcmdtFee() {
|
||||||
return acmdtFee;
|
return acmdtFee;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -224,6 +224,13 @@ public class EduAsgnmCnfrmMngTngrController {
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
System.out.println("vEEduAplctVO.getOrderByQuery()");
|
||||||
|
System.out.println(vEEduAplctVO.getOrderByQuery());
|
||||||
|
|
||||||
|
if ("".equals(vEEduAplctVO.getOrderByQuery()) || vEEduAplctVO.getOrderByQuery()==null) {
|
||||||
|
vEEduAplctVO.setOrderByQuery("CC.EDU_HOPE_DT desc");
|
||||||
|
}
|
||||||
|
|
||||||
List<VEEduAplctVO> vEEduAplctVOList = vEEduMIXService.selectPagingList(vEEduAplctVO);
|
List<VEEduAplctVO> vEEduAplctVOList = vEEduMIXService.selectPagingList(vEEduAplctVO);
|
||||||
//이름 복호화
|
//이름 복호화
|
||||||
VEEduAplctVO vo = new VEEduAplctVO();
|
VEEduAplctVO vo = new VEEduAplctVO();
|
||||||
@ -944,7 +951,7 @@ public class EduAsgnmCnfrmMngTngrController {
|
|||||||
, "차시", "총인원", "교육내용", "담당자"
|
, "차시", "총인원", "교육내용", "담당자"
|
||||||
, "연락처", "휴대전화", "E-mail", "주소"
|
, "연락처", "휴대전화", "E-mail", "주소"
|
||||||
, "배정일", "강사명", "구분", "강사연락처", "강사 e-mail", "거주지"
|
, "배정일", "강사명", "구분", "강사연락처", "강사 e-mail", "거주지"
|
||||||
, "강사료", "도서벽지 수당(a)", "장거리 교육수당(b)"
|
, "강사료", "식비", "도서벽지 수당(a)", "장거리 교육수당(b)"
|
||||||
, "km 편도","km 왕복", "km 교통비(c)"
|
, "km 편도","km 왕복", "km 교통비(c)"
|
||||||
, "숙박신청", "숙박비용(d)"
|
, "숙박신청", "숙박비용(d)"
|
||||||
, "수당(a+b)", "여비(c+d)", "총 지급액", "온라인 교육 여부"
|
, "수당(a+b)", "여비(c+d)", "총 지급액", "온라인 교육 여부"
|
||||||
@ -957,7 +964,7 @@ public class EduAsgnmCnfrmMngTngrController {
|
|||||||
, "Chasi", "EduPrsnl", "EduCnString", "ChrgNm"
|
, "Chasi", "EduPrsnl", "EduCnString", "ChrgNm"
|
||||||
, "Phone", "Clphone", "Email", "Addr"
|
, "Phone", "Clphone", "Email", "Addr"
|
||||||
, "AsgnmAprvlPnttm", "InstrNm", "InstrDiv", "InstrPhone", "InstrEmail", "InstrRsdne"
|
, "AsgnmAprvlPnttm", "InstrNm", "InstrDiv", "InstrPhone", "InstrEmail", "InstrRsdne"
|
||||||
, "InstrFee", "SpecialWorkAllow", "DistanceAllow"
|
, "InstrFee", "FoodExpenses", "SpecialWorkAllow", "DistanceAllow"
|
||||||
, "KmOneWay", "KmRoundTrip", "TrafficFee"
|
, "KmOneWay", "KmRoundTrip", "TrafficFee"
|
||||||
, "AcmdtAprvlCd", "AcmdtFee"
|
, "AcmdtAprvlCd", "AcmdtFee"
|
||||||
, "Allowance", "SpareFee", "InstrFeeSum", "EduSlctCd"
|
, "Allowance", "SpareFee", "InstrFeeSum", "EduSlctCd"
|
||||||
|
|||||||
@ -5682,9 +5682,12 @@
|
|||||||
, NVL(f.SPECIAL_WORK_ALLOW, '0') AS specialWorkAllow
|
, NVL(f.SPECIAL_WORK_ALLOW, '0') AS specialWorkAllow
|
||||||
, NVL(f.DISTANCE_ALLOW, '0') AS distanceAllow
|
, NVL(f.DISTANCE_ALLOW, '0') AS distanceAllow
|
||||||
, NVL(f.TRAFFIC_FEE, '0') AS trafficFee
|
, NVL(f.TRAFFIC_FEE, '0') AS trafficFee
|
||||||
|
, NVL(f.FOOD_EXPENSES, '0') AS foodExpenses
|
||||||
|
|
||||||
, NVL(f.BSNS_TRIP_FEE, '0') AS bsnsTripFee
|
, NVL(f.BSNS_TRIP_FEE, '0') AS bsnsTripFee
|
||||||
, NVL(f.SPARE_FEE, '0') AS spareFee
|
, NVL(f.SPARE_FEE, '0') AS spareFee
|
||||||
, NVL(g.ACMDT_FEE, '0') AS acmdtFee
|
, NVL(g.ACMDT_FEE, '0') AS acmdtFee
|
||||||
|
|
||||||
, NVL(g.APRVL_CD, 'N') AS acmdtAprvlCd
|
, NVL(g.APRVL_CD, 'N') AS acmdtAprvlCd
|
||||||
, NVL(f.INCOME_TAX, '0') AS incomeTax
|
, NVL(f.INCOME_TAX, '0') AS incomeTax
|
||||||
, NVL(f.LOCAL_INCOME_TAX, '0') AS localIncomeTax
|
, NVL(f.LOCAL_INCOME_TAX, '0') AS localIncomeTax
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user