mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
150 lines
5.8 KiB
PHP
150 lines
5.8 KiB
PHP
<?php
|
|
|
|
namespace app\data\service;
|
|
|
|
use think\admin\Service;
|
|
|
|
/**
|
|
* 商城订单数据服务
|
|
* Class OrderService
|
|
* @package app\data\service
|
|
*/
|
|
class OrderService extends Service
|
|
{
|
|
/**
|
|
* 获取随机减免金额
|
|
* @return float
|
|
*/
|
|
public function getReduct(): float
|
|
{
|
|
return rand(1, 100) / 100;
|
|
}
|
|
|
|
/**
|
|
* 同步订单关联商品的库存
|
|
* @param string $orderNo 订单编号
|
|
* @return boolean
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function stock(string $orderNo): bool
|
|
{
|
|
$map = ['order_no' => $orderNo];
|
|
$codes = $this->app->db->name('ShopOrderItem')->where($map)->column('goods_code');
|
|
foreach (array_unique($codes) as $code) GoodsService::instance()->stock($code);
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* 根据订单更新用户等级
|
|
* @param string $orderNo
|
|
* @return array|null [USER, ORDER, ENTRY]
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function upgrade(string $orderNo): ?array
|
|
{
|
|
// 目标订单数据
|
|
$map = [['order_no', '=', $orderNo], ['status', '>=', 4]];
|
|
$order = $this->app->db->name('ShopOrder')->where($map)->find();
|
|
if (empty($order)) return null;
|
|
// 订单用户数据
|
|
$user = $this->app->db->name('DataUser')->where(['id' => $order['uid']])->find();
|
|
if (empty($user)) return null;
|
|
// 更新用户购买资格
|
|
$entry = $this->vipEntry($order['uid']);
|
|
// 尝试绑定代理用户
|
|
if (empty($user['pids']) && ($order['puid1'] > 0 || $user['pid1'] > 0)) {
|
|
$puid1 = $order['puid1'] > 0 ? $order['puid1'] : $user['pid0'];
|
|
UserUpgradeService::instance()->bindAgent($user['id'], $puid1);
|
|
}
|
|
// 重置用户信息并绑定订单
|
|
$user = $this->app->db->name('DataUser')->where(['id' => $order['uid']])->find();
|
|
if ($user['pid1'] > 0) {
|
|
$this->app->db->name('ShopOrder')->where(['order_no' => $orderNo])->update([
|
|
'puid1' => $user['pid1'], 'puid2' => $user['pid2'],
|
|
]);
|
|
}
|
|
// 重新计算用户等级
|
|
UserUpgradeService::instance()->upgrade($user['id'], true, $orderNo);
|
|
return [$user, $order, $entry];
|
|
}
|
|
|
|
/**
|
|
* 刷新用户入会礼包
|
|
* @param integer $uid
|
|
* @return integer
|
|
* @throws \think\db\exception\DbException
|
|
*/
|
|
private function vipEntry(int $uid): int
|
|
{
|
|
// 检查是否购买入会礼包
|
|
$query = $this->app->db->table('shop_order a')->join('shop_order_item b', 'a.order_no=b.order_no');
|
|
$count = $query->where("a.uid={$uid} and a.status>=4 and a.payment_status=1 and b.vip_entry>0")->count();
|
|
$buyVipEntry = $count > 0 ? 1 : 0;
|
|
// 用户最后支付时间
|
|
$query = $this->app->db->name('ShopOrder');
|
|
$buyLastMap = [['uid', '=', $uid], ['status', '>=', 4], ['payment_status', '=', 1]];
|
|
$buyLastDate = $query->where($buyLastMap)->order('payment_datetime desc')->value('payment_datetime');
|
|
// 更新用户支付信息
|
|
$this->app->db->name('DataUser')->where(['id' => $uid])->update([
|
|
'buy_vip_entry' => $buyVipEntry, 'buy_last_date' => $buyLastDate,
|
|
]);
|
|
return $buyVipEntry;
|
|
}
|
|
|
|
/**
|
|
* 获取级别折扣比例
|
|
* @param int $disId 折扣方案ID
|
|
* @param int $vipCode 等级序号
|
|
* @param float $disRate 默认比例
|
|
* @return array [方案编号, 折扣比例]
|
|
*/
|
|
public function discount(int $disId, int $vipCode, float $disRate = 100.00): array
|
|
{
|
|
if ($disId > 0) {
|
|
$map = ['id' => $disId, 'status' => 1, 'deleted' => 0];
|
|
$discount = $this->app->db->name('DataBaseDiscount')->where($map)->value('items');
|
|
$disitems = json_decode($discount ?: '[]', true) ?: [];
|
|
if (is_array($disitems) && count($disitems) > 0) foreach ($disitems as $vo) {
|
|
if ($vo['level'] == $vipCode) $disRate = floatval($vo['discount']);
|
|
}
|
|
}
|
|
return [$disId, $disRate];
|
|
}
|
|
|
|
/**
|
|
* 绑定订单详情数据
|
|
* @param array $data
|
|
* @param boolean $fromer
|
|
* @return array
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function buildData(array &$data = [], $fromer = true): array
|
|
{
|
|
// 关联发货信息
|
|
$nobs = array_unique(array_column($data, 'order_no'));
|
|
$trucks = $this->app->db->name('ShopOrderSend')->whereIn('order_no', $nobs)->column('*', 'order_no');
|
|
foreach ($trucks as &$item) unset($item['id'], $item['uid'], $item['status'], $item['deleted'], $item['create_at']);
|
|
// 关联订单商品
|
|
$query = $this->app->db->name('ShopOrderItem')->where(['status' => 1, 'deleted' => 0]);
|
|
$items = $query->withoutField('id,uid,status,deleted,create_at')->whereIn('order_no', $nobs)->select()->toArray();
|
|
// 关联用户数据
|
|
$fields = 'phone,username,nickname,headimg,status,vip_code,vip_name';
|
|
UserAdminService::instance()->buildByUid($data, 'uid', 'user', $fields);
|
|
if ($fromer) UserAdminService::instance()->buildByUid($data, 'puid1', 'fromer', $fields);
|
|
foreach ($data as &$vo) {
|
|
[$vo['sales'], $vo['truck'], $vo['items']] = [0, $trucks[$vo['order_no']] ?? [], []];
|
|
foreach ($items as $item) if ($vo['order_no'] === $item['order_no']) {
|
|
$vo['sales'] += $item['stock_sales'];
|
|
$vo['items'][] = $item;
|
|
}
|
|
}
|
|
return $data;
|
|
}
|
|
|
|
} |