- Bag 컨트롤러 신규 (기본정보/발주입고/불출/재고/판매/판매현황/수불/통계/창/도움말) - 사이트 공통 레이아웃 bag/layout/main.php 추출 - /bag/* 라우트 10개 등록 (Routes.php) - bag-site.spec.js E2E 테스트 11개 추가 - Playwright timeout 30s→60s, waitForURL 15s→30s - P4 지자체관리자 접근 테스트 3개로 분리 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
21 lines
822 B
PHP
21 lines
822 B
PHP
<table class="data-table">
|
|
<thead><tr>
|
|
<th class="w-16">번호</th><th>봉투코드</th><th>봉투명</th><th>현재재고(낱장)</th><th>최종갱신</th>
|
|
</tr></thead>
|
|
<tbody>
|
|
<?php if (! empty($list)): ?>
|
|
<?php foreach ($list as $i => $row): ?>
|
|
<tr>
|
|
<td class="text-center"><?= $i + 1 ?></td>
|
|
<td class="text-center"><?= esc($row->bi_bag_code ?? '') ?></td>
|
|
<td><?= esc($row->bi_bag_name ?? '') ?></td>
|
|
<td class="text-right"><?= number_format((int)($row->bi_qty_sheet ?? 0)) ?></td>
|
|
<td class="text-center"><?= esc($row->bi_updated_at ?? $row->updated_at ?? '') ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
<?php else: ?>
|
|
<tr><td colspan="5" class="text-center text-gray-400 py-4">재고 데이터가 없습니다.</td></tr>
|
|
<?php endif; ?>
|
|
</tbody>
|
|
</table>
|