feat: 해당 시추공 입력페이지에서 미리보기 시 해당 시추공만 즉각적으로 확인할 수 있도록 수정

main
thkim 2025-08-13 09:56:28 +09:00
parent 9c1570761a
commit 52e885fb51
1 changed files with 4 additions and 0 deletions

View File

@ -1238,6 +1238,10 @@ public class CommonController {
String holeCode_ = (String)result.get("holecode");
String holeCodeSplit[] = holeCode_.split(",");
if( holeCode != null && holeCode.split(",").length == 1) {
// holeCode가 parameter로 넘어왔고 시추공 수가 한개라면 해당 시추공만 보여준다.
holeCodeSplit = holeCode.split(",");
}
int holeCodeCnt = holeCodeSplit.length;
for(int i=0; i<holeCodeCnt; i++){