|
@@ -115,10 +115,18 @@ class Order extends Auth
|
|
|
'pay_no'=>$pay_no,
|
|
|
'money'=>$order_money,
|
|
|
'status'=>1,
|
|
|
- 'create_at'=>date('Y-m-d H:i:s')
|
|
|
+ 'create_at'=>date('Y-m-d H:i:s'),
|
|
|
+ 'cart_ids' => $cart_ids
|
|
|
];
|
|
|
- ShopOrderPay::mk()->insert($pay_data);
|
|
|
+
|
|
|
ShopGoodsCart::mk()->whereIn('id',$cart_ids)->delete();
|
|
|
+ if($order_money <= 0){
|
|
|
+ $pay_a = ShopOrderPay::mk()->where(array('cart_ids'=>$cart_ids))->find();
|
|
|
+ $pay_no = $pay_a['pay_no'];
|
|
|
+ }else{
|
|
|
+ ShopOrderPay::mk()->insert($pay_data);
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
$this->success('快去支付吧',$pay_no);
|
|
|
|
|
@@ -166,7 +174,6 @@ class Order extends Auth
|
|
|
}
|
|
|
ShopOrder::mk()->where('payment_trade',$order_no)->save(['payment_type'=>$payment_type]);
|
|
|
$notify_url = sysuri("@data/api.notify/{$notify_name}/scene/order/param/{$code}", [], false, true);
|
|
|
-
|
|
|
$parm = ['uuid'=>$this->uuid];
|
|
|
$pay =PaymentService::instance($code)->create($user['openid1'],$order_no,$all_price,'商品下单支付','商品下单支付','','',$notify_url,$parm);
|
|
|
$retrun_data['order_no'] = $order_no;
|