修改物流发货信息推送

This commit is contained in:
wucongxing 2023-04-27 11:07:58 +08:00
parent 049120203d
commit 5efff2dc02

View File

@ -874,6 +874,8 @@ class CallBackController extends AbstractController
/** /**
* 快递100订阅回调 * 快递100订阅回调
* @return ResponseInterface * @return ResponseInterface
* @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface
*/ */
public function LogisticsCallBack(): ResponseInterface public function LogisticsCallBack(): ResponseInterface
{ {
@ -1041,7 +1043,7 @@ class CallBackController extends AbstractController
if (!empty($status)){ if (!empty($status)){
// 患者-药品已发货-订阅失败发送短信 // 患者-药品已发货-订阅失败发送短信
$MessagePush = new MessagePush($user_patient['user_id']); $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); $redis->set($redis_key, 1, 60 * 10);
} }
} }