|
|
@ -24,8 +24,11 @@ class HorsemanController extends BaseController |
|
|
|
|
|
|
|
|
public function getOrderList() |
|
|
public function getOrderList() |
|
|
{ |
|
|
{ |
|
|
$orderMainList = $this->horsemanService->getOrderList(); |
|
|
|
|
|
return $this->success(['order_list' => $orderMainList]); |
|
|
|
|
|
|
|
|
$employeesId = $this->request->input('employees_id', -1); |
|
|
|
|
|
$page = $this->request->input('page',0); |
|
|
|
|
|
$pagesize = $this->request->input('pagesize',0); |
|
|
|
|
|
$orderMainList = $this->horsemanService->getOrderList($employeesId,$page, $pagesize); |
|
|
|
|
|
return $this->success($orderMainList); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public function getOrderInfo() |
|
|
public function getOrderInfo() |
|
|
|