diff --git a/extdbms/lib/Controllers/DBMS/Client/OnetimeController.php b/extdbms/lib/Controllers/DBMS/Client/OnetimeController.php index 35c47bb..31974f2 100644 --- a/extdbms/lib/Controllers/DBMS/Client/OnetimeController.php +++ b/extdbms/lib/Controllers/DBMS/Client/OnetimeController.php @@ -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();