dbms_primeidc_init...1

This commit is contained in:
최준흠 2025-04-09 17:09:25 +09:00
parent 2cb858d748
commit dd0d0d0b57
3 changed files with 2 additions and 3 deletions

View File

@ -9,7 +9,6 @@ define('DATABASE_PASSWORD', $_ENV['DATABASE_PASSWORD'] ?? $_SERVER['DATABASE_PAS
define('DATABASE_QUERY_DEBUG', $_ENV['DATABASE_QUERY_DEBUG'] ?? $_SERVER['DATABASE_QUERY_DEBUG'] ?? false);
//List관련
define('VIEW_LIST_PAGE', $_ENV['VIEW_LIST_PAGE'] ?? $_SERVER['VIEW_LIST_PAGE'] ?? 1);
define('VIEW_LIST_PERPAGE', $_ENV['VIEW_LIST_PERPAGE'] ?? $_SERVER['VIEW_LIST_PERPAGE'] ?? 20);
define('VIEW_LIST_PAGINATION_GROUPSIZE', $_ENV['VIEW_LIST_PAGINATION_GROUPSIZE'] ?? $_SERVER['VIEW_LIST_PAGINATION_GROUPSIZE'] ?? 10);

View File

@ -90,7 +90,7 @@ class PaymentController extends ClientController
$this->getServiceService()->getModel()->setContinue(true);
$this->total = $this->getServiceService()->getCount();
$this->entities = $this->getServiceService()->getEntities();
$this->page = $parmas['page'] ?? VIEW_LIST_PAGE;
$this->page = $parmas['curPage'] ?? 1;
$this->perPage = $parmas['perPage'] ?? VIEW_LIST_PERPAGE;
$this->pagination = new Pagination($this->total, (int)$this->page, (int)$this->perPage);
return $this->render(path: __FUNCTION__);

View File

@ -12,7 +12,7 @@
<h4><i class="fa fa-desktop fa-fw"></i> 미납리스트</h4>
</div>
<div class="panel-body">
<c:import url="${phpurl}/dbms/client/payment/nonpayment/mode/mode/${mode}?ea=${ea}&curPage=${curPage}" />
<c:import url="${phpurl}/dbms/client/payment/nonpayment/mode/${mode}/ea/${ea}&curPage//${curPage}" />
</div>
<!-- panel-body -->
</div>