diff --git a/app/Controller/CallBackController.php b/app/Controller/CallBackController.php index 254d19f..29aa845 100644 --- a/app/Controller/CallBackController.php +++ b/app/Controller/CallBackController.php @@ -874,6 +874,8 @@ class CallBackController extends AbstractController /** * 快递100订阅回调 * @return ResponseInterface + * @throws ContainerExceptionInterface + * @throws NotFoundExceptionInterface */ public function LogisticsCallBack(): ResponseInterface { @@ -1041,7 +1043,7 @@ class CallBackController extends AbstractController if (!empty($status)){ // 患者-药品已发货-订阅失败发送短信 $MessagePush = new MessagePush($user_patient['user_id']); - $MessagePush->logistics($status,$order_product['patient_id']); + $MessagePush->logistics($status,$order_product['order_product_id']); $redis->set($redis_key, 1, 60 * 10); } }