Feat: VIP 만료일 관리 기능 추가 - 테이블에 만료일 컬럼 추가, 입장 시 자동 만료일 설정, 일괄 설정 페이지 추가

This commit is contained in:
2026-02-20 14:52:06 +09:00
parent 84d4ece13f
commit fc093e0908
3 changed files with 133 additions and 3 deletions

View File

@ -157,6 +157,7 @@ $table = "{$fg['vip_list_table']} AS a LEFT JOIN {$fg['vip_category_table']} AS
<col width="130px">
<col width="100px">
<col width="90px">
<col width="90px">
<col width="50px">
<col width="100px">
</colgroup>
@ -167,6 +168,7 @@ $table = "{$fg['vip_list_table']} AS a LEFT JOIN {$fg['vip_category_table']} AS
<th class="text-center">성명</th>
<th class="text-center">연락처</th>
<th class="text-center">생년월일</th>
<th class="text-center">만료일</th>
<th class="text-center">최종이용일</th>
<th class="text-center">방문횟수</th>
<?php if($_SESSION['user_lv'] > "1"){ ?>
@ -182,6 +184,7 @@ $table = "{$fg['vip_list_table']} AS a LEFT JOIN {$fg['vip_category_table']} AS
<td class="text-center"><?=$R['vip_name']?></td>
<td class="text-center"><?=$R['vip_tel']?></td>
<td class="text-center"><?=$R['vip_birth']?></td>
<td class="text-center"><?=($R['vip_date'] == '9999-12-31')? '평생' : $R['vip_date']?></td>
<td class="text-center">
<?php
$edate = $R['last_ent_date'];