Compare commits

..

2 Commits

1 changed files with 5 additions and 7 deletions

View File

@ -1608,7 +1608,7 @@ public class ManageExcelUploadProc03Controller {
RsWrapper excelWp = new RsWrapper();
if("Y".equals(classInfoMap.get("sandClassification"))){
if("".equals((String)resultMap.get("resultMsg"))){
excelWp = ExcelUtil.getRsWp(strFile, "입도분석정보", 0, 1, 22);
excelWp = ExcelUtil.getRsWp(strFile, "입도분석정보", 0, 1, 23);
resultMap = checkStep03_500_class(request, params, excelWp, savePath, strFile,_projectCode,_holeCode);
jaCl5 = (null == resultMap.get("list") || "".equals(resultMap.get("list")))?null:JSONArray.fromObject(resultMap.get("list"));
}
@ -1635,7 +1635,7 @@ public class ManageExcelUploadProc03Controller {
}
if("Y".equals(classInfoMap.get("sandUnconfinedUsual"))){
if("".equals((String)resultMap.get("resultMsg"))){
excelWp = ExcelUtil.getRsWp(strFile, "일축압축정보", 0, 2, 18);
excelWp = ExcelUtil.getRsWp(strFile, "일축압축정보", 0, 2, 19);
resultMap = checkStep03_500_unconfined(request, params, excelWp, savePath, strFile,_projectCode,_holeCode);
jaUn5 = (null == resultMap.get("list") || "".equals(resultMap.get("list")))?null:JSONArray.fromObject(resultMap.get("list"));
}
@ -1709,14 +1709,14 @@ public class ManageExcelUploadProc03Controller {
}
if("Y".equals(classInfoMap.get("rockPointload"))){
if("".equals((String)resultMap.get("resultMsg"))){
excelWp = ExcelUtil.getRsWp(strFile, "점하중정보", 0, 1, 8);
excelWp = ExcelUtil.getRsWp(strFile, "점하중정보", 0, 1, 9);
resultMap = checkStep03_600_rockPointload(request, params, excelWp, savePath, strFile,_projectCode,_holeCode);
jaRpo6 = (null == resultMap.get("list") || "".equals(resultMap.get("list")))?null:JSONArray.fromObject(resultMap.get("list"));
}
}
if("Y".equals(classInfoMap.get("rockJointshear"))){
if("".equals((String)resultMap.get("resultMsg"))){
excelWp = ExcelUtil.getRsWp(strFile, "절리면전단정보", 0, 1, 8);
excelWp = ExcelUtil.getRsWp(strFile, "절리면전단정보", 0, 1, 9);
resultMap = checkStep03_600_rockJointshear(request, params, excelWp, savePath, strFile,_projectCode,_holeCode);
jaRjo6 = (null == resultMap.get("list") || "".equals(resultMap.get("list")))?null:JSONArray.fromObject(resultMap.get("list"));
}
@ -4564,13 +4564,11 @@ public class ManageExcelUploadProc03Controller {
}
}
HashMap<String,Object> map = new HashMap<>();
map.put("PROJECT_CODE", _projectCode);
map.put("HOLE_CODE", _holeCode);
// map.put("SAMPLE_CODE" , (String) _sampleInfoList.get(i).get("SAMPLE_CODE"));
map.put("SAMPLE_CODE", targetSampleCode);
map.put("UNCONF_RINGFACTOR" , excelWp.get("col0", i));
map.put("SAMPLE_CODE" , targetSampleCode);
map.put("UNCONF_RINGFACTOR" , excelWp.get("col1", i));
map.put("UNCONF_LOAD_SCALE" , excelWp.get("col2", i));
map.put("UNCONF_UNDISTURB_HEIGHT" , excelWp.get("col3", i));