services = $service; $this->uid = (int)$request->uid(); } /** * @return void * @throws DataNotFoundException * @throws DbException * @throws ModelNotFoundException */ protected function getStaffInfo() { /** @var SystemStoreStaffServices $staffServices */ $staffServices = app()->make(SystemStoreStaffServices::class); $this->staffInfo = $staffServices->getStaffInfoByUid($this->uid)->toArray(); $this->store_id = (int)$this->staffInfo['store_id'] ?? 0; $this->staff_id = (int)$this->staffInfo['id'] ?? 0; } /** * 移动端订单管理退款列表 * @param Request $request * @return \think\Response * @throws DataNotFoundException * @throws DbException * @throws ModelNotFoundException */ public function refundOrderList(Request $request) { $where = $request->getMore([ ['order_id', ''], ['time', ''], ['refundTypes', ''], ['apply_type', ''], ['pay_type', ''], ]); $this->getStaffInfo(); $where['store_id'] =$this->store_id; $data = $this->services->refundList($where)['list'] ?? []; return app('json')->success($data); } /** * 订单详情 * @param $uni * @return \think\Response */ public function refundOrderDetail($uni) { $data = $this->services->refundDetail($uni); return app('json')->successful('ok', $data); } /** * 修改备注 * @param Request $request * @return \think\Response */ public function refundRemark(Request $request) { [$remark, $order_id] = $request->postMore([ ['remark', ''], ['order_id', ''], ], true); if (!$remark) return app('json')->fail('请输入要备注的内容'); if (!$order_id) return app('json')->fail('缺少参数'); if (!$order = $this->services->get(['order_id' => $order_id])) { return app('json')->fail('修改的订单不存在!'); } $order->remark = $remark; if ($order->save()) { return app('json')->success('备注成功'); } else return app('json')->fail('备注失败'); } }