row->order_id; $order = Order::where(['id'=>$id])->with('orderUser')->first(); $sn = $order->order_sn; if(empty($order->orderUser) || empty($order->orderUser->openid) ) return true; $openid = $order->orderUser->openid; // $openid = 'oYmUA5A1OIqtpA1XSrw35tbjtv1w'; $time = $this->row->created_at; $price = ($this->row->total_amount / 100); $pantient = $this->row->patients->name; $organization = Organization::where(['id'=>$this->row->orders->organization_id])->value('name'); $paystatus = Order::getPayStatus()[$this->row->orders->payment_status]; DB::beginTransaction(); try { //退还余额 $res = Order::orderCancel($id,'社区取消'); $msg = [ $openid,$sn,'儿保预约',$price,$time,$pantient,$organization,'社区取消',$paystatus ]; $miniMsg = [ $openid,$sn,'社区取消','儿保预约',$paystatus ]; //用户和医生都要发 $ret = admin_send_wechat_message(1,$msg,$miniMsg); DB::commit(); } catch ( \Exception $e){ dump($e->getMessage()); DB::rollBack(); return $this->response()->error('操作失败!'); } if($res){ return $this->response()->success('操作成功!')->refresh(); } return $this->response()->error('操作失败!'); } }