P2-15: 지정판매소 다조건 조회 (이름/구군/상태 필터) P2-17: 지정판매소 지도 표시 (Kakao Maps) P2-18: 지정판매소 현황 (연도별 신규/취소 통계) P5-04: 년 판매 현황 (월별 피벗 테이블) P5-05: 지정판매소별 판매현황 (판매소별 수량/금액) P5-06: 홈택스 세금계산서 엑셀 내보내기 P5-08: 반품/파기 현황 (기간별 조회) P5-10: LOT 수불 조회 (LOT 번호 검색) P5-11: 기타 입출고 (등록 + 재고 연동) CT-05: CRUD 로깅 (activity_log 테이블 + audit_helper) CT-06: 대시보드 실 데이터 (발주/판매/재고/불출 통계) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
77 lines
4.5 KiB
PHP
77 lines
4.5 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">
|
|
<a href="<?= base_url('admin/designated-shops/export') ?>" class="no-print border border-btn-excel-border text-btn-excel-text px-3 py-1 rounded-sm text-sm hover:bg-green-50 transition">엑셀저장</a>
|
|
<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="<?= 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>
|
|
</div>
|
|
</section>
|
|
<!-- P2-15: 다조건 검색 -->
|
|
<section class="p-2 bg-white border-b border-gray-200 no-print">
|
|
<form method="GET" action="<?= base_url('admin/designated-shops') ?>" class="flex flex-wrap items-center gap-2">
|
|
<label class="text-sm text-gray-600">상호명</label>
|
|
<input type="text" name="ds_name" value="<?= esc($dsName ?? '') ?>" placeholder="상호명 검색" class="border border-gray-300 rounded px-2 py-1 text-sm w-40"/>
|
|
<label class="text-sm text-gray-600">구군코드</label>
|
|
<select name="ds_gugun_code" class="border border-gray-300 rounded px-2 py-1 text-sm">
|
|
<option value="">전체</option>
|
|
<?php foreach (($gugunCodes ?? []) as $gc): ?>
|
|
<option value="<?= esc($gc->ds_gugun_code) ?>" <?= ($dsGugunCode ?? '') === $gc->ds_gugun_code ? 'selected' : '' ?>><?= esc($gc->ds_gugun_code) ?></option>
|
|
<?php endforeach; ?>
|
|
</select>
|
|
<label class="text-sm text-gray-600">상태</label>
|
|
<select name="ds_state" class="border border-gray-300 rounded px-2 py-1 text-sm">
|
|
<option value="">전체</option>
|
|
<option value="1" <?= ($dsState ?? '') === '1' ? 'selected' : '' ?>>정상</option>
|
|
<option value="2" <?= ($dsState ?? '') === '2' ? 'selected' : '' ?>>폐업</option>
|
|
<option value="3" <?= ($dsState ?? '') === '3' ? 'selected' : '' ?>>직권해지</option>
|
|
</select>
|
|
<button type="submit" class="bg-btn-search text-white px-4 py-1 rounded-sm text-sm">조회</button>
|
|
<a href="<?= base_url('admin/designated-shops') ?>" class="border border-gray-300 text-gray-600 px-3 py-1 rounded-sm text-sm hover:bg-gray-50">초기화</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>가상계좌</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>
|
|
<?php if (isset($pager)): ?><div class="mt-3"><?= $pager->links() ?></div><?php endif; ?>
|
|
|