Merge branch 'dev' of https://gitea.lihaink.cn/mkm/multi-store into dev
This commit is contained in:
commit
e960f06837
@ -183,10 +183,11 @@ class OrderController extends BaseApiController
|
||||
$user=User::where('id',$this->userId)->find();
|
||||
|
||||
$order = OrderLogic::createOrder($cartId, $addressId, $user, $params);
|
||||
if($order['pay_price'] <= 0){
|
||||
$pay_type = 3;
|
||||
}
|
||||
|
||||
if ($order != false) {
|
||||
if($order['pay_price'] <= 0){
|
||||
$pay_type = 3;
|
||||
}
|
||||
switch ($pay_type) {
|
||||
case PayEnum::PURCHASE_FUNDS:
|
||||
//采购款支付
|
||||
|
@ -111,7 +111,7 @@ class PayNotifyLogic extends BaseLogic
|
||||
$user->save();
|
||||
|
||||
$capitalFlowDao = new CapitalFlowLogic($user);
|
||||
$capitalFlowDao->userExpense('user_order_pay', 'order', $order['id'], $order['pay_price']);
|
||||
$capitalFlowDao->userExpense('user_order_purchase_pay', 'order', $order['id'], $order['pay_price']);
|
||||
self::afterPay($order);
|
||||
Redis::send('push-platform-print', ['id' => $order['id']], 60);
|
||||
PushService::push('store_merchant_' . $order['store_id'], $order['store_id'], ['type' => 'store_merchant', 'msg' => '您有一笔新的订单']);
|
||||
|
Loading…
x
Reference in New Issue
Block a user