dbms_primeidc_init...1
This commit is contained in:
parent
2cb858d748
commit
dd0d0d0b57
@ -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);
|
define('DATABASE_QUERY_DEBUG', $_ENV['DATABASE_QUERY_DEBUG'] ?? $_SERVER['DATABASE_QUERY_DEBUG'] ?? false);
|
||||||
|
|
||||||
//List관련
|
//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_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);
|
define('VIEW_LIST_PAGINATION_GROUPSIZE', $_ENV['VIEW_LIST_PAGINATION_GROUPSIZE'] ?? $_SERVER['VIEW_LIST_PAGINATION_GROUPSIZE'] ?? 10);
|
||||||
|
|
||||||
|
|||||||
@ -90,7 +90,7 @@ class PaymentController extends ClientController
|
|||||||
$this->getServiceService()->getModel()->setContinue(true);
|
$this->getServiceService()->getModel()->setContinue(true);
|
||||||
$this->total = $this->getServiceService()->getCount();
|
$this->total = $this->getServiceService()->getCount();
|
||||||
$this->entities = $this->getServiceService()->getEntities();
|
$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->perPage = $parmas['perPage'] ?? VIEW_LIST_PERPAGE;
|
||||||
$this->pagination = new Pagination($this->total, (int)$this->page, (int)$this->perPage);
|
$this->pagination = new Pagination($this->total, (int)$this->page, (int)$this->perPage);
|
||||||
return $this->render(path: __FUNCTION__);
|
return $this->render(path: __FUNCTION__);
|
||||||
|
|||||||
@ -12,7 +12,7 @@
|
|||||||
<h4><i class="fa fa-desktop fa-fw"></i> 미납리스트</h4>
|
<h4><i class="fa fa-desktop fa-fw"></i> 미납리스트</h4>
|
||||||
</div>
|
</div>
|
||||||
<div class="panel-body">
|
<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>
|
</div>
|
||||||
<!-- panel-body -->
|
<!-- panel-body -->
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user