아파트평면도 목록 페이지 추가

This commit is contained in:
yangsh
2025-12-26 17:21:21 +09:00
parent 093d1a1c0b
commit 06e266425c
8 changed files with 2407 additions and 39 deletions

View File

@@ -191,37 +191,16 @@
onclick="progressStatAll(this, this.checked);">
<label class="form-check-label" for="progress_stat_all">전체</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" name="stat[]"
id="stat_S01" value="S01">
<label class="form-check-label" for="stat_S01">미촬영</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" name="stat[]"
id="stat_S02" value="S02">
<label class="form-check-label" for="stat_S02">사진촬영</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" name="stat[]"
id="stat_S03" value="S03">
<label class="form-check-label" for="stat_S03">영상촬영</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" name="stat[]"
id="stat_S04" value="S04">
<label class="form-check-label" for="stat_S04">촬영완료</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" name="stat[]"
id="stat_S05" value="S05">
<label class="form-check-label" for="stat_S05">검수완료</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" name="stat[]"
id="stat_S06" value="S06">
<label class="form-check-label" for="stat_S06">전송완료</label>
</div>
<?php foreach ($codes as $code): ?>
<?php if ($code['category'] === "APT_STEP"): ?>
<div class="form-check">
<input class="form-check-input" type="checkbox" name="stat[]"
id="stat_<?= $code['cd'] ?>" value="<?= $code['cd'] ?>">
<label class="form-check-label"
for="stat_<?= $code['cd'] ?>"><?= $code['cd_nm'] ?></label>
</div>
<?php endif; ?>
<?php endforeach; ?>
</div>
</div>
@@ -536,7 +515,7 @@
// 이 팀이 현재 본부에 속한 팀인지 체크
if (String(userArr[i].dept_sq) === String(dept_sq)) {
str += `
<option value="${userArr[i].usr_sq}">${userArr[i].usr_nm}</option>
<option value="${userArr[i].usr_id}">${userArr[i].usr_nm}</option>
`;
}
}
@@ -653,7 +632,7 @@
}
},
"columnDefs": [
{ targets: 0, orderable: false, className: 'text-center' },
{ className: 'text-center', targets: '_all' },
{ 'targets': '_all', "defaultContent": "" },
// { 'className': 'text-center', 'targets': [0, 2, 3, 4] },
],

File diff suppressed because it is too large Load Diff