dbms_primeidc_init...1
This commit is contained in:
parent
665943091e
commit
94f0c6ecbf
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user