dbms_primeidc_init...1

This commit is contained in:
최준흠 2025-04-09 16:21:23 +09:00
parent 77a9bbdb34
commit d86b67f6de

View File

@ -90,10 +90,9 @@ class PaymentController extends ClientController
$this->getServiceService()->getModel()->setContinue(true);
$this->total = $this->getServiceService()->getCount();
$this->entities = $this->getServiceService()->getEntities();
// $total = count($temps);
// $page = $parmas['page'] ?? 1;
// $perPage = $parmas['perPage'] ?? 10;
// $this->pagination = new Pagination($total, (int)$page, (int)$perPage);
$this->page = $parmas['page'] ?? 1;
$this->perPage = $parmas['perPage'] ?? 10;
$this->pagination = new Pagination($this->total, (int)$this->page, (int)$this->perPage);
return $this->render(path: __FUNCTION__);
}
} //Class