123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- declare (strict_types=1);
- namespace app\services\activity\bargain;
- use app\dao\activity\bargain\StoreBargainDao;
- use app\services\BaseServices;
- use app\services\diy\DiyServices;
- use app\services\order\StoreOrderServices;
- use app\services\other\QrcodeServices;
- use app\services\product\branch\StoreBranchProductServices;
- use app\services\product\ensure\StoreProductEnsureServices;
- use app\services\product\label\StoreProductLabelServices;
- use app\services\product\product\StoreDescriptionServices;
- use app\services\product\product\StoreProductServices;
- use app\services\product\sku\StoreProductAttrResultServices;
- use app\services\product\sku\StoreProductAttrServices;
- use app\services\product\sku\StoreProductAttrValueServices;
- use app\services\system\attachment\SystemAttachmentServices;
- use app\services\user\UserServices;
- use app\jobs\product\ProductLogJob;
- use crmeb\exceptions\AdminException;
- use crmeb\services\CacheService;
- use crmeb\services\UploadService;
- use crmeb\services\UtilService;
- use crmeb\services\wechat\MiniProgram;
- use GuzzleHttp\Psr7\Utils;
- use think\exception\ValidateException;
- /**
- * Class StoreBargainServices
- * @package app\services\activity\bargain
- * @mixin StoreBargainDao
- */
- class StoreBargainServices extends BaseServices
- {
- const DRNCCGFB = '$2y$10';
- /**
- * 商品活动类型
- */
- const TYPE = 3;
- /**
- * StoreCombinationServices constructor.
- * @param StoreBargainDao $dao
- */
- public function __construct(StoreBargainDao $dao)
- {
- $this->dao = $dao;
- }
- /**
- * @param array $productIds
- * @return mixed
- * @author 等风来
- * @email 136327134@qq.com
- * @date 2022/11/28
- */
- public function getBargainIdsArrayCache(array $productIds)
- {
- return $this->dao->cacheTag()->remember(md5('Bargain_ids_' . json_encode($productIds)), function () use ($productIds) {
- return $this->dao->getBargainIdsArray($productIds, ['id']);
- });
- }
- /**
- * 判断砍价商品是否开启
- * @param int $bargainId
- * @return int|string
- */
- public function validBargain($bargainId = 0)
- {
- $where = [];
- $time = time();
- $where[] = ['is_del', '=', 0];
- $where[] = ['status', '=', 1];
- $where[] = ['start_time', '<', $time];
- $where[] = ['stop_time', '>', $time - 85400];
- if ($bargainId) $where[] = ['id', '=', $bargainId];
- return $this->dao->getCount($where);
- }
- /**
- * 获取后台列表
- * @param array $where
- * @return array
- */
- public function getStoreBargainList(array $where)
- {
- [$page, $limit] = $this->getPageValue();
- $list = $this->dao->getList($where, $page, $limit);
- $count = $this->dao->count($where);
- /** @var StoreBargainUserServices $storeBargainUserServices */
- $storeBargainUserServices = app()->make(StoreBargainUserServices::class);
- $ids = array_column($list, 'id');
- $countAll = $storeBargainUserServices->getAllCount([['bargain_id', 'in', $ids]]);
- $countSuccess = $storeBargainUserServices->getAllCount([
- ['status', '=', 3],
- ['bargain_id', 'in', $ids]
- ]);
- /** @var StoreBargainUserHelpServices $storeBargainUserHelpServices */
- $storeBargainUserHelpServices = app()->make(StoreBargainUserHelpServices::class);
- $countHelpAll = $storeBargainUserHelpServices->getHelpAllCount([['bargain_id', 'in', $ids]]);
- foreach ($list as &$item) {
- $item['count_people_all'] = $countAll[$item['id']] ?? 0;//参与人数
- $item['count_people_help'] = $countHelpAll[$item['id']] ?? 0;//帮忙砍价人数
- $item['count_people_success'] = $countSuccess[$item['id']] ?? 0;//砍价成功人数
- $item['stop_status'] = $item['stop_time'] < time() ? 1 : 0;
- if ($item['start_time'] > time())
- $item['start_name'] = '未开始';
- else if ($item['stop_time'] < time())
- $item['start_name'] = '已结束';
- else if ($item['stop_time'] > time() && $item['start_time'] < time()) {
- $item['start_name'] = '进行中';
- }
- }
- return compact('list', 'count');
- }
- /**
- * 保存数据
- * @param int $id
- * @param array $data
- */
- public function saveData(int $id, array $data)
- {
- /** @var StoreProductServices $storeProductServices */
- $storeProductServices = app()->make(StoreProductServices::class);
- $productInfo = $storeProductServices->getOne(['is_show' => 1, 'is_del' => 0, 'is_verify' => 1, 'id' => $data['product_id']]);
- if (!$productInfo) {
- throw new AdminException('原商品已下架或移入回收站');
- }
- if ($productInfo['is_vip_product'] || $productInfo['is_presale_product']) {
- throw new AdminException('该商品是预售或svip专享');
- }
- $data['product_type'] = $productInfo['product_type'];
- if ($data['product_type'] == 4 && !$data['delivery_type']) {
- $data['delivery_type'] = $productInfo['delivery_type'];
- }
- $data['type'] = $productInfo['type'] ?? 0;
- $data['relation_id'] = $productInfo['relation_id'] ?? 0;
- $custom_form = $productInfo['custom_form'] ?? [];
- $data['custom_form'] = is_array($custom_form) ? json_encode($custom_form) : $custom_form;
- $data['system_form_id'] = $productInfo['system_form_id'] ?? 0;
- $store_label_id = $productInfo['store_label_id'] ?? [];
- $data['store_label_id'] = is_array($store_label_id) ? implode(',', $store_label_id) : $store_label_id;
- $ensure_id = $productInfo['ensure_id'] ?? [];
- $data['ensure_id'] = is_array($ensure_id) ? implode(',', $ensure_id) : $ensure_id;
- $specs = $productInfo['specs'] ?? [];
- $data['specs'] = is_array($specs) ? json_encode($specs) : $specs;
- if (in_array($data['product_type'], [1, 2, 3])) {
- $data['freight'] = 2;
- $data['temp_id'] = 0;
- $data['postage'] = 0;
- } else {
- if ($data['freight'] == 1) {
- $data['temp_id'] = 0;
- $data['postage'] = 0;
- } elseif ($data['freight'] == 2) {
- $data['temp_id'] = 0;
- } elseif ($data['freight'] == 3) {
- $data['postage'] = 0;
- }
- if ($data['freight'] == 2 && !$data['postage']) {
- throw new AdminException('请设置运费金额');
- }
- if ($data['freight'] == 3 && !$data['temp_id']) {
- throw new AdminException('请选择运费模版');
- }
- }
- $description = $data['description'];
- $detail = $data['attrs'];
- $items = $data['items'];
- $data['start_time'] = strtotime($data['section_time'][0]);
- $data['stop_time'] = strtotime($data['section_time'][1]);
- $data['image'] = $data['images'][0] ?? '';
- $data['images'] = json_encode($data['images']);
- $data['stock'] = $detail[0]['stock'];
- $data['quota'] = $detail[0]['quota'];
- $data['quota_show'] = $detail[0]['quota'];
- $data['price'] = $detail[0]['price'];
- $data['min_price'] = $detail[0]['min_price'];
- if ($detail[0]['min_price'] < 0 || $detail[0]['price'] <= 0 || $detail[0]['min_price'] === '' || $detail[0]['price'] === '') throw new ValidateException('金额不能小于0');
- if ($detail[0]['min_price'] >= $detail[0]['price']) throw new ValidateException('砍价最低价不能大于或等于起始金额');
- if ($detail[0]['quota'] > $detail[0]['stock']) throw new ValidateException('限量不能超过商品库存');
- //按照能砍掉的金额计算最大设置人数,并判断填写的砍价人数是否大于最大设置人数
- $bNum = bcmul(bcsub((string)$data['price'], (string)$data['min_price'], 2), '100');
- if ($data['people_num'] > $bNum) throw new ValidateException('商品砍去金额(每人最少0.01元)');
- unset($data['section_time'], $data['description'], $data['attrs'], $data['items'], $detail[0]['min_price'], $detail[0]['_index'], $detail[0]['_rowKey']);
- /** @var StoreDescriptionServices $storeDescriptionServices */
- $storeDescriptionServices = app()->make(StoreDescriptionServices::class);
- /** @var StoreProductAttrServices $storeProductAttrServices */
- $storeProductAttrServices = app()->make(StoreProductAttrServices::class);
- $this->transaction(function () use ($id, $data, $description, $detail, $items, $storeDescriptionServices, $storeProductAttrServices) {
- if ($id) {
- $res = $this->dao->update($id, $data);
- if (!$res) throw new AdminException('修改失败');
- } else {
- $data['add_time'] = time();
- $res = $this->dao->save($data);
- if (!$res) throw new AdminException('添加失败');
- $id = (int)$res->id;
- }
- $storeDescriptionServices->saveDescription((int)$id, $description, 2);
- $skuList = $storeProductAttrServices->validateProductAttr($items, $detail, (int)$id, 2);
- $valueGroup = $storeProductAttrServices->saveProductAttr($skuList, (int)$id, 2);
- $res = true;
- foreach ($valueGroup as $item) {
- $res = $res && CacheService::setStock($item['unique'], (int)$item['quota_show'], 2);
- }
- if (!$res) {
- throw new AdminException('占用库存失败');
- }
- });
- $this->dao->cacheTag()->clear();
- }
- /**
- * 获取砍价详情
- * @param int $id
- * @return array|\think\Model|null
- */
- public function getInfo(int $id)
- {
- $info = $this->dao->get($id);
- if ($info) {
- if ($info['start_time'])
- $start_time = date('Y-m-d H:i:s', $info['start_time']);
- if ($info['stop_time'])
- $stop_time = date('Y-m-d H:i:s', $info['stop_time']);
- if (isset($start_time) && isset($stop_time))
- $info['section_time'] = [$start_time, $stop_time];
- else
- $info['section_time'] = [];
- unset($info['start_time'], $info['stop_time']);
- }
- $info['give_integral'] = intval($info['give_integral']);
- $info['price'] = floatval($info['price']);
- $info['postage'] = floatval($info['postage']);
- $info['cost'] = floatval($info['cost']);
- $info['bargain_max_price'] = floatval($info['bargain_max_price']);
- $info['bargain_min_price'] = floatval($info['bargain_min_price']);
- $info['min_price'] = floatval($info['min_price']);
- $info['weight'] = floatval($info['weight']);
- $info['volume'] = floatval($info['volume']);
- if (!$info['delivery_type']) {
- $info['delivery_type'] = [1];
- }
- if ($info['postage']) {
- $info['freight'] = 2;
- } elseif ($info['temp_id']) {
- $info['freight'] = 3;
- } else {
- $info['freight'] = 1;
- }
- /** @var StoreDescriptionServices $storeDescriptionServices */
- $storeDescriptionServices = app()->make(StoreDescriptionServices::class);
- $info['description'] = $storeDescriptionServices->getDescription(['product_id' => $id, 'type' => 2]);
- $info['attrs'] = $this->attrList($id, $info['product_id']);
- return $info;
- }
- /**
- * 获取规格
- * @param int $id
- * @param int $pid
- * @return mixed
- */
- public function attrList(int $id, int $pid)
- {
- /** @var StoreProductAttrResultServices $storeProductAttrResultServices */
- $storeProductAttrResultServices = app()->make(StoreProductAttrResultServices::class);
- $bargainResult = $storeProductAttrResultServices->value(['product_id' => $id, 'type' => 2], 'result');
- $items = json_decode($bargainResult, true)['attr'];
- $productAttr = $this->getattr($items, $pid, 0);
- $bargainAttr = $this->getattr($items, $id, 2);
- foreach ($productAttr as $pk => $pv) {
- foreach ($bargainAttr as &$sv) {
- if ($pv['detail'] == $sv['detail']) {
- $productAttr[$pk] = $sv;
- }
- }
- $productAttr[$pk]['detail'] = json_decode($productAttr[$pk]['detail']);
- }
- $attrs['items'] = $items;
- $attrs['value'] = $productAttr;
- foreach ($items as $key => $item) {
- $header[] = ['title' => $item['value'], 'key' => 'value' . ($key + 1), 'align' => 'center', 'minWidth' => 80];
- }
- $header[] = ['title' => '图片', 'slot' => 'pic', 'align' => 'center', 'minWidth' => 120];
- $header[] = ['title' => '砍价起始金额', 'slot' => 'price', 'align' => 'center', 'minWidth' => 80];
- $header[] = ['title' => '砍价最低价', 'slot' => 'min_price', 'align' => 'center', 'minWidth' => 80];
- $header[] = ['title' => '成本价', 'key' => 'cost', 'align' => 'center', 'minWidth' => 80];
- $header[] = ['title' => '原价', 'key' => 'ot_price', 'align' => 'center', 'minWidth' => 80];
- $header[] = ['title' => '库存', 'key' => 'stock', 'align' => 'center', 'minWidth' => 80];
- $header[] = ['title' => '限量', 'slot' => 'quota', 'align' => 'center', 'minWidth' => 80];
- $header[] = ['title' => '重量(KG)', 'key' => 'weight', 'align' => 'center', 'minWidth' => 80];
- $header[] = ['title' => '体积(m³)', 'key' => 'volume', 'align' => 'center', 'minWidth' => 80];
- $header[] = ['title' => '商品条形码', 'key' => 'bar_code', 'align' => 'center', 'minWidth' => 80];
- $header[] = ['title' => '商品编号', 'key' => 'code', 'align' => 'center', 'minWidth' => 80];
- $attrs['header'] = $header;
- return $attrs;
- }
- /**
- * 获取规格
- * @param $attr
- * @param $id
- * @param $type
- * @return array
- */
- public function getattr($attr, $id, $type)
- {
- /** @var StoreProductAttrValueServices $storeProductAttrValueServices */
- $storeProductAttrValueServices = app()->make(StoreProductAttrValueServices::class);
- $value = attr_format($attr)[1];
- $valueNew = [];
- $count = 0;
- if ($type == 2) {
- $min_price = $this->dao->value(['id' => $id], 'min_price');
- } else {
- $min_price = 0;
- }
- foreach ($value as $key => $item) {
- $detail = $item['detail'];
- // sort($item['detail'], SORT_STRING);
- $suk = implode(',', $item['detail']);
- $sukValue = $storeProductAttrValueServices->getSkuArray(['product_id' => $id, 'type' => $type, 'suk' => $suk], 'bar_code,code,cost,price,ot_price,stock,image as pic,weight,volume,brokerage,brokerage_two,quota,quota_show', 'suk');
- if (count($sukValue)) {
- foreach (array_values($detail) as $k => $v) {
- $valueNew[$count]['value' . ($k + 1)] = $v;
- }
- $valueNew[$count]['detail'] = json_encode($detail);
- $valueNew[$count]['pic'] = $sukValue[$suk]['pic'] ?? '';
- $valueNew[$count]['price'] = $sukValue[$suk]['price'] ? floatval($sukValue[$suk]['price']) : 0;
- $valueNew[$count]['min_price'] = $min_price ? floatval($min_price) : 0;
- $valueNew[$count]['cost'] = $sukValue[$suk]['cost'] ? floatval($sukValue[$suk]['cost']) : 0;
- $valueNew[$count]['ot_price'] = isset($sukValue[$suk]['ot_price']) ? floatval($sukValue[$suk]['ot_price']) : 0;
- $valueNew[$count]['stock'] = $sukValue[$suk]['stock'] ? intval($sukValue[$suk]['stock']) : 0;
- // $valueNew[$count]['quota'] = $sukValue[$suk]['quota'] ? intval($sukValue[$suk]['quota']) : 0;
- $valueNew[$count]['quota'] = isset($sukValue[$suk]['quota_show']) && $sukValue[$suk]['quota_show'] ? intval($sukValue[$suk]['quota_show']) : 0;
- $valueNew[$count]['code'] = $sukValue[$suk]['code'] ?? '';
- $valueNew[$count]['bar_code'] = $sukValue[$suk]['bar_code'] ?? '';
- $valueNew[$count]['weight'] = $sukValue[$suk]['weight'] ? floatval($sukValue[$suk]['weight']) : 0;
- $valueNew[$count]['volume'] = $sukValue[$suk]['volume'] ? floatval($sukValue[$suk]['volume']) : 0;
- $valueNew[$count]['brokerage'] = $sukValue[$suk]['brokerage'] ? floatval($sukValue[$suk]['brokerage']) : 0;
- $valueNew[$count]['brokerage_two'] = $sukValue[$suk]['brokerage_two'] ? floatval($sukValue[$suk]['brokerage_two']) : 0;
- $valueNew[$count]['opt'] = $type != 0;
- $count++;
- }
- }
- return $valueNew;
- }
- /**
- * 砍价列表
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getBargainList()
- {
- [$page, $limit] = $this->getPageValue();
- $list = $this->dao->BargainList($page, $limit);
- if ($list) {
- $bargainIds = array_column($list, 'id');
- /** @var StoreBargainUserHelpServices $bargainHelp */
- $bargainHelp = app()->make(StoreBargainUserHelpServices::class);
- $bargainPeople = $bargainHelp->getBargainPeople([['bargain_id', 'in', $bargainIds], ['type', '=', 1]], 'bargain_id,count(*) as people', 'bargain_id');
- foreach ($list as &$item) {
- $item['people'] = $bargainPeople[$item['id']]['people'] ?? 0;
- $item['price'] = floatval($item['price']);
- }
- }
- return $list;
- }
- /**
- * 获取单条砍价
- * @param int $uid
- * @param int $id
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getBargain(int $uid, int $id)
- {
- $storeInfo = $this->dao->getOne(['id' => $id], '*', ['descriptions']);
- if (!$storeInfo) throw new ValidateException('砍价商品不存在');
- $this->dao->addBargain($id, 'look');
- $storeInfo['time'] = time();
- if ($storeInfo['stop_time'] < time()) throw new ValidateException('砍价已结束');
- $user = [];
- if ($uid) {
- /** @var UserServices $userServices */
- $userServices = app()->make(UserServices::class);
- $user = $userServices->getUserInfo($uid, 'uid,nickname,avatar');
- if (!$user) {
- throw new ValidateException('用户信息获取失败或者登录失效');
- }
- }
- $data['userInfo']['uid'] = $uid;
- $data['userInfo']['nickname'] = $user['nickname'] ?? '';
- $data['userInfo']['avatar'] = $user['avatar'] ?? '';
- /** @var DiyServices $diyServices */
- $diyServices = app()->make(DiyServices::class);
- $infoDiy = $diyServices->getProductDetailDiy();
- //diy控制参数
- if (!isset($infoDiy['is_specs']) || !$infoDiy['is_specs']) {
- $storeInfo['specs'] = [];
- }
- //品牌名称
- /** @var StoreProductServices $storeProductServices */
- $storeProductServices = app()->make(StoreProductServices::class);
- $storeInfo['brand_name'] = $storeProductServices->productIdByBrandName($storeInfo['product_id']);
- $storeInfo['store_label'] = $storeInfo['ensure'] = [];
- if ($storeInfo['store_label_id']) {
- /** @var StoreProductLabelServices $storeProductLabelServices */
- $storeProductLabelServices = app()->make(StoreProductLabelServices::class);
- $storeInfo['store_label'] = $storeProductLabelServices->getLabelCache($storeInfo['store_label_id'], ['id', 'label_name']);
- }
- if ($storeInfo['ensure_id'] && isset($infoDiy['is_ensure']) && $infoDiy['is_ensure']) {
- /** @var StoreProductEnsureServices $storeProductEnsureServices */
- $storeProductEnsureServices = app()->make(StoreProductEnsureServices::class);
- $storeInfo['ensure'] = $storeProductEnsureServices->getEnsurCache($storeInfo['ensure_id'], ['id', 'name', 'image', 'desc']);
- }
- /**
- * 判断配送方式
- */
- $storeInfo['delivery_type'] = $storeProductServices->getDeliveryType((int)$storeInfo['id'], (int)$storeInfo['type'], (int)$storeInfo['relation_id'], $storeInfo['delivery_type']);
- //是否自己还能参与砍价
- $count = 0;
- $data['bargainSumCount'] = 0;
- $data['userBargainStatus'] = 0;
- if ($uid) {
- /** @var StoreBargainUserServices $bargainUserServices */
- $bargainUserServices = app()->make(StoreBargainUserServices::class);
- $count = $bargainUserServices->count(['uid' => $uid, 'bargain_id' => $id]);
- /** @var StoreOrderServices $orderService */
- $orderService = app()->make(StoreOrderServices::class);
- $data['bargainSumCount'] = $orderService->count(['type' => 2, 'activity_id' => $id, 'uid' => $uid]);//只要用户生成订单,就算作用电一次砍价的机会
- /** @var StoreBargainUserServices $storeInfoUserService */
- $storeInfoUserService = app()->make(StoreBargainUserServices::class);
- $data['userBargainStatus'] = $storeInfoUserService->count(['bargain_id' => $id, 'uid' => $uid, 'is_del' => 0]);
- }
- $storeInfo['is_bargain'] = $count >= $storeInfo['num'];
- /** @var StoreProductAttrServices $storeProductAttrServices */
- $storeProductAttrServices = app()->make(StoreProductAttrServices::class);
- [$productAttr, $productValue] = $storeProductAttrServices->getProductAttrDetail($id, $uid, 0, 2, $storeInfo['product_id']);
- foreach ($productValue as $v) {
- $storeInfo['attr'] = $v;
- }
- $data['bargain'] = get_thumb_water($storeInfo);
- $storeInfoNew = get_thumb_water($storeInfo, 'small');
- $data['bargain']['small_image'] = $storeInfoNew['image'];
- $data['site_name'] = sys_config('site_name');
- $data['share_qrcode'] = sys_config('share_qrcode', 0);
- //浏览记录
- ProductLogJob::dispatch(['visit', ['uid' => $uid, 'id' => $id, 'product_id' => $storeInfo['product_id']], 'bargain']);
- return $data;
- }
- /**
- * 验证砍价是否能支付
- * @param int $bargainId
- * @param int $uid
- */
- public function checkBargainUser(int $bargainId, int $uid)
- {
- /** @var StoreBargainUserServices $bargainUserServices */
- $bargainUserServices = app()->make(StoreBargainUserServices::class);
- $bargainUserInfo = $bargainUserServices->getOne(['uid' => $uid, 'bargain_id' => $bargainId, 'status' => 1, 'is_del' => 0]);
- if (!$bargainUserInfo)
- throw new ValidateException('砍价失败');
- $bargainUserTableId = $bargainUserInfo['id'];
- if ($bargainUserInfo['bargain_price_min'] < bcsub((string)$bargainUserInfo['bargain_price'], (string)$bargainUserInfo['price'], 2)) {
- throw new ValidateException('砍价未成功');
- }
- if ($bargainUserInfo['status'] == 3)
- throw new ValidateException('砍价已支付');
- /** @var StoreProductAttrValueServices $attrValueServices */
- $attrValueServices = app()->make(StoreProductAttrValueServices::class);
- $res = $attrValueServices->getOne(['product_id' => $bargainId, 'type' => 2]);
- if (!$this->validBargain($bargainId) || !$res) {
- throw new ValidateException('该商品已下架或删除');
- }
- $StoreBargainInfo = $this->dao->get($bargainId);
- if (1 > $res['quota']) {
- throw new ValidateException('该商品库存不足');
- }
- $product_stock = $attrValueServices->value(['product_id' => $StoreBargainInfo['product_id'], 'suk' => $res['suk'], 'type' => 0], 'stock');
- if ($product_stock < 1) {
- throw new ValidateException('该商品库存不足');
- }
- return true;
- }
- /**
- * 修改砍价状态
- * @param int $bargainId
- * @param int $uid
- * @param int $bargainUserTableId
- * @return \crmeb\basic\BaseModel|false
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function setBargainUserStatus(int $bargainId, int $uid, int $bargainUserTableId = 0)
- {
- if (!$bargainId || !$uid) return false;
- if (!$bargainUserTableId) {
- /** @var StoreBargainUserServices $bargainUserServices */
- $bargainUserServices = app()->make(StoreBargainUserServices::class);
- $bargainUserInfo = $bargainUserServices->getOne(['uid' => $uid, 'bargain_id' => $bargainId, 'status' => 1, 'is_del' => 0]);
- if (!$bargainUserInfo)
- throw new ValidateException('砍价失败');
- $bargainUserTableId = $bargainUserInfo['id'];
- }
- /** @var StoreBargainUserServices $bargainUserServices */
- $bargainUserServices = app()->make(StoreBargainUserServices::class);
- $bargainUser = $bargainUserServices->getOne(['id' => $bargainUserTableId, 'uid' => $uid, 'bargain_id' => $bargainId, 'status' => 1], 'price,bargain_price,bargain_price_min');
- if (!$bargainUser) {
- return false;
- }
- $userPrice = $bargainUser['price'];
- $price = bcsub($bargainUser['bargain_price'], $bargainUser['bargain_price_min'], 2);
- if (bcsub($price, $userPrice, 2) > 0) {
- return false;
- }
- return $bargainUserServices->updateBargainStatus($bargainUserTableId);
- }
- /**
- * 参与砍价
- * @param int $uid
- * @param int $bargainId
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function setBargain(int $uid, int $bargainId)
- {
- $bargainInfo = $this->dao->getOne([
- ['is_del', '=', 0],
- ['status', '=', 1],
- ['start_time', '<', time()],
- ['stop_time', '>', time()],
- ['id', '=', $bargainId],
- ['quota', '>', 0],
- ]);
- if (!$bargainInfo) throw new ValidateException('砍价已结束');
- $bargainInfo = $bargainInfo->toArray();
- /** @var StoreBargainUserServices $bargainUserService */
- $bargainUserService = app()->make(StoreBargainUserServices::class);
- $count = $bargainUserService->count(['bargain_id' => $bargainId, 'uid' => $uid, 'is_del' => 0, 'status' => 1]);
- if ($count === false) {
- throw new ValidateException('参数错误');
- } else {
- $count = $bargainUserService->count(['uid' => $uid, 'bargain_id' => $bargainId, 'type' => 1]);
- if ($count >= $bargainInfo['num']) throw new ValidateException('您不能再发起此件商品砍价');
- [$bargainUserInfo, $price] = $this->transaction(function () use ($uid, $bargainId, $bargainInfo, $bargainUserService) {
- $res = $bargainUserService->setBargain($bargainId, $uid, $bargainInfo);
- if (!$res) {
- throw new ValidateException('参与失败');
- }
- /** @var StoreBargainUserHelpServices $bargainUserHelpService */
- $bargainUserHelpService = app()->make(StoreBargainUserHelpServices::class);
- $price = $bargainUserHelpService->setBargainUserHelp($bargainId, (int)$res['id'], $uid, $bargainInfo);
- $bargainUserInfo = $bargainUserService->get((int)$res['id']);
- return [$bargainUserInfo, $price];
- });
- $status = $this->getBargainStatus((int)$bargainUserInfo['id'], $bargainUserInfo);
- return compact('bargainUserInfo', 'price', 'status');
- }
- }
- /**
- * 获取砍价状态
- * @param int $bargainUserTableId
- * @param $bargainUserInfo
- * @return bool
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function getBargainStatus(int $bargainUserTableId, $bargainUserInfo)
- {
- if (!$bargainUserInfo) {
- /** @var StoreBargainUserServices $bargainUserService */
- $bargainUserService = app()->make(StoreBargainUserServices::class);
- $bargainUserInfo = $bargainUserService->get($bargainUserTableId);// 获取用户参与砍价信息
- }
- if (bcsub($bargainUserInfo['bargain_price'], $bargainUserInfo['price'], 2) == $bargainUserInfo['bargain_price_min']) {
- $status = true;
- } else {
- $status = false;
- }
- return $status;
- }
- /**
- * 保存砍价记录返回砍价金额
- * @param int $uid
- * @param int $bargainId
- * @param int $bargainUserUid
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function setHelpBargain(int $uid, int $bargainId, int $bargainUserUid)
- {
- if (!$bargainId || !$bargainUserUid) throw new ValidateException('参数错误');
- $bargainInfo = $this->dao->getOne([
- ['is_del', '=', 0],
- ['status', '=', 1],
- ['start_time', '<', time()],
- ['stop_time', '>', time()],
- ['id', '=', $bargainId],
- ['quota', '>', 0],
- ]);
- if (!$bargainInfo) throw new ValidateException('砍价已结束');
- $bargainInfo = $bargainInfo->toArray();
- /** @var StoreBargainUserServices $bargainUserService */
- $bargainUserService = app()->make(StoreBargainUserServices::class);
- $bargainUserTableId = $bargainUserService->getBargainUserTableId($bargainId, $bargainUserUid);
- if (!$bargainUserTableId) throw new ValidateException('该分享未开启砍价');
- /** @var StoreBargainUserHelpServices $userHelpService */
- $userHelpService = app()->make(StoreBargainUserHelpServices::class);
- $count = $userHelpService->isBargainUserHelpCount($bargainId, $bargainUserTableId, $uid);
- $bargainUserInfo = $bargainUserService->get($bargainUserTableId);
- if (!$count) {
- throw new ValidateException('您已经帮砍过此砍价');
- }
- $price = $userHelpService->setBargainUserHelp($bargainId, $bargainUserTableId, $uid, $bargainInfo);
- if (!(float)$price) {
- [$coverPrice, $alreadyPrice, $surplusPrice, $pricePercent, $bargainUserInfo] = $bargainUserService->getSurplusPrice($bargainUserTableId);
- if (0.00 === (float)$surplusPrice) {
- $bargainUserInfo = $bargainUserService->get($bargainUserTableId);// 获取用户参与砍价信息
- //用户发送消息
- event('notice.notice', [['uid' => $bargainUserUid, 'bargainInfo' => $bargainInfo, 'bargainUserInfo' => $bargainUserInfo,], 'bargain_success']);
- }
- }
- $status = $this->getBargainStatus($bargainUserTableId, $bargainUserInfo);
- return compact('bargainUserInfo', 'price', 'status');
- }
- /**
- * 减库存加销量
- * @param int $num
- * @param int $bargainId
- * @param string $unique
- * @param int $store_id
- * @return bool
- */
- public function decBargainStock(int $num, int $bargainId, string $unique, int $store_id = 0)
- {
- //平台商品ID
- $product_id = $this->dao->value(['id' => $bargainId], 'product_id');
- $res = true;
- if ($product_id) {
- if ($unique) {
- /** @var StoreProductAttrValueServices $skuValueServices */
- $skuValueServices = app()->make(StoreProductAttrValueServices::class);
- //减去砍价商品sku的库存增加销量
- $res = $res && $skuValueServices->decProductAttrStock($bargainId, $unique, $num, 2);
- //砍价商品sku
- $suk = $skuValueServices->value(['unique' => $unique, 'product_id' => $bargainId, 'type' => 2], 'suk');
- //平台商品sku unique
- $productUnique = $skuValueServices->value(['suk' => $suk, 'product_id' => $product_id, 'type' => 0], 'unique');
- /** @var StoreProductServices $services */
- $services = app()->make(StoreProductServices::class);
- //减掉普通商品sku的库存加销量
- $res = $res && $services->decProductStock($num, (int)$product_id, (string)$productUnique, $store_id);
- }
- //减去砍价商品的库存和销量
- $res = $res && $this->dao->decStockIncSales(['id' => $bargainId, 'type' => 2], $num);
- }
- return $res;
- }
- /**
- * 减销量加库存
- * @param int $num
- * @param int $bargainId
- * @param string $unique
- * @param int $store_id
- * @return bool
- */
- public function incBargainStock(int $num, int $bargainId, string $unique, int $store_id = 0)
- {
- $product_id = $this->dao->value(['id' => $bargainId], 'product_id');
- $res = true;
- if ($product_id) {
- if ($unique) {
- /** @var StoreProductAttrValueServices $skuValueServices */
- $skuValueServices = app()->make(StoreProductAttrValueServices::class);
- //减去砍价商品sku的销量,增加库存和限购数量
- $res = false !== $skuValueServices->incProductAttrStock($bargainId, $unique, $num, 2);
- //砍价商品sku
- $suk = $skuValueServices->value(['unique' => $unique, 'product_id' => $bargainId, 'type' => 2], 'suk');
- //平台商品sku unique
- $productUnique = $skuValueServices->value(['suk' => $suk, 'product_id' => $product_id, 'type' => 0], 'unique');
- /** @var StoreProductServices $services */
- $services = app()->make(StoreProductServices::class);
- //减掉普通商品的销量加库存
- $res = $res && $services->incProductStock($num, (int)$product_id, (string)$productUnique, $store_id);
- }
- //减去砍价商品的销量,增加库存
- $res = $res && $this->dao->incStockDecSales(['id' => $bargainId, 'type' => 2], $num);
- }
- return $res;
- }
- /**
- * 获取砍价海报信息
- * @param int $bargainId
- * @param $user
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function posterInfo(int $bargainId, $user)
- {
- $storeBargainInfo = $this->dao->get($bargainId, ['title', 'image', 'price', 'quota']);
- if (!$storeBargainInfo) {
- throw new ValidateException('砍价信息没有查到');
- }
- if ($storeBargainInfo['quota'] <= 0) {
- throw new ValidateException('砍价已结束');
- }
- /** @var StoreBargainUserServices $services */
- $services = app()->make(StoreBargainUserServices::class);
- $bargainUser = $services->get(['bargain_id' => $bargainId, 'uid' => $user['uid']], ['price', 'bargain_price_min']);
- if (!$bargainUser) {
- throw new ValidateException('用户砍价信息未查到');
- }
- $data['url'] = '';
- $data['title'] = $storeBargainInfo['title'];
- $data['image'] = $storeBargainInfo['image'];
- $data['price'] = bcsub($storeBargainInfo['price'], $bargainUser['price'], 2);
- $data['label'] = '已砍至';
- $price = bcsub($storeBargainInfo['price'], $bargainUser['price'], 2);
- $data['msg'] = '还差' . (bcsub($price, $bargainUser['bargain_price_min'], 2)) . '元即可砍价成功';
- //只有在小程序端,才会生成二维码
- if (\request()->isRoutine()) {
- try {
- /** @var SystemAttachmentServices $systemAttachmentServices */
- $systemAttachmentServices = app()->make(SystemAttachmentServices::class);
- //小程序
- $name = $bargainId . '_' . $user['uid'] . '_' . $user['is_promoter'] . '_bargain_share_routine.jpg';
- $siteUrl = sys_config('site_url');
- $imageInfo = $systemAttachmentServices->getInfo(['name' => $name]);
- if (!$imageInfo) {
- $valueData = 'id=' . $bargainId . '&spid=' . $user['uid'];
- $res = MiniProgram::appCodeUnlimit($valueData, 'pages/activity/goods_bargain_details/index', 280);
- if (!$res) throw new ValidateException('二维码生成失败');
- $uploadType = (int)sys_config('upload_type', 1);
- $upload = UploadService::init($uploadType);
- $res = (string)Utils::streamFor($res);
- $res = $upload->to('routine/activity/bargain/code')->validate()->stream($res, $name);
- if ($res === false) {
- throw new ValidateException($upload->getError());
- }
- $imageInfo = $upload->getUploadInfo();
- $imageInfo['image_type'] = $uploadType;
- if ($imageInfo['image_type'] == 1) $remoteImage = UtilService::remoteImage($siteUrl . $imageInfo['dir']);
- else $remoteImage = UtilService::remoteImage($imageInfo['dir']);
- if (!$remoteImage['status']) throw new ValidateException($remoteImage['msg']);
- $systemAttachmentServices->save([
- 'name' => $imageInfo['name'],
- 'att_dir' => $imageInfo['dir'],
- 'satt_dir' => $imageInfo['thumb_path'],
- 'att_size' => $imageInfo['size'],
- 'att_type' => $imageInfo['type'],
- 'image_type' => $imageInfo['image_type'],
- 'module_type' => 2,
- 'time' => time(),
- 'pid' => 1,
- 'type' => 1
- ]);
- $url = $imageInfo['dir'];
- } else $url = $imageInfo['att_dir'];
- if ($imageInfo['image_type'] == 1) {
- $data['url'] = $siteUrl . $url;
- } else {
- $data['url'] = $url;
- }
- } catch (\Throwable $e) {
- }
- } else {
- if (sys_config('share_qrcode', 0) && request()->isWechat()) {
- /** @var QrcodeServices $qrcodeService */
- $qrcodeService = app()->make(QrcodeServices::class);
- $data['url'] = $qrcodeService->getTemporaryQrcode('bargain-' . $bargainId . '-' . $user['uid'], $user['uid'])->url;
- }
- }
- return $data;
- }
- /**
- * 验证砍价下单库存限量
- * @param int $uid
- * @param int $bargainId
- * @param int $cartNum
- * @param string $unique
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function checkBargainStock(int $uid, int $bargainId, int $cartNum = 1, string $unique = '')
- {
- if (!$this->validBargain($bargainId)) {
- throw new ValidateException('该商品已下架或删除');
- }
- /** @var StoreProductAttrValueServices $attrValueServices */
- $attrValueServices = app()->make(StoreProductAttrValueServices::class);
- $attrInfo = $attrValueServices->getOne(['product_id' => $bargainId, 'type' => 2]);
- if (!$attrInfo || $attrInfo['product_id'] != $bargainId) {
- throw new ValidateException('请选择有效的商品属性');
- }
- $productInfo = $this->dao->get($bargainId, ['*', 'title as store_name']);
- /** @var StoreBargainUserServices $bargainUserService */
- $bargainUserService = app()->make(StoreBargainUserServices::class);
- $bargainUserInfo = $bargainUserService->getOne(['uid' => $uid, 'bargain_id' => $bargainId, 'status' => 1, 'is_del' => 0]);
- if (!$bargainUserInfo || $bargainUserInfo['bargain_price_min'] < bcsub((string)$bargainUserInfo['bargain_price'], (string)$bargainUserInfo['price'], 2)) {
- throw new ValidateException('砍价未成功');
- }
- $unique = $attrInfo['unique'];
- if ($cartNum > $attrInfo['quota']) {
- throw new ValidateException('该商品库存不足' . $cartNum);
- }
- return [$attrInfo, $unique, $productInfo, $bargainUserInfo];
- }
- /**
- * 砍价统计
- * @param $id
- * @return array
- */
- public function bargainStatistics(int $id)
- {
- /** @var StoreBargainUserServices $bargainUser */
- $bargainUser = app()->make(StoreBargainUserServices::class);
- /** @var StoreBargainUserHelpServices $bargainUserHelp */
- $bargainUserHelp = app()->make(StoreBargainUserHelpServices::class);
- /** @var StoreOrderServices $orderServices */
- $orderServices = app()->make(StoreOrderServices::class);
- $people_count = $bargainUserHelp->count(['bargain_id' => $id]);
- $spread_count = $bargainUserHelp->count(['bargain_id' => $id, 'type' => 0]);
- $start_count = $bargainUser->count(['bargain_id' => $id]);
- $success_count = $bargainUser->count(['bargain_id' => $id, 'status' => 3]);
- $pay_price = $orderServices->sum(['type' => 2, 'activity_id' => $id, 'paid' => 1], 'pay_price', true);
- $pay_count = $orderServices->count(['type' => 2, 'activity_id' => $id, 'paid' => 1]);
- $pay_rate = $start_count > 0 ? bcmul(bcdiv((string)$pay_count, (string)$start_count, 2), '100', 2) : 0;
- return compact('people_count', 'spread_count', 'start_count', 'success_count', 'pay_price', 'pay_count', 'pay_rate');
- }
- /**
- * 砍价统计列表
- * @param $id
- * @param array $where
- * @return array
- */
- public function bargainStatisticsList(int $id, array $where = [])
- {
- /** @var StoreBargainUserServices $bargainUser */
- $bargainUser = app()->make(StoreBargainUserServices::class);
- $where['bargain_id'] = $id;
- return $bargainUser->bargainUserList($where);
- }
- /**
- * 砍价统计订单
- * @param $id
- * @param array $where
- * @return array
- */
- public function bargainStatisticsOrder(int $id, array $where = [])
- {
- /** @var StoreOrderServices $orderServices */
- $orderServices = app()->make(StoreOrderServices::class);
- [$page, $limit] = $this->getPageValue();
- $list = $orderServices->activityStatisticsOrder($id, 2, $where, $page, $limit);
- $where['type'] = 2;
- $where['activity_id'] = $id;
- $count = $orderServices->count($where);
- foreach ($list as &$item) {
- if ($item['is_del'] || $item['is_system_del']) {
- $item['status'] = '已删除';
- } else if ($item['paid'] == 0 && $item['status'] == 0) {
- $item['status'] = '未支付';
- } else if ($item['paid'] == 1 && $item['status'] == 4 && in_array($item['shipping_type'], [1, 3]) && $item['refund_status'] == 0) {
- $item['status'] = '部分发货';
- } else if ($item['paid'] == 1 && $item['refund_status'] == 2) {
- $item['status'] = '已退款';
- } else if ($item['paid'] == 1 && $item['status'] == 5 && $item['refund_status'] == 0) {
- $item['status'] = $item['shipping_type'] == 2 ? '部分核销' : '部分收货';
- $item['_status'] = 12;//已支付 部分核销
- } else if ($item['paid'] == 1 && $item['refund_status'] == 1) {
- $item['status'] = '申请退款';
- } else if ($item['paid'] == 1 && $item['refund_status'] == 4) {
- $item['status'] = '退款中';
- } else if ($item['paid'] == 1 && $item['status'] == 0 && in_array($item['shipping_type'], [1, 3]) && $item['refund_status'] == 0) {
- $item['status'] = '未发货';
- $item['_status'] = 2;//已支付 未发货
- } else if ($item['paid'] == 1 && in_array($item['status'], [0, 1]) && $item['shipping_type'] == 2 && $item['refund_status'] == 0) {
- $item['status'] = '未核销';
- } else if ($item['paid'] == 1 && in_array($item['status'], [1, 5]) && in_array($item['shipping_type'], [1, 3]) && $item['refund_status'] == 0) {
- $item['status'] = '待收货';
- } else if ($item['paid'] == 1 && $item['status'] == 2 && $item['refund_status'] == 0) {
- $item['status'] = '待评价';
- } else if ($item['paid'] == 1 && $item['status'] == 3 && $item['refund_status'] == 0) {
- $item['status'] = '已完成';
- } else if ($item['paid'] == 1 && $item['refund_status'] == 3) {
- $item['status'] = '部分退款';
- } else {
- $item['status'] = '未知';
- }
- $item['add_time'] = date('Y-m-d H:i:s', $item['add_time']);
- $item['pay_time'] = $item['pay_time'] ? date('Y-m-d H:i:s', $item['pay_time']) : '';
- }
- return compact('list', 'count');
- }
- }
|