...
|
...
|
@@ -513,7 +513,7 @@ class Orders extends Api |
|
|
|
|
|
//查询订单
|
|
|
$status = $this->order_status;
|
|
|
$where = ['id'=>$order_id,'uid'=>$this->uid,'status'=>['in',$status[5],$status[8]]];//待收货,已完成
|
|
|
$where = ['id'=>$order_id,'uid'=>$this->uid,'status'=>['in',[$status[5],$status[8]]]];//待收货,已完成
|
|
|
$order = Common::findSoftWhereData('order',$where,'id');
|
|
|
if($order){
|
|
|
$orderModel = new Order();
|
...
|
...
|
|