feat(OrderController, StoreOrderController): updated logic for gift funds payment, fixed bugs, improved code quality
This commit is contained in:
parent
e5c0752280
commit
908092f39d
@ -152,7 +152,9 @@ class OrderController extends BaseApiController
|
||||
return $this->fail('密码错误');
|
||||
}
|
||||
}
|
||||
|
||||
if ($pay_type == PayEnum::GIFT_FUNDS) {
|
||||
return $this->fail('不能使用礼品券支付');
|
||||
}
|
||||
$order = OrderLogic::createOrder($cartId, $addressId, $user, $params);
|
||||
if ($order != false) {
|
||||
if ($order['pay_price'] <= 0) {
|
||||
|
@ -206,6 +206,9 @@ class StoreOrderController extends BaseAdminController
|
||||
$params['store_id'] = $this->request->adminInfo['store_id']; //当前登录的店铺id,用于判断是否是当前店铺的订单
|
||||
$params['shipping_type'] =3;
|
||||
$params['source'] =1;
|
||||
if ($pay_type == PayEnum::GIFT_FUNDS) {
|
||||
return $this->fail('不能使用礼品券支付');
|
||||
}
|
||||
$order = OrderLogic::createOrder($cartId, $addressId, $user, $params);
|
||||
if ($order != false) {
|
||||
switch ($pay_type) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user