<?php namespace app\admin\controller\litestore; use app\api\model\RiderOrder; use app\common\controller\Backend; /** * * * @icon fa fa-circle-o */ class Litestoreorder extends Backend { /** * Litestoreorder模型对象 * @var \app\admin\model\litestore\Litestoreorder */ protected $model = null; public function _initialize() { parent::_initialize(); $this->model = new \app\admin\model\litestore\Litestoreorder; $this->view->assign("payStatusList", $this->model->getPayStatusList()); $this->view->assign("freightStatusList", $this->model->getFreightStatusList()); $this->view->assign("receiptStatusList", $this->model->getReceiptStatusList()); $this->view->assign("orderStatusList", $this->model->getOrderStatusList()); } /** * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法 * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑 * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改 */ /** * 查看 */ public function index() { //当前是否为关联查询 $this->relationSearch = true; //设置过滤方法 $this->request->filter(['strip_tags']); if ($this->request->isAjax()) { //如果发送的来源是Selectpage,则转发到Selectpage if ($this->request->request('keyField')) { return $this->selectpage(); } list($where, $sort, $order, $offset, $limit) = $this->buildparams(); $total = $this->model ->with(['address']) ->where($where) ->order($sort, $order) ->count(); $list = $this->model ->with(['address','rider']) ->where($where) ->order($sort, $order) ->limit($offset, $limit) ->select(); foreach ($list as $row) { $row->visible(['id','order_no','total_price','pay_price','pay_status','pay_time','express_price','freight_status','freight_time','receipt_time','order_status','updatetime']); $row->visible(['address']); $row->getRelation('address')->visible(['name']); $row->visible(['rider']); $row->getRelation('rider')->visible(['nickname']); } $list = collection($list)->toArray(); $result = array("total" => $total, "rows" => $list); return json($result); } return $this->view->fetch(); } public function detail(){ if($this->request->isPost()) { $id = input('post.ids'); $row = $this->model->get($id); $row['pay_status'] == '10' && $this->error('订单未支付,禁止分配骑手'); $row['freight_status'] = "20"; $row['freight_time'] = time(); $row['rider_user_id'] = input('post.virtual_name'); // $row['express_no'] = input('post.virtual_sn'); $row->save(); $param = [ 'order_id' => $row->id, 'user_id' => input('post.virtual_name'), 'address_id' => $row['address']['id'], 'price' => $row->express_price, ]; RiderOrder::create($param); $this->success(); } $param = $this->request->param(); $row = $this->model->get($param['ids']); $this->view->assign('vo', $row); return $this->view->fetch(); } // 快捷匹配骑手 public function render(){ if($this->request->isPost()) { $id = input('get.ids'); $row = $this->model->get($id); $row['pay_status'] == '10' && $this->error('订单未支付,禁止分配骑手'); $row['freight_status'] = "20"; $row['freight_time'] = time(); $row['rider_user_id'] = input('post.virtual_name'); $row->save(); $param = [ 'order_id' => $row->id, 'user_id' => input('post.virtual_name'), 'address_id' => $row['address']['id'], 'price' => $row->express_price, ]; RiderOrder::create($param); $this->success(); } return $this->view->fetch(); } }