dbms_primeidc_init...1

This commit is contained in:
최준흠 2025-04-10 11:24:04 +09:00
parent a07f8bf2e9
commit 889d379cd8
2 changed files with 2 additions and 1 deletions

View File

@ -93,6 +93,7 @@ class PaymentController extends ClientController
$this->getServiceService()->getModel()->setContinue(true);
$this->total = $this->getServiceService()->getCount();
$this->entities = $this->getServiceService()->getEntities();
$this->mode = $mode;
$this->curPage = $curPage;
$this->perPage = $perPage;
$this->pagination = new Pagination($this->total, (int)$this->curPage, (int)$this->perPage);

View File

@ -1,5 +1,5 @@
<form method="get" action="#">
<input type="radio" name="mode" value="all" <?= $this->mode == "all" ? "checked" : "" ?>>전체
<input type="radio" name="mode" value="all" <?= $this->mode == "all" || $this->mode == "" ? "checked" : "" ?>>전체
<input type="radio" name="mode" value="today" <?= $this->mode == "today" ? "checked" : "" ?>>당일
<input type="radio" name="mode" value="1day" <?= $this->mode == "1day" ? "checked" : "" ?>>1일전
<input type="radio" name="mode" value="2day" <?= $this->mode == "2day" ? "checked" : "" ?>>2일전