2026-03-26 16:40:49 +09:00
< ? = view ( 'components/print_header' , [ 'printTitle' => '기본코드 종류 관리' ]) ?>
2026-03-25 16:20:56 +09:00
< 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 >
2026-03-26 16:40:49 +09:00
< 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 = " <?= base_url('admin/code-kinds/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 >
2026-03-25 16:20:56 +09:00
</ 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 class = " w-20 " > 코드 </ th >
< th > 코드명 </ th >
< th class = " w-24 " > 세부코드 수 </ th >
< th class = " w-20 " > 상태 </ th >
< th > 등록일 </ th >
< th class = " w-40 " > 작업 </ th >
</ tr >
</ thead >
< tbody class = " text-right " >
< ? php foreach ( $list as $row ) : ?>
< tr >
< td class = " text-center " >< ? = esc ( $row -> ck_idx ) ?> </td>
< td class = " text-center font-mono font-bold " >< ? = esc ( $row -> ck_code ) ?> </td>
< td class = " text-left pl-2 " >< ? = esc ( $row -> ck_name ) ?> </td>
< td class = " text-center " >
< a href = " <?= base_url('admin/code-details/' . (int) $row->ck_idx ) ?> " class = " text-blue-600 hover:underline " >< ? = ( int ) ( $countMap [ $row -> ck_idx ] ? ? 0 ) ?> 개</a>
</ td >
< td class = " text-center " >< ? = ( int ) $row -> ck_state === 1 ? '사용' : '미사용' ?> </td>
< td class = " text-left pl-2 " >< ? = esc ( $row -> ck_regdate ? ? '' ) ?> </td>
< td class = " text-center " >
< a href = " <?= base_url('admin/code-details/' . (int) $row->ck_idx ) ?> " class = " text-green-600 hover:underline text-sm mr-1 " > 세부코드 </ a >
< a href = " <?= base_url('admin/code-kinds/edit/' . (int) $row->ck_idx ) ?> " class = " text-blue-600 hover:underline text-sm mr-1 " > 수정 </ a >
< form action = " <?= base_url('admin/code-kinds/delete/' . (int) $row->ck_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 ; ?>
</ tbody >
</ table >
</ div >
2026-03-26 16:40:49 +09:00
< ? php if ( isset ( $pager )) : ?> <div class="mt-3"><?= $pager->links() ?></div><?php endif; ?>