From 2cb858d748fef42e8ca702e0ba4836cd54661fe3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=B5=9C=EC=A4=80=ED=9D=A0?= Date: Wed, 9 Apr 2025 17:06:00 +0900 Subject: [PATCH] dbms_primeidc_init...1 --- extdbms/lib/Configs/Constant.php | 6 +++++- extdbms/lib/Controllers/DBMS/Client/PaymentController.php | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/extdbms/lib/Configs/Constant.php b/extdbms/lib/Configs/Constant.php index 569696c..d3f8121 100644 --- a/extdbms/lib/Configs/Constant.php +++ b/extdbms/lib/Configs/Constant.php @@ -1,5 +1,5 @@ getServiceService()->getModel()->setContinue(true); $this->total = $this->getServiceService()->getCount(); $this->entities = $this->getServiceService()->getEntities(); - $this->page = $parmas['page'] ?? 1; - $this->perPage = $parmas['perPage'] ?? 10; + $this->page = $parmas['page'] ?? VIEW_LIST_PAGE; + $this->perPage = $parmas['perPage'] ?? VIEW_LIST_PERPAGE; $this->pagination = new Pagination($this->total, (int)$this->page, (int)$this->perPage); return $this->render(path: __FUNCTION__); }