feat: 修改支付通知逻辑,引入UserSign模型,调整村长和队长订单获得兑换券逻辑,优化库存发送数据字段。
This commit is contained in:
parent
87227e38fa
commit
04776f7b80
@ -15,6 +15,7 @@ use app\common\model\user\User;
|
|||||||
use app\common\model\user\UserAddress;
|
use app\common\model\user\UserAddress;
|
||||||
use app\common\model\user\UserRecharge;
|
use app\common\model\user\UserRecharge;
|
||||||
use app\common\model\user\UserShip;
|
use app\common\model\user\UserShip;
|
||||||
|
use app\common\model\user_sign\UserSign;
|
||||||
use app\common\service\PushService;
|
use app\common\service\PushService;
|
||||||
use support\Log;
|
use support\Log;
|
||||||
use think\facade\Db;
|
use think\facade\Db;
|
||||||
@ -78,7 +79,7 @@ class PayNotifyLogic extends BaseLogic
|
|||||||
|
|
||||||
$capitalFlowDao = new CapitalFlowLogic($user);
|
$capitalFlowDao = new CapitalFlowLogic($user);
|
||||||
$capitalFlowDao->userExpense('user_order_pay', 'order', $order['id'], $order['pay_price']);
|
$capitalFlowDao->userExpense('user_order_pay', 'order', $order['id'], $order['pay_price']);
|
||||||
self::afterPay($order);
|
// self::afterPay($order);
|
||||||
Redis::send('push-platform-print', ['id' => $order['id']], 60);
|
Redis::send('push-platform-print', ['id' => $order['id']], 60);
|
||||||
PushService::push('store_merchant_' . $order['store_id'], $order['store_id'], ['type' => 'store_merchant', 'msg' => '您有一笔新的订单']);
|
PushService::push('store_merchant_' . $order['store_id'], $order['store_id'], ['type' => 'store_merchant', 'msg' => '您有一笔新的订单']);
|
||||||
}
|
}
|
||||||
@ -112,7 +113,7 @@ class PayNotifyLogic extends BaseLogic
|
|||||||
|
|
||||||
$capitalFlowDao = new CapitalFlowLogic($user);
|
$capitalFlowDao = new CapitalFlowLogic($user);
|
||||||
$capitalFlowDao->userExpense('user_order_purchase_pay', 'order', $order['id'], $order['pay_price']);
|
$capitalFlowDao->userExpense('user_order_purchase_pay', 'order', $order['id'], $order['pay_price']);
|
||||||
self::afterPay($order);
|
// self::afterPay($order);
|
||||||
Redis::send('push-platform-print', ['id' => $order['id']], 60);
|
Redis::send('push-platform-print', ['id' => $order['id']], 60);
|
||||||
PushService::push('store_merchant_' . $order['store_id'], $order['store_id'], ['type' => 'store_merchant', 'msg' => '您有一笔新的订单']);
|
PushService::push('store_merchant_' . $order['store_id'], $order['store_id'], ['type' => 'store_merchant', 'msg' => '您有一笔新的订单']);
|
||||||
}
|
}
|
||||||
@ -142,12 +143,12 @@ class PayNotifyLogic extends BaseLogic
|
|||||||
$user = User::where('id', $order['uid'])->find();
|
$user = User::where('id', $order['uid'])->find();
|
||||||
if ($order->pay_type == OrderEnum::CASHIER_ORDER_PAY || $order->pay_type == OrderEnum::CASHIER_ORDER_ALI_PAY) { //收银台支付
|
if ($order->pay_type == OrderEnum::CASHIER_ORDER_PAY || $order->pay_type == OrderEnum::CASHIER_ORDER_ALI_PAY) { //收银台支付
|
||||||
$order->status = 2;
|
$order->status = 2;
|
||||||
|
self::afterPay($order, $extra['transaction_id']);
|
||||||
} else {
|
} else {
|
||||||
$capitalFlowDao = new CapitalFlowLogic($user);
|
$capitalFlowDao = new CapitalFlowLogic($user);
|
||||||
//微信支付和用户余额无关
|
//微信支付和用户余额无关
|
||||||
$capitalFlowDao->userExpense('user_order_pay', 'order', $order['id'], $order->pay_price, '', 1);
|
$capitalFlowDao->userExpense('user_order_pay', 'order', $order['id'], $order->pay_price, '', 1);
|
||||||
}
|
}
|
||||||
self::afterPay($order, $extra['transaction_id']);
|
|
||||||
|
|
||||||
|
|
||||||
if ($order->pay_type == 9) {
|
if ($order->pay_type == 9) {
|
||||||
@ -239,6 +240,7 @@ class PayNotifyLogic extends BaseLogic
|
|||||||
$order->paid = 1;
|
$order->paid = 1;
|
||||||
$order->pay_time = time();
|
$order->pay_time = time();
|
||||||
$order->status = 2;
|
$order->status = 2;
|
||||||
|
self::afterPay($order);
|
||||||
if (!$order->save()) {
|
if (!$order->save()) {
|
||||||
throw new \Exception('订单保存出错');
|
throw new \Exception('订单保存出错');
|
||||||
}
|
}
|
||||||
@ -272,8 +274,9 @@ class PayNotifyLogic extends BaseLogic
|
|||||||
}
|
}
|
||||||
if ($order->pay_type == 9) {
|
if ($order->pay_type == 9) {
|
||||||
$order->status = 2;
|
$order->status = 2;
|
||||||
|
self::afterPay($order);
|
||||||
|
|
||||||
}
|
}
|
||||||
self::afterPay($order);
|
|
||||||
|
|
||||||
if ($order->pay_type == 9) {
|
if ($order->pay_type == 9) {
|
||||||
$extra['create_time'] = $order['create_time'];
|
$extra['create_time'] = $order['create_time'];
|
||||||
@ -363,18 +366,33 @@ class PayNotifyLogic extends BaseLogic
|
|||||||
}
|
}
|
||||||
if ($fees > 0) {
|
if ($fees > 0) {
|
||||||
//村长获得
|
//村长获得
|
||||||
if ($village_uid > 0) {
|
$sing=[];
|
||||||
$financeLogic->other_arr['vip_uid'] = $village_uid;
|
$user_sing=new UserSign();
|
||||||
}
|
|
||||||
|
|
||||||
$financeLogic->in($transaction_id, $fees, OrderEnum::VILLAGE_ORDER_OBTAINS, $order['store_id'], 0, 0, $order['pay_type']);
|
$sing[]=[
|
||||||
$financeLogic->out($transaction_id, $fees, OrderEnum::VILLAGE_ORDER_OBTAINS, $order['store_id'], $order['staff_id'], 0, $order['pay_type']);
|
'uid'=>$village_uid,
|
||||||
|
'title'=>'村长订单获得兑换券',
|
||||||
|
'store_id'=>$order['store_id'],
|
||||||
|
'number'=>$fees,
|
||||||
|
];
|
||||||
|
$sing[]=[
|
||||||
|
'uid'=>$brigade_uid,
|
||||||
|
'title'=>'队长订单获得兑换券',
|
||||||
|
'store_id'=>$order['store_id'],
|
||||||
|
'number'=>$fees,
|
||||||
|
];
|
||||||
|
// if ($village_uid > 0) {
|
||||||
|
// $financeLogic->other_arr['vip_uid'] = $village_uid;
|
||||||
|
// }
|
||||||
|
// $financeLogic->in($transaction_id, $fees, OrderEnum::VILLAGE_ORDER_OBTAINS, $order['store_id'], 0, 0, $order['pay_type']);
|
||||||
|
// $financeLogic->out($transaction_id, $fees, OrderEnum::VILLAGE_ORDER_OBTAINS, $order['store_id'], $order['staff_id'], 0, $order['pay_type']);
|
||||||
//队长获得
|
//队长获得
|
||||||
if ($brigade_uid > 0) {
|
// if ($brigade_uid > 0) {
|
||||||
$financeLogic->other_arr['vip_uid'] = $brigade_uid;
|
// $financeLogic->other_arr['vip_uid'] = $brigade_uid;
|
||||||
}
|
// }
|
||||||
$financeLogic->in($transaction_id, $fees, OrderEnum::BRIGADE_ORDER_OBTAINS, $order['store_id'], 0, 0, $order['pay_type']);
|
// $financeLogic->in($transaction_id, $fees, OrderEnum::BRIGADE_ORDER_OBTAINS, $order['store_id'], 0, 0, $order['pay_type']);
|
||||||
$financeLogic->out($transaction_id, $fees, OrderEnum::BRIGADE_ORDER_OBTAINS, $order['store_id'], $order['staff_id'], 0, $order['pay_type']);
|
// $financeLogic->out($transaction_id, $fees, OrderEnum::BRIGADE_ORDER_OBTAINS, $order['store_id'], $order['staff_id'], 0, $order['pay_type']);
|
||||||
|
$user_sing->saveAll($sing);
|
||||||
//其他获得
|
//其他获得
|
||||||
$financeLogic->other_arr['vip_uid'] = 0;
|
$financeLogic->other_arr['vip_uid'] = 0;
|
||||||
$financeLogic->in($transaction_id, $fees, OrderEnum::OTHER_ORDER_OBTAINS, $order['store_id'], 0, 0, $order['pay_type']);
|
$financeLogic->in($transaction_id, $fees, OrderEnum::OTHER_ORDER_OBTAINS, $order['store_id'], 0, 0, $order['pay_type']);
|
||||||
|
22
app/common/model/user_sign/UserSign.php
Normal file
22
app/common/model/user_sign/UserSign.php
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace app\common\model\user_sign;
|
||||||
|
|
||||||
|
|
||||||
|
use app\common\model\BaseModel;
|
||||||
|
use think\model\concern\SoftDelete;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 计量单位
|
||||||
|
* Class UserSign
|
||||||
|
* @package app\common\model\user_sign
|
||||||
|
*/
|
||||||
|
class UserSign extends BaseModel
|
||||||
|
{
|
||||||
|
use SoftDelete;
|
||||||
|
protected $name = 'user_sign';
|
||||||
|
protected $deleteTime = 'delete_time';
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -59,6 +59,7 @@ class StoreStorageSend implements Consumer
|
|||||||
'cost' => $find['purchase'],
|
'cost' => $find['purchase'],
|
||||||
'vip_price' => $find['vip_price'],
|
'vip_price' => $find['vip_price'],
|
||||||
'unit' => $find['unit'],
|
'unit' => $find['unit'],
|
||||||
|
'batch' => $find['batch'],
|
||||||
'store_id' => $store_id,
|
'store_id' => $store_id,
|
||||||
'sales' => 0,
|
'sales' => 0,
|
||||||
'stock' => 0,
|
'stock' => 0,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user