123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?php
- namespace app\admin\controller\healthy;
- use app\admin\controller\BaseController;
- use app\admin\server\healthy\HealthyOrderServer;
- class HealthyOrder extends BaseController
- {
- /**
- * Notes:获取订单列表
- * @return \support\Response
- * User: YCP
- * Date: 2022/11/8
- */
- public function getOrderList()
- {
- [$page, $limit] = $this->getPage();
- $keywords = $this->request->get('keywords');
- $result = HealthyOrderServer::getOrderList($page, $limit,$keywords);
- return json_success($result, '成功');
- }
- /**
- * Notes:订单详情
- * @return \support\Response
- * User: YCP
- * Date: 2022/11/8
- */
- public function getOrderInfo()
- {
- $order_id = $this->request->get('order_id');
- if(!$order_id){
- throw new \Exception('订单ID不能为空');
- }
- $result = HealthyOrderServer::orderInfo($order_id);
- if ($result){
- return json_success($result, '获取成功');
- }else{
- throw new \Exception('获取失败!');
- }
- }
- /**
- * Notes:发货
- * @return \support\Response
- * User: YCP
- * Date: 2022/11/9
- */
- public function orderDelivery()
- {
- $params = $this->request->post();
- $admin_id = $this->request->admin_id;
- $result = HealthyOrderServer::orderDelivery($params,$admin_id);
- if ($result){
- return json_success($result, '获取成功');
- }else{
- throw new \Exception('获取失败!');
- }
- }
- /**
- * Notes:修改订单支付状态
- * @return \support\Response
- * User: YCP
- * Date: 2022/11/28
- */
- public function updatePayStatus()
- {
- $order_id = $this->request->post('order_id');
- $order_pay_status = $this->request->post('order_pay_status');
- if(!$order_id){
- throw new \Exception('订单ID不能为空');
- }
- $result = HealthyOrderServer::updatePayStatus($order_id, $order_pay_status);
- return json_success($result, '修改成功');
- }
- }
|