feat(OrderController, StoreOrderController): updated logic for gift funds payment, fixed bugs, improved code quality

This commit is contained in:
mkm 2024-09-17 08:53:09 +08:00
parent e5c0752280
commit 908092f39d
2 changed files with 6 additions and 1 deletions

View File

@ -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) {

View File

@ -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) {