dbms_primeidc_init...1

This commit is contained in:
최준흠 2025-04-11 09:19:00 +09:00
parent 809936a483
commit a7e6e183c0
2 changed files with 6 additions and 8 deletions

View File

@ -5,9 +5,9 @@
<thead> <thead>
<tr> <tr>
<th style="text-align:center;">No</th> <th style="text-align:center;">No</th>
<th style="text-align:center;">발급쿠폰</th> <th style="text-align:center;">쿠폰 누적수</th>
<th style="text-align:center;">남은수량</th> <th style="text-align:center;">쿠폰 잔량수</th>
<th style="text-align:center;">사용완료</th> <th style="text-align:center;">쿠폰 사용수</th>
<th style="text-align:center;">고객명</th> <th style="text-align:center;">고객명</th>
<th style="text-align:center;">서비스코드</th> <th style="text-align:center;">서비스코드</th>
<th style="text-align:center;">장비명</th> <th style="text-align:center;">장비명</th>

View File

@ -26,11 +26,9 @@
<td>도메인 구매 수량</td> <td>도메인 구매 수량</td>
<td colspan="5"> <td colspan="5">
<select name="onetime_sub" id="onetime_sub"> <select name="onetime_sub" id="onetime_sub">
<?php <?php for ($i = 1; $i < $this->service->getCoupon(); $i++) { ?>
for ($i = 1; $i < $this->service->getCoupon(); $i++) { <option value="<?= $i ?>"><?= $i ?>개</option>
echo "<option value=\"$i\">$i </option>"; <? php } ?>
}
?>
</select> (개별 서버에 할당된 남은 쿠폰 수량 : <?= $this->service->getCoupon() ?>) </select> (개별 서버에 할당된 남은 쿠폰 수량 : <?= $this->service->getCoupon() ?>)
<!--<input type="text" name="onetime_sub" id="onetime_sub"/> (개별 서버에 할당된 남은 쿠폰 수량 : <?= $service['coupon'] ?>) <!--<input type="text" name="onetime_sub" id="onetime_sub"/> (개별 서버에 할당된 남은 쿠폰 수량 : <?= $service['coupon'] ?>)
<br>* 도메인 쿠폰 사용시 반드시 숫자로만 갯수를 입력하세요 (* 3 구매시 작성 예제 : <font color=red><b>3</b></font>)--> <br>* 도메인 쿠폰 사용시 반드시 숫자로만 갯수를 입력하세요 (* 3 구매시 작성 예제 : <font color=red><b>3</b></font>)-->