|
@@ -1161,7 +1161,7 @@ class StoreOrder extends BaseModel
|
|
|
else if ($status == -3)
|
|
|
return $model->where('paid', 1)->where('refund_status', 'IN', '1,2');
|
|
|
else if ($status == 10086)
|
|
|
- return $model->where('paid', 1)->where('status', 0)->where('refund_status', 0)->where('store_id', 0)->where('shipping_type', 2);
|
|
|
+ return $model->where('paid', 1)->where('refund_status', 0)->where('store_id', 0)->where('shipping_type', 2);
|
|
|
|
|
|
|
|
|
|
|
@@ -1182,10 +1182,10 @@ class StoreOrder extends BaseModel
|
|
|
*/
|
|
|
public static function getUserOrderList($uid, $status = '', $page = 0, $limit = 8)
|
|
|
{
|
|
|
- if ($page) $list = self::statusByWhere($status, $uid)->where('is_del', 0)->where('uid', $uid)
|
|
|
+ if ($page) $list = self::statusByWhere($status, $uid)->where('is_del', 0)->where('uid|gift_uid', $uid)
|
|
|
->field('add_time,seckill_id,bargain_id,combination_id,id,order_id,pay_price,total_num,total_price,pay_postage,total_postage,paid,status,refund_status,pay_type,coupon_price,deduction_price,pink_id,delivery_type,is_del,shipping_type')
|
|
|
->order('add_time DESC')->page((int)$page, (int)$limit)->select()->toArray();
|
|
|
- else $list = self::statusByWhere($status, $uid)->where('is_del', 0)->where('uid', $uid)
|
|
|
+ else $list = self::statusByWhere($status, $uid)->where('is_del', 0)->where('uid|gift_uid', $uid)
|
|
|
->field('add_time,seckill_id,bargain_id,combination_id,id,order_id,pay_price,total_num,total_price,pay_postage,total_postage,paid,status,refund_status,pay_type,coupon_price,deduction_price,pink_id,delivery_type,is_del,shipping_type')
|
|
|
->order('add_time DESC')->page((int)$page, (int)$limit)->select()->toArray();
|
|
|
foreach ($list as $k => $order) {
|
|
@@ -1218,7 +1218,7 @@ class StoreOrder extends BaseModel
|
|
|
*/
|
|
|
public static function searchUserOrder($uid, $order_id)
|
|
|
{
|
|
|
- $order = self::where('uid', $uid)->where('order_id', $order_id)->where('is_del', 0)->field('seckill_id,bargain_id,combination_id,id,order_id,pay_price,total_num,total_price,pay_postage,total_postage,paid,status,refund_status,pay_type,coupon_price,deduction_price,delivery_type,shipping_type')
|
|
|
+ $order = self::where('uid|gift_uid', $uid)->where('order_id', $order_id)->where('is_del', 0)->field('seckill_id,bargain_id,combination_id,id,order_id,pay_price,total_num,total_price,pay_postage,total_postage,paid,status,refund_status,pay_type,coupon_price,deduction_price,delivery_type,shipping_type')
|
|
|
->order('add_time DESC')->find();
|
|
|
if (!$order)
|
|
|
return false;
|