Add config and server-level DB identity fields (host/port/user, @@hostname/@@port/@@version) to packaging-units db_diag so production can verify the exact runtime DB endpoint.
57 lines
3.3 KiB
PHP
57 lines
3.3 KiB
PHP
<div class="space-y-4">
|
|
<?php if (isset($dbDiag) && is_array($dbDiag)): ?>
|
|
<section class="rounded border border-amber-300 bg-amber-50 px-3 py-2 text-xs text-amber-900">
|
|
<div class="font-semibold mb-1">DB 진단 모드</div>
|
|
<div>lg_idx: <?= esc((string) ($dbDiag['lg_idx'] ?? 'null')) ?></div>
|
|
<div>cfg_host: <?= esc((string) ($dbDiag['cfg_host'] ?? '')) ?></div>
|
|
<div>cfg_port: <?= esc((string) ($dbDiag['cfg_port'] ?? '')) ?></div>
|
|
<div>cfg_user: <?= esc((string) ($dbDiag['cfg_user'] ?? '')) ?></div>
|
|
<div>database: <?= esc((string) ($dbDiag['db_name'] ?? '')) ?></div>
|
|
<div>mysql_host(@@hostname): <?= esc((string) ($dbDiag['mysql_host'] ?? '')) ?></div>
|
|
<div>mysql_port(@@port): <?= esc((string) ($dbDiag['mysql_port'] ?? '')) ?></div>
|
|
<div>mysql_version(@@version): <?= esc((string) ($dbDiag['mysql_version'] ?? '')) ?></div>
|
|
<div>packaging_unit(현재 lg): <?= esc((string) ($dbDiag['packaging_unit'] ?? 'null')) ?></div>
|
|
<div>code_kind: <?= esc((string) ($dbDiag['code_kind'] ?? 'null')) ?></div>
|
|
<div>code_detail: <?= esc((string) ($dbDiag['code_detail'] ?? 'null')) ?></div>
|
|
<?php if (! empty($dbDiag['error'])): ?>
|
|
<div class="mt-1 text-red-700">error: <?= esc((string) $dbDiag['error']) ?></div>
|
|
<?php endif; ?>
|
|
</section>
|
|
<?php endif; ?>
|
|
<p class="text-sm text-gray-600">
|
|
<a href="<?= base_url('bag/basic-info') ?>" class="text-blue-600 hover:underline">← 기본정보관리</a>
|
|
<span class="mx-2 text-gray-300">|</span>
|
|
<a href="<?= base_url('bag/prices') ?>" class="text-blue-600 hover:underline">봉투 단가</a>
|
|
</p>
|
|
<section>
|
|
<div class="flex items-center justify-between mb-2 border-b pb-1">
|
|
<h3 class="text-base font-bold text-gray-700">포장 단위</h3>
|
|
<a href="<?= base_url('bag/packaging-units/manage') ?>" class="text-blue-600 hover:underline text-sm">관리 →</a>
|
|
</div>
|
|
<table class="data-table">
|
|
<thead><tr>
|
|
<th class="w-16">번호</th><th>봉투코드</th><th>봉투명</th><th>박스당 팩 수</th><th>팩당 낱장 수</th><th>1박스 총 낱장</th><th>적용시작</th><th>적용종료</th><th>상태</th>
|
|
</tr></thead>
|
|
<tbody>
|
|
<?php if (! empty($packagingUnits)): ?>
|
|
<?php foreach ($packagingUnits as $i => $row): ?>
|
|
<tr>
|
|
<td class="text-center"><?= $i + 1 ?></td>
|
|
<td class="text-center"><?= esc($row->pu_bag_code) ?></td>
|
|
<td><?= esc($row->pu_bag_name ?? '') ?></td>
|
|
<td class="text-right"><?= number_format((int) ($row->pu_box_per_pack ?? 0)) ?></td>
|
|
<td class="text-right"><?= number_format((int) ($row->pu_pack_per_sheet ?? 0)) ?></td>
|
|
<td class="text-right"><?= number_format((int) ($row->pu_total_per_box ?? 0)) ?></td>
|
|
<td class="text-center"><?= esc($row->pu_start_date ?? '') ?></td>
|
|
<td class="text-center"><?= ($row->pu_end_date ?? '') !== '' && $row->pu_end_date !== null ? esc((string) $row->pu_end_date) : '현재' ?></td>
|
|
<td class="text-center"><?= (int) ($row->pu_state ?? 1) === 1 ? '사용' : '만료' ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
<?php else: ?>
|
|
<tr><td colspan="9" class="text-center text-gray-400 py-4">등록된 포장 단위가 없습니다.</td></tr>
|
|
<?php endif; ?>
|
|
</tbody>
|
|
</table>
|
|
</section>
|
|
</div>
|