123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495 |
- <?php
-
-
- namespace app\api\logic;
-
-
- use app\common\basics\Logic;
- use app\common\enum\GoodsEnum;
- use app\common\enum\OrderEnum;
- use app\common\enum\TeamEnum;
- use app\common\model\dev\DevRegion;
- use app\common\model\goods\Goods;
- use app\common\model\goods\GoodsItem;
- use app\common\model\order\Order;
- use app\common\model\order\OrderGoods;
- use app\common\model\order\OrderTrade;
- use app\common\model\shop\Shop;
- use app\common\model\team\TeamActivity;
- use app\common\model\team\TeamFound;
- use app\common\model\team\TeamJoin;
- use app\common\model\user\User;
- use Exception;
- use think\facade\Db;
-
- class TeamLogic extends Logic
- {
- /**
- * @Notes: 获取拼团活动
- * @Author: 张无忌
- * @param array $get
- * @return array|bool
- */
- public static function activity(array $get)
- {
- try {
- $pageNo = $get['page_no'] ?? 1;
- $pageSize = $get['page_size'] ?? 20;
-
- $model = new TeamActivity();
- $lists = $model->alias('T')->field([
- 'T.id,T.goods_id,T.people_num,T.team_max_price,T.team_min_price,sales_volume',
- 'G.name,G.image,G.max_price,G.min_price,G.market_price'
- ])
- ->where([
- ['T.audit', '=', 1],
- ['T.status', '=', 1],
- ['T.del', '=', 0],
- ['T.activity_start_time', '<=', time()],
- ['T.activity_end_time', '>=', time()],
- ['S.is_freeze', '=', 0],
- ['S.is_run', '=', 1],
- ])
- ->join('goods G', 'G.id = T.goods_id')
- ->join('shop S', 'S.id = T.shop_id')
- ->paginate([
- 'page' => $pageNo,
- 'list_rows' => $pageSize,
- 'var_page' => 'page'
- ])->toArray();
-
- return [
- 'list' => $lists['data'],
- 'count' => $lists['total'],
- 'more' => is_more($lists['total'], $pageNo, $pageSize),
- 'page_no' => $pageNo,
- 'page_size' => $pageSize
- ];
- } catch (Exception $e) {
- static::$error = $e->getMessage();
- return false;
- }
- }
-
- /**
- * @Notes: 开团信息
- * @Author: 张无忌
- * @param $post
- * @param $user_id
- * @return bool|array
- */
- public static function kaituanInfo($post, $user_id)
- {
- try {
- $teamActivity = (new TeamActivity())->alias('T')
- ->field([
- 'T.id as team_activity_id,T.shop_id,T.effective_time,GI.goods_id,GI.id as item_id,T.people_num,TG.team_price',
- 'G.name,G.image,GI.spec_value_str,GI.spec_value_ids,GI.market_price',
- 'GI.price,GI.stock,G.delivery_type,G.type'
- ])->where([
- ['T.goods_id', '=', (int)$post['goods_id']],
- ['T.audit', '=', 1],
- ['T.status', '=', 1],
- ['T.del', '=', 0],
- ['T.activity_start_time', '<=', time()],
- ['T.activity_end_time', '>=', time()],
- ['TG.goods_id', '=', (int)$post['goods_id']],
- ['TG.item_id', '=', (int)$post['item_id']],
- ])->join('team_goods TG', 'TG.team_id = T.id')
- ->join('goods G', 'G.id = TG.goods_id')
- ->join('goods_item GI', 'GI.id = TG.item_id')
- ->findOrEmpty()->toArray();
-
- if (!$teamActivity) throw new \think\Exception('当前商品未参与拼团活动,下次再来吧');
- if ($teamActivity['stock'] - intval($post['count']) < 0) throw new \think\Exception('抱歉,库存不足');
-
- if (empty($post['address_id'])) {
- $address = UserAddressLogic::getDefaultAddress($user_id);
- } else {
- $address = UserAddressLogic::getOneAddress($user_id, ['id'=>$post['address_id']]);
- }
-
- // 校验发票信息 返回以店铺id为键,原发票参数为值的数组
- $invoice = OrderInvoiceLogic::checkOrderInvoice($post);
- if (false === $invoice) {
- self::$error = OrderInvoiceLogic::getError();
- return false;
- }
-
- $user = (new User())->findOrEmpty($user_id)->toArray();
- $shop = (new Shop())->field(['id as shop_id,name as shop_name,open_invoice,spec_invoice,run_start_time,run_end_time,weekdays,province_id,city_id,district_id,address'])->findOrEmpty($teamActivity['shop_id'])->toArray();
-
- //配送方式
- if ($teamActivity['type'] == GoodsEnum::TYPE_VIRTUAL) {
- // 虚拟商品, 配送方式为 虚拟发货
- $shop['delivery_types_arr'][] = [
- 'delivery_type' => GoodsEnum::DELIVERY_VIRTUAL,
- 'delivery_type_text' => GoodsEnum::getDeliveryTypeDesc(GoodsEnum::DELIVERY_VIRTUAL),
- ];
- } else {
- // 快递和自提
- $delivery_type_arr = explode(',',$teamActivity['delivery_type']);
- foreach ($delivery_type_arr as $delivery_type_val) {
- $shop['delivery_types_arr'][] = [
- 'delivery_type' => $delivery_type_val,
- 'delivery_type_text' => GoodsEnum::getDeliveryTypeDesc($delivery_type_val),
- ];
- }
- }
-
- $shop['delivery_type'] = $post['delivery_type'];
-
- // $shop['delivery_type_text'] = Order::getDeliveryType($deliveryType);
- $teamActivity['count'] = $post['count'];
- // $teamActivity['delivery_type'] = $deliveryType;
- $teamActivity['delivery_types_arr'] = $shop['delivery_types_arr'];
- $shop['goods'][] = $teamActivity;
-
- // 运费
- $shipping_price = OrderLogic::calculateFreight([
- [
- 'goods_id' => $teamActivity['goods_id'],
- 'item_id' => $teamActivity['item_id'],
- 'num' => input('count/d'),
- 'delivery_type' => $shop['delivery_type'],
- ]
- ], $address);
-
- $shop['shipping_price'] = $shipping_price;
- $shop['total_amount'] = bcadd($teamActivity['team_price'] * $post['count'], $shipping_price, 2);
-
- // 经营信息
- $shop['run_start_time'] = $shop['run_start_time'] ? date('H:i:s', $shop['run_start_time']) : '';
- $shop['run_end_time'] = $shop['run_end_time'] ? date('H:i:s', $shop['run_end_time']) : '';
- // 店铺地址
- $shop['province'] = DevRegion::getAreaName($shop['province_id']);
- $shop['city'] = DevRegion::getAreaName($shop['city_id']);
- $shop['district'] = DevRegion::getAreaName($shop['district_id']);
-
- // 用户留言
- $userRemark = '';
- if (!empty($post['remark'])) {
- $post['remark'] = is_array($post['remark']) ? $post['remark'] : json_decode($post['remark'], JSON_UNESCAPED_UNICODE);
- $userRemark = !empty($post['remark'][0]['remark']) ? $post['remark'][0]['remark'] : '';
- }
-
- return [
- 'team_id' => $post['team_id'] ?? 0,
- 'pay_way' => $post['pay_way'] ?? 1,
- 'order_type' => OrderEnum::TEAM_ORDER,
- 'total_amount' => bcadd($teamActivity['team_price'] * $post['count'], $shipping_price, 2),
- 'total_count' => intval($post['count']),
- 'shipping_price' => $shipping_price,
- 'user_money' => $user['user_money'],
- 'remark' => $userRemark,
- 'address' => $address,
- 'shop' => $shop,
- 'invoice' => array_values($invoice)
- ];
- } catch (Exception $e) {
- static::$error = $e->getMessage();
- return false;
- }
- }
-
- /**
- * @Notes: 发起开团/参团
- * @Author: 张无忌
- * @param $info
- * @param $user_id
- * @return bool|array
- */
- public static function kaituan($info, $userInfo)
- {
- Db::startTrans();
- try {
- $time = time();
- $teamGoods = $info['shop']['goods'][0];
-
- // 参团验证
- if ($info['team_id']) {
- $teamFound = (new TeamFound())->where(['id'=>$info['team_id']])->findOrEmpty()->toArray();
- if (!$teamFound) throw new \think\Exception('选择的团不存在');
- if ($teamFound['status'] != 0) throw new \think\Exception('当前拼团已结束,请重新选择拼团');
- if ($teamFound['invalid_time'] <= time()) throw new \think\Exception('当前拼团已结束,请重新选择拼团');
- if ($teamFound['user_id'] == $userInfo['id']) throw new \think\Exception('您已是该团成员了,不能重复参团哦!');
- if ($teamFound['people'] == $teamFound['join']) throw new \think\Exception('当前拼团已满员,请重新选择拼团!');
-
- // 获取已参团记录
- $people = (new TeamJoin())->where(['team_id'=>$info['team_id'], 'user_id'=>$userInfo['id']])->findOrEmpty()->toArray();
- if ($people) throw new \think\Exception('您已是该团成员了,不能重复参团哦!');
- }
-
- //配送方式 转换
- $info['shop']['delivery_type'] = OrderEnum::getChangeDeliveryTypeItem($info['shop']['delivery_type']);
-
- // 验证收货地址
- if ($info['shop']['delivery_type'] == OrderEnum::DELIVERY_TYPE_EXPRESS && empty($info['address'])) {
- throw new \think\Exception('请选择收货地址');
- }
-
- // 校验发票信息 返回以店铺id为键,原发票参数为值的数组
- $invoice = OrderInvoiceLogic::checkOrderInvoice($info, 'team');
- if (false === $invoice) {
- throw new \think\Exception(OrderInvoiceLogic::getError());
- }
-
- //线下自提-提货码
- if ($info['shop']['delivery_type'] == OrderEnum::DELIVERY_TYPE_SELF) {
- $pickup_code = create_rand_number('order', 'pickup_code', 6);
- }
-
- // 创建交易单
- $trade = OrderTrade::create([
- 't_sn' => createSn('order_trade', 't_sn'),
- 'user_id' => $userInfo['id'],
- 'goods_price' => $info['total_amount'],
- 'order_amount' => $info['total_amount'],
- 'total_amount' => $info['total_amount'],
- 'shop_id' => $info['shop']['shop_id'],
- 'create_time' => $time
- ]);
-
- // 创建订单
- $order = Order::create([
- 'trade_id' => $trade['id'],
- 'shop_id' => $info['shop']['shop_id'],
- 'order_sn' => createSn('order', 'order_sn'),
- 'user_id' => $userInfo['id'],
- 'order_type' => OrderEnum::TEAM_ORDER,
- 'order_source' => $userInfo['client'],
- 'delivery_type' => $info['shop']['delivery_type'],
- 'pay_way' => $info['pay_way'],
- 'consignee' => $info['address']['contact'] ?? '',
- 'province' => $info['address']['province_id'] ?? 0,
- 'city' => $info['address']['city_id'] ?? 0,
- 'district' => $info['address']['district_id'] ?? 0,
- 'address' => $info['address']['address'] ?? '',
- 'mobile' => $info['address']['telephone'] ?? '',
- 'goods_price' => $info['total_amount'],
- 'total_amount' => $info['total_amount'],
- 'order_amount' => $info['total_amount'],
- 'total_num' => $info['total_count'],
- 'shipping_price' => $info['shipping_price'],
- 'discount_amount' => 0,
- 'user_remark' => $info['remark'] ?? '',
- 'create_time' => $time,
- 'pickup_code' => $pickup_code ?? null
- ]);
-
- // 创建订单商品
- OrderGoods::create([
- 'order_id' => $order['id'],
- 'goods_id' => $teamGoods['goods_id'],
- 'item_id' => $teamGoods['item_id'],
- 'goods_num' => $teamGoods['count'],
- 'goods_name' => $teamGoods['name'],
- 'goods_price' => $teamGoods['team_price'],
- 'total_price' => bcadd($teamGoods['team_price'] * $teamGoods['count'], 0, 2),
- 'total_pay_price' => bcadd($teamGoods['team_price'] * $teamGoods['count'], 0, 2),
- 'discount_price' => 0,
- 'spec_value' => $teamGoods['spec_value_str'],
- 'spec_value_ids' => $teamGoods['spec_value_ids'],
- 'image' => $teamGoods['image'],
- 'shop_id' => $info['shop']['shop_id']
- ]);
-
- // 增加发票
- OrderInvoiceLogic::insertOrderInvoice($info['shop']['shop_id'], $userInfo['id'], $order['id'], $invoice);
-
- // 开新团
- $team_id = 0;
- if (!$info['team_id']) {
- $teamFound = TeamFound::create([
- 'shop_id' => $info['shop']['shop_id'],
- 'team_activity_id' => $teamGoods['team_activity_id'],
- 'team_sn' => createSn('team_found', 'team_sn'),
- 'user_id' => $userInfo['id'],
- 'status' => 0,
- 'join' => 0,
- 'people' => $teamGoods['people_num'],
- 'goods_snap' => json_encode([
- 'id' => $teamGoods['goods_id'],
- 'shop_id' => $teamGoods['shop_id'],
- 'name' => $teamGoods['name'],
- 'image' => $teamGoods['image']
- ]),
- 'kaituan_time' => $time,
- 'invalid_time' => ($teamGoods['effective_time'] * 60 * 60) + time()
- ]);
- $team_id = $teamFound['id'];
- }
-
- // 加入团
- TeamJoin::create([
- 'shop_id' => $info['shop']['shop_id'],
- 'team_activity_id' => $teamGoods['team_activity_id'],
- 'team_id' => $team_id ?: $info['team_id'],
- 'sn' => createSn('team_join', 'sn'),
- 'user_id' => $userInfo['id'],
- 'order_id' => $order['id'],
- 'identity' => $info['team_id'] ? 2 : 1,
- 'team_snap' => json_encode($info['shop']['goods'][0], JSON_UNESCAPED_UNICODE),
- 'create_time' => $time,
- 'update_time' => $time
- ]);
-
- // 扣减库存
- (new GoodsItem())->where([
- 'goods_id'=>$teamGoods['goods_id'],
- 'id' =>$teamGoods['item_id']
- ])->update(['stock' => ['dec', $teamGoods['count']]]);
-
- (new Goods())->where([
- 'id'=>$teamGoods['goods_id']
- ])->update(['stock' => ['dec', $teamGoods['count']]]);
-
- // 更新参数人数
- TeamFound::update([
- 'join' => ['inc', 1]
- ], ['id'=>$team_id ?: $info['team_id']]);
-
- // 更新活动拼团数
- TeamActivity::update([
- 'sales_volume' => ['inc', 1]
- ], ['id'=>$teamGoods['team_activity_id']]);
-
- Db::commit();
- return [
- 'team_id' => $team_id ?: $info['team_id'],
- 'type' => 'trade',
- 'trade_id' => $trade['id'],
- 'order_id' => $order['id']
- ];
- } catch (Exception $e) {
- Db::rollback();
- static::$error = $e->getMessage();
- return false;
- }
- }
-
- /**
- * @Notes: 获取拼团记录
- * @Author: 张无忌
- * @param $get
- * @param $user_id
- * @return array|bool
- */
- public static function record($get, $user_id)
- {
- try {
- $pageNo = $get['page_no'] ?? 1;
- $pageSize = $get['page_size'] ?? 20;
-
- $where = [];
- if (isset($get['type']) and $get['type'] >= 0) {
- $type = intval($get['type']);
- $where[] = ['TJ.status', '=', $type];
- }
-
- $model = new TeamJoin();
- $lists = $model->alias('TJ')->field(['TJ.*,S.name as shop_name,O.order_amount'])
- ->where(['TJ.user_id'=>$user_id])
- ->order('id desc')
- ->where($where)
- ->join('Shop S', 'S.id = TJ.shop_id')
- ->join('order O', 'O.id = TJ.order_id')
- ->paginate([
- 'page' => $pageNo,
- 'list_rows' => $pageSize,
- 'var_page' => 'page'
- ])->toArray();
-
- $data = [];
- foreach ($lists['data'] as &$item) {
- $item['team_snap'] = json_decode($item['team_snap'], true);
- $data[] = [
- 'id' => $item['id'],
- 'order_id' => $item['order_id'],
- 'shop_name' => $item['shop_name'],
- 'people_num' => $item['team_snap']['people_num'],
- 'name' => $item['team_snap']['name'],
- 'image' => $item['team_snap']['image'],
- 'price' => $item['team_snap']['price'],
- 'count' => $item['team_snap']['count'],
- 'spec_value_str' => $item['team_snap']['spec_value_str'],
- 'order_amount' => $item['order_amount'],
- 'status' => $item['status'],
- 'identity' => $item['identity'],
- 'identity_text' => $item['identity'] == 1 ? '团长' : '团员',
- 'status_text' => TeamEnum::getStatusDesc($item['status'])
- ];
- }
-
- return [
- 'list' => $data,
- 'count' => $lists['total'],
- 'more' => is_more($lists['total'], $pageNo, $pageSize),
- 'page_no' => $pageNo,
- 'page_size' => $pageSize
- ];
-
- } catch (Exception $e) {
- static::$error = $e->getMessage();
- return false;
- }
- }
-
- /**
- * @Notes: 验证团
- * @Author: 张无忌
- * @param $post
- * @param $user_id
- * @return bool
- */
- public static function check($post, $user_id)
- {
- try {
- $teamActivity = (new TeamActivity())->alias('T')
- ->field([
- 'T.id as team_activity_id,T.shop_id,T.effective_time,GI.goods_id,GI.id as item_id,T.people_num,TG.team_price',
- 'G.name,G.image,GI.spec_value_str,GI.spec_value_ids,GI.market_price',
- 'GI.price,GI.stock'
- ])->where([
- ['T.goods_id', '=', (int)$post['goods_id']],
- ['T.audit', '=', 1],
- ['T.status', '=', 1],
- ['T.del', '=', 0],
- ['T.activity_start_time', '<=', time()],
- ['T.activity_end_time', '>=', time()],
- ['TG.goods_id', '=', (int)$post['goods_id']],
- ['TG.item_id', '=', (int)$post['item_id']],
- ])->join('team_goods TG', 'TG.team_id = T.id')
- ->join('goods G', 'G.id = TG.goods_id')
- ->join('goods_item GI', 'GI.id = TG.item_id')
- ->findOrEmpty()->toArray();
-
- if (!$teamActivity) throw new \think\Exception('当前商品未参与拼团活动,下次再来吧');
- if ($teamActivity['stock'] - intval($post['count']) < 0) throw new \think\Exception('抱歉,库存不足');
-
- // 参团验证
- if (!empty($post['team_id']) and $post['team_id']) {
- $teamFound = (new TeamFound())->where(['id'=>$post['team_id']])->findOrEmpty()->toArray();
- if (!$teamFound) throw new \think\Exception('选择的团不存在');
- if ($teamFound['status'] != 0) throw new \think\Exception('当前拼团已结束,请重新选择拼团');
- if ($teamFound['invalid_time'] <= time()) throw new \think\Exception('当前拼团已结束,请重新选择拼团');
- if ($teamFound['user_id'] == $user_id) throw new \think\Exception('您已是该团成员了,不能重复参团哦!');
- if ($teamFound['people'] == $teamFound['join']) throw new \think\Exception('当前拼团已满员,请重新选择拼团!');
-
- // 获取已参团记录
- $people = (new TeamJoin())->where(['team_id'=>$post['team_id'], 'user_id'=>$user_id])->findOrEmpty()->toArray();
- if ($people) throw new \think\Exception('您已是该团成员了,不能重复参团哦!');
- }
-
-
- return true;
- } catch (Exception $e) {
- static::$error = $e->getMessage();
- return false;
- }
- }
-
-
-
-
- }
|