Files
jongryangje/app/Views/admin/bag_order/detail.php
javamon1174 d9d3ef46c1 Phase 3 발주/입고/재고 관리 구현
- DB: bag_order, bag_order_item, bag_receiving, bag_inventory 테이블
- 발주: UUID v4, SHA-256 해시, LOT번호 자동생성, 봉투별 품목 관리
  - 포장단위 연동 (박스→낱장 자동 환산), 단가 연동 (금액 자동 계산)
  - 발주 현황 (기간/상태 필터), 상세 조회, 취소/삭제 (상태 변경)
- 입고: 발주건 기반 입고 처리, 박스→낱장 환산, 재고 자동 가산
- 재고: 지자체별 봉투 종류별 현재 재고 조회
- E2E 테스트 7개 전체 통과

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-25 18:13:01 +09:00

103 lines
3.8 KiB
PHP

<section class="border-b border-gray-300 p-2 shrink-0 bg-control-panel">
<div class="flex items-center gap-2">
<a href="<?= base_url('admin/bag-orders') ?>" class="text-blue-600 hover:underline text-sm">&larr; 발주 목록</a>
<span class="text-gray-400">|</span>
<span class="text-sm font-bold text-gray-700">발주 상세 <?= esc($order->bo_lot_no) ?></span>
</div>
</section>
<div class="border border-gray-300 p-4 mt-2 bg-white max-w-4xl">
<table class="w-full text-sm">
<tbody>
<tr class="border-b">
<th class="text-left py-2 pr-4 text-gray-600 w-28">UUID</th>
<td class="py-2 font-mono"><?= esc($order->bo_uuid) ?></td>
</tr>
<tr class="border-b">
<th class="text-left py-2 pr-4 text-gray-600 w-28">버전</th>
<td class="py-2"><?= esc($order->bo_version) ?></td>
</tr>
<tr class="border-b">
<th class="text-left py-2 pr-4 text-gray-600 w-28">발주일</th>
<td class="py-2"><?= esc($order->bo_order_date) ?></td>
</tr>
<tr class="border-b">
<th class="text-left py-2 pr-4 text-gray-600 w-28">제작업체</th>
<td class="py-2"><?= esc($companyName ?? '') ?></td>
</tr>
<tr class="border-b">
<th class="text-left py-2 pr-4 text-gray-600 w-28">입고처</th>
<td class="py-2"><?= esc($agencyName ?? '') ?></td>
</tr>
<tr class="border-b">
<th class="text-left py-2 pr-4 text-gray-600 w-28">LOT번호</th>
<td class="py-2 font-mono"><?= esc($order->bo_lot_no) ?></td>
</tr>
<tr class="border-b">
<th class="text-left py-2 pr-4 text-gray-600 w-28">수수료율</th>
<td class="py-2"><?= esc($order->bo_fee_rate) ?>%</td>
</tr>
<tr class="border-b">
<th class="text-left py-2 pr-4 text-gray-600 w-28">상태</th>
<td class="py-2">
<?php
$statusMap = ['normal' => '정상', 'cancelled' => '취소', 'deleted' => '삭제'];
echo esc($statusMap[$order->bo_status] ?? $order->bo_status);
?>
</td>
</tr>
<tr>
<th class="text-left py-2 pr-4 text-gray-600 w-28">해시</th>
<td class="py-2 font-mono text-xs"><?= esc($order->bo_hash) ?></td>
</tr>
</tbody>
</table>
</div>
<div class="border border-gray-300 overflow-auto mt-4">
<table class="w-full data-table">
<thead>
<tr>
<th>봉투코드</th>
<th>봉투명</th>
<th>단가</th>
<th>박스수</th>
<th>낱장수</th>
<th>금액</th>
</tr>
</thead>
<tbody class="text-right">
<?php
$totalQtyBox = 0;
$totalQtySheet = 0;
$totalAmount = 0;
?>
<?php foreach ($items as $item): ?>
<tr>
<td class="text-center font-mono"><?= esc($item->boi_bag_code) ?></td>
<td class="text-left pl-2"><?= esc($item->boi_bag_name) ?></td>
<td><?= number_format((float) $item->boi_unit_price) ?></td>
<td><?= number_format((int) $item->boi_qty_box) ?></td>
<td><?= number_format((int) $item->boi_qty_sheet) ?></td>
<td><?= number_format((float) $item->boi_amount) ?></td>
</tr>
<?php
$totalQtyBox += (int) $item->boi_qty_box;
$totalQtySheet += (int) $item->boi_qty_sheet;
$totalAmount += (float) $item->boi_amount;
?>
<?php endforeach; ?>
<?php if (empty($items)): ?>
<tr><td colspan="6" class="text-center text-gray-400 py-4">등록된 품목이 없습니다.</td></tr>
<?php endif; ?>
</tbody>
<tfoot class="bg-gray-50 font-bold text-right">
<tr>
<td colspan="3" class="text-center">합계</td>
<td><?= number_format($totalQtyBox) ?></td>
<td><?= number_format($totalQtySheet) ?></td>
<td><?= number_format($totalAmount) ?></td>
</tr>
</tfoot>
</table>
</div>