This commit is contained in:
unknown 2023-08-15 10:38:38 +08:00
parent 2f38b069d8
commit 1dd39c5e1e

View File

@ -293,7 +293,7 @@ class LogisticsLogic extends BaseLogic
return ['code'=>0, 'msg'=>'订单已被取消']; return ['code'=>0, 'msg'=>'订单已被取消'];
} }
//验证取件码 //验证取件码
if($logistics['receiver_take_code'] !== $params['take_code']) return ['code'=>0, 'msg'=>'取件码错误']; if($logistics['receiver_take_code'] != $params['take_code']) return ['code'=>0, 'msg'=>'取件码错误'];
//更改物流信息状态 //更改物流信息状态
Logistics::startTrans(); Logistics::startTrans();
try { try {