관리 화면에서 유형별 조회와 순번 표기를 통일하고, 지정판매소 주소/구군 표시와 포장단위 이력 표현을 사용자 관점으로 정리한다. Made-with: Cursor
70 lines
3.4 KiB
PHP
70 lines
3.4 KiB
PHP
<?= view('components/print_header', ['printTitle' => '담당자 관리']) ?>
|
|
<section class="border-b border-gray-300 p-2 shrink-0 bg-control-panel">
|
|
<div class="flex flex-wrap items-center justify-between gap-y-2">
|
|
<span class="text-sm font-bold text-gray-700">담당자 관리</span>
|
|
<div class="flex items-center gap-2">
|
|
<button onclick="window.print()" class="no-print border border-btn-print-border text-gray-600 px-3 py-1 rounded-sm text-sm hover:bg-gray-50 transition">인쇄</button>
|
|
<a href="<?= mgmt_url('managers/create') ?>" class="bg-btn-search text-white px-4 py-1.5 rounded-sm flex items-center gap-1 text-sm shadow hover:opacity-90 transition border border-transparent">담당자 등록</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<section class="p-2 bg-white border-b border-gray-200 no-print">
|
|
<form method="GET" action="<?= mgmt_url('managers') ?>" class="flex flex-wrap items-center gap-2">
|
|
<label class="text-sm text-gray-600">카테고리</label>
|
|
<select name="category" class="border border-gray-300 rounded px-2 py-1 text-sm w-44">
|
|
<option value="">전 체</option>
|
|
<?php foreach (($categories ?? []) as $key => $label): ?>
|
|
<option value="<?= esc($key) ?>" <?= ($category ?? '') === $key ? 'selected' : '' ?>><?= esc($label) ?></option>
|
|
<?php endforeach; ?>
|
|
</select>
|
|
<button type="submit" class="bg-btn-search text-white px-4 py-1 rounded-sm text-sm">조회</button>
|
|
<a href="<?= mgmt_url('managers') ?>" class="text-sm text-gray-500 hover:underline">초기화</a>
|
|
</form>
|
|
</section>
|
|
<div class="border border-gray-300 overflow-auto mt-2">
|
|
<table class="w-full data-table">
|
|
<thead>
|
|
<tr>
|
|
<th class="w-16">번호</th>
|
|
<th>담당자명</th>
|
|
<th>카테고리</th>
|
|
<th>전화</th>
|
|
<th>휴대전화</th>
|
|
<th>이메일</th>
|
|
<th class="w-20">상태</th>
|
|
<th class="w-36">작업</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($list as $row): ?>
|
|
<tr>
|
|
<td class="text-center"><?= esc($row->mg_idx) ?></td>
|
|
<td class="text-center"><?= esc($row->mg_name) ?></td>
|
|
<td class="text-center">
|
|
<?php
|
|
$cat = (string) ($row->mg_dept_code ?? '');
|
|
$catLabel = $categories[$cat] ?? $cat;
|
|
echo esc($catLabel);
|
|
?>
|
|
</td>
|
|
<td class="text-center"><?= esc($row->mg_tel) ?></td>
|
|
<td class="text-center"><?= esc($row->mg_phone) ?></td>
|
|
<td class="text-center"><?= esc($row->mg_email) ?></td>
|
|
<td class="text-center"><?= (int) $row->mg_state === 1 ? '사용' : '미사용' ?></td>
|
|
<td class="text-center">
|
|
<a href="<?= mgmt_url('managers/edit/' . (int) $row->mg_idx) ?>" class="text-blue-600 hover:underline text-sm mr-1">수정</a>
|
|
<form action="<?= mgmt_url('managers/delete/' . (int) $row->mg_idx) ?>" method="POST" class="inline" onsubmit="return confirm('삭제하시겠습니까?');">
|
|
<?= csrf_field() ?>
|
|
<button type="submit" class="text-red-600 hover:underline text-sm">삭제</button>
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
<?php if (empty($list)): ?>
|
|
<tr><td colspan="8" class="text-center text-gray-400 py-4">등록된 데이터가 없습니다.</td></tr>
|
|
<?php endif; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<?php if (isset($pager)): ?><div class="mt-3"><?= $pager->links() ?></div><?php endif; ?>
|