feat: enhance order sales inventory workflows

This commit is contained in:
taekyoungc
2026-04-08 00:20:09 +09:00
parent 984ddb403e
commit c2dc2fd38a
42 changed files with 764 additions and 459 deletions

View File

@@ -1,31 +1,32 @@
<?php
/** @var list<object> $codeKinds */
/** @var array<int,int> $countMap */
/** @var bool $canManage */
$canManage = ! empty($canManage);
$colCount = $canManage ? 7 : 6;
/** @var bool $canManageKinds */
$canManageKinds = ! empty($canManageKinds);
$showKindActions = $canManageKinds;
$colCount = 6 + ($showKindActions ? 1 : 0);
?>
<div class="space-y-4">
<section>
<div class="flex flex-wrap items-center justify-between gap-2 mb-2 border-b pb-1">
<h3 class="text-base font-bold text-gray-700">기본코드 종류</h3>
<div class="flex flex-wrap items-center gap-2 text-xs sm:text-sm">
<?php if ($canManage): ?>
<?php if ($canManageKinds): ?>
<a href="<?= base_url('admin/code-kinds/create') ?>" class="inline-flex items-center rounded bg-[#1c4e80] px-3 py-1.5 text-white shadow hover:opacity-90">코드 종류 등록</a>
<?php else: ?>
<span class="text-gray-500">세부코드는 행의 링크에서 조회할 수 있습니다.</span>
<?php elseif (! $canManageKinds): ?>
<span class="text-gray-500">코드 종류 등록·수정은 super admin·본부 관리자만 가능합니다. 세부코드는 행의 링크에서 조회할 수 있습니다.</span>
<?php endif; ?>
</div>
</div>
<table class="data-table">
<thead><tr>
<th class="w-14"><?= $canManage ? 'PK' : '번호' ?></th>
<th class="w-14"><?= $showKindActions ? 'PK' : '번호' ?></th>
<th class="w-24">코드</th>
<th>코드명</th>
<th class="w-28">세부코드</th>
<th class="w-20">상태</th>
<th class="w-40">등록일</th>
<?php if ($canManage): ?>
<?php if ($showKindActions): ?>
<th class="w-44">작업</th>
<?php endif; ?>
</tr></thead>
@@ -33,7 +34,7 @@ $colCount = $canManage ? 7 : 6;
<?php if (! empty($codeKinds)): ?>
<?php $i = 0; foreach ($codeKinds as $row): $i++; ?>
<tr>
<td class="text-center"><?= $canManage ? esc((string) $row->ck_idx) : (string) $i ?></td>
<td class="text-center"><?= $showKindActions ? esc((string) $row->ck_idx) : (string) $i ?></td>
<td class="text-center font-mono"><?= esc($row->ck_code) ?></td>
<td><?= esc($row->ck_name) ?></td>
<td class="text-center">
@@ -41,7 +42,7 @@ $colCount = $canManage ? 7 : 6;
</td>
<td class="text-center"><?= (int) ($row->ck_state ?? 0) === 1 ? '사용' : '미사용' ?></td>
<td class="text-left"><?= esc($row->ck_regdate ?? '') ?></td>
<?php if ($canManage): ?>
<?php if ($showKindActions): ?>
<td class="text-center text-sm">
<a href="<?= base_url('bag/code-details/' . (int) $row->ck_idx) ?>" class="text-green-600 hover:underline mr-1">세부코드</a>
<a href="<?= base_url('admin/code-kinds/edit/' . (int) $row->ck_idx) ?>" class="text-blue-600 hover:underline mr-1">수정</a>