dbms_primeidc_init...1

This commit is contained in:
최준흠 2025-04-10 11:36:04 +09:00
parent 665943091e
commit 94f0c6ecbf

View File

@ -87,11 +87,13 @@ class PaymentController extends ClientController
$this->getServiceService()->getModel()->whereNotIn("{$addDbTable}.client_code", $exclude_clients);
$this->getServiceService()->getModel()->whereNotIn("{$addDbTable}.addDB_accountStatus", ["complete"]);
$this->getServiceService()->getModel()->orderBy("service_payment_date", "DESC");
$this->getServiceService()->getModel()->limit($perPage);
$this->getServiceService()->getModel()->offset(($curPage - 1) * $perPage);
//Query문 Rest여부 -> 같은조건에 Count 받고, 결과값을 받고 싶을때는 continue()
$this->getServiceService()->getModel()->setContinue(true);
$this->total = $this->getServiceService()->getCount();
//limit, offset 설정
$this->getServiceService()->getModel()->limit($perPage);
$this->getServiceService()->getModel()->offset(($curPage - 1) * $perPage);
$this->entities = $this->getServiceService()->getEntities();
$this->mode = $mode;
$this->curPage = $curPage;