48 lines
2.3 KiB
PHP
48 lines
2.3 KiB
PHP
<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>
|
|
<a href="<?= base_url('admin/designated-shops/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>
|
|
</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>가상계좌</th>
|
|
<th>상태</th>
|
|
<th>등록일</th>
|
|
<th class="w-28">작업</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="text-right">
|
|
<?php foreach ($list as $row): ?>
|
|
<tr>
|
|
<td class="text-center"><?= esc($row->ds_idx) ?></td>
|
|
<td class="text-left pl-2"><?= esc($lgMap[$row->ds_lg_idx] ?? '') ?></td>
|
|
<td class="text-left pl-2"><?= esc($row->ds_shop_no) ?></td>
|
|
<td class="text-left pl-2"><?= esc($row->ds_name) ?></td>
|
|
<td class="text-left pl-2"><?= esc($row->ds_rep_name) ?></td>
|
|
<td class="text-left pl-2"><?= esc($row->ds_biz_no) ?></td>
|
|
<td class="text-left pl-2"><?= esc($row->ds_va_number) ?></td>
|
|
<td class="text-center"><?= (int) $row->ds_state === 1 ? '정상' : ((int) $row->ds_state === 2 ? '폐업' : '직권해지') ?></td>
|
|
<td class="text-left pl-2"><?= esc($row->ds_regdate ?? '') ?></td>
|
|
<td class="text-center">
|
|
<a href="<?= base_url('admin/designated-shops/edit/' . (int) $row->ds_idx) ?>" class="text-blue-600 hover:underline text-sm">수정</a>
|
|
<form action="<?= base_url('admin/designated-shops/delete/' . (int) $row->ds_idx) ?>" method="POST" class="inline ml-1" onsubmit="return confirm('이 지정판매소를 삭제하시겠습니까?');">
|
|
<?= csrf_field() ?>
|
|
<button type="submit" class="text-red-600 hover:underline text-sm">삭제</button>
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|