|
@@ -858,6 +858,12 @@ if (!function_exists("check_qapp_send_order_id)")){
|
|
|
Redis::hSet("qapp:send_order:distribution_channel",$sendOrderId,$sendOrderChannelId);
|
|
|
}
|
|
|
}
|
|
|
- return trim($channelId) === trim($sendOrderChannelId);
|
|
|
+
|
|
|
+ if (trim($channelId) !== trim($sendOrderChannelId)){
|
|
|
+ myLog("QuickAppSendOrderError")->info("派单渠道和包名不匹配: send_order_id = {$sendOrderId};sned_order_id_channel_id= {$sendOrderChannelId};channel_id= {$channelId} ");
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+
|
|
|
+ return true;
|
|
|
}
|
|
|
}
|