调试信用购订单结算

This commit is contained in:
luofei 2023-06-28 15:26:01 +08:00
parent b4be5a65b4
commit c67d617fe6
8 changed files with 197 additions and 7 deletions

View File

@ -110,4 +110,10 @@ class StoreGroupOrder extends BaseModel
}
return $params;
}
public function interest()
{
return $this->hasOne(StoreOrderInterest::class, 'group_order_id', 'group_order_id');
}
}

View File

@ -20,4 +20,16 @@ class StoreOrderInterest extends BaseModel
return 'store_order_interest';
}
/**
* 计算利息
* @return string
*/
public function calculateInterest()
{
$days = ceil((time() - strtotime($this->start_time)) / 86400);
$days = max($days ,0);
$money = bcmul($this->total_price, $this->rate, 2);
return bcmul($days, $money, 2);
}
}

View File

@ -15,4 +15,14 @@ class StoreOrderInterestRepository extends BaseRepository
return $model->insert($data);
}
public function getByGroupOrder($groupOrderId)
{
return StoreOrderInterest::where('group_order_id', $groupOrderId)->find();
}
public function getByOrder($orderId)
{
return StoreOrderInterest::where('order_id', $orderId)->find();
}
}

View File

@ -14,6 +14,7 @@ namespace app\common\repositories\store\order;
use app\common\dao\store\order\StoreOrderDao;
use app\common\model\store\order\StoreGroupOrder;
use app\common\model\store\order\StoreOrder;
use app\common\model\store\order\StoreOrderInterest;
use app\common\model\user\User;
use app\common\repositories\BaseRepository;
use app\common\repositories\delivery\DeliveryOrderRepository;
@ -2426,4 +2427,69 @@ class StoreOrderRepository extends BaseRepository
return true;
}
/**
* 订单结算
* @param $id
* @param $type
* @param $user
* @return array
* @throws Exception
*/
public function settle($id, $type, $user)
{
/** @var StoreGroupOrderRepository $groupOrderRepository */
$groupOrderRepository = app()->make(StoreGroupOrderRepository::class);
$groupOrderRepository->getAll = true;
Db::startTrans();
try {
$groupOrder = $groupOrderRepository->detail($user['uid'], $id, false);
if (!$groupOrder) {
throw new Exception('订单不存在或已支付');
}
if (!$groupOrder->interest || $groupOrder->interest->status == StoreOrderInterest::STATUS_SETTLED) {
throw new Exception('订单无需结算');
}
$interest = $groupOrder->interest->calculateInterest();
$payMoney = bcadd($groupOrder->interest->total_price, $interest, 2);
$result = true;
$data = ['type' => $type, 'order_id' => $groupOrder->group_order_id, 'paid' => true];
if ($payMoney > 0) {
if (!in_array($type, ['balance', 'scrcu'])) {
if (systemConfig('open_wx_combine')) {
$service = new CombinePayService($type, $groupOrder->getCombinePayParams());
} else {
$service = new PayService($type, $groupOrder->getPayParams($type === 'alipay' ? request()->param('return_url') : ''));
}
$result = $service->pay($user);
$data = array_merge($data, $result, ['paid' => false]);
} else {
$payTool = PayTool::instance($type);
$groupOrder->pay_price = $payMoney;
$result = $payTool->pay($groupOrder);
}
}
if ($result === true) {
$groupOrder->interest->status = StoreOrderInterest::STATUS_SETTLED;
$groupOrder->interest->settle_time = date('Y-m-d H:i:s');
$groupOrder->interest->save();
/** @var UserBillRepository $userBillRepository */
$userBillRepository = app()->make(UserBillRepository::class);
$userBillRepository->decBill($user['uid'], 'now_money', 'pay_product', [
'link_id' => $groupOrder['group_order_id'],
'status' => 1,
'title' => '购买商品',
'number' => $groupOrder['pay_price'],
'mark' => '余额支付支付' . floatval($groupOrder['pay_price']) . '元购买商品',
'balance' => $user->now_money
]);
}
Db::commit();
return $data;
} catch (\Exception $e) {
Db::rollback();
throw new Exception($e->getMessage());
}
}
}

View File

@ -298,4 +298,22 @@ class StoreOrder extends BaseController
$res = $orderRepository->show($id, $this->request->uid());
return app('json')->success($res);
}
/**
* 订单结算
* @return mixed
* @throws \Psr\SimpleCache\InvalidArgumentException
*/
public function settle()
{
$id = $this->request->param('id/d');
$type = $this->request->param('type');
try {
$data = $this->repository->settle($id, $type, $this->request->userInfo());
return app('json')->success('success', $data);
} catch (\Exception $e) {
return app('json')->fail($e->getMessage());
}
}
}

View File

@ -0,0 +1,82 @@
<?php
namespace crmeb\services\payTool;
class Balance extends PayTool
{
public $order;
public function __construct()
{
}
/**
* 发起支付
* @param $order
* @return bool
* @throws \Exception
*/
public function pay($order)
{
$user = request()->userInfo();
if (!systemConfig('yue_pay_status')) {
throw new \Exception('未开启余额支付');
}
if ($user['now_money'] < $order['pay_price']) {
throw new \Exception('余额不足,请更换支付方式');
}
$user->now_money = bcsub($user->now_money, $order['pay_price'], 2);
if (!$user->save()) {
throw new \Exception('用户余额扣减失败');
}
return true;
}
/**
* 查询
* @param $order
* @return string
* @throws \Exception
*/
public function query($order)
{
}
/**
* 退款
* @param $order
* @return string
* @throws \Exception
*/
public function refund($order)
{
}
/**
* 发起请求
* @param $body
* @return string
* @throws \Exception
*/
public function request($body)
{
}
public function success()
{
}
public function callback($request = null)
{
}
public function refundQuery($refundOrder)
{
}
public function transfer($withdraw)
{
}
}

View File

@ -7,21 +7,16 @@ abstract class PayTool
public $config;
public $error = ['success' => false];
const Scrcu = 'scrcu';
const ClassMap = [
self::Scrcu => Scrcu::class,
];
/**
* @param $name
* @param $params
* @return mixed|Scrcu
* @return mixed|PayTool
* @throws \Exception
*/
public static function instance($name, $params = [])
{
$class = self::ClassMap[$name];
$class = 'crmeb\services\payTool\\' . ucfirst($name);
if (class_exists($class)) {
return new $class($params);
}

View File

@ -90,6 +90,7 @@ Route::group('api/', function () {
Route::get('verify_code/:id', '/verifyCode');
Route::post('receipt/:id', '/createReceipt');
Route::get('delivery/:id', '/getOrderDelivery');
Route::post('settle', '/settle');
})->prefix('api.store.order.StoreOrder');
// 预售