dbms_primeidc_init...1

This commit is contained in:
최준흠 2025-04-11 12:30:08 +09:00
parent a813ea810c
commit 55d9d95c2a

View File

@ -38,7 +38,7 @@ class OnetimeController extends ClientController
//쿠폰내역
$this->curPage = intval($params['curPage'] ?? $this->request->get('curPage') ?? 1);
$this->perPage = intval($params['perPage'] ?? $this->request->get('perPage') ?? VIEW_LIST_PERPAGE);
[$this->total, $this->services] = $this->getOnetimeService()->getEntitiesForDomainCoupon($this->curPage, $this->perPage);
[$this->total, $this->entities] = $this->getOnetimeService()->getEntitiesForDomainCoupon($this->curPage, $this->perPage);
$this->pagination = new Pagination($this->total, (int)$this->curPage, (int)$this->perPage);
//전체 고객정보
$this->clients = $this->getClientService()->getEntities();