123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531 |
- <?php
-
-
- namespace app\admin\logic\shop;
-
-
- use app\common\basics\Logic;
- use app\common\enum\ShopEnum;
- use app\common\model\shop\Shop;
- use app\common\model\shop\ShopAdmin;
- use app\common\model\shop\ShopGoods;
- use app\common\model\shop\ShopHkLog;
- use app\common\server\UrlServer;
- use Exception;
- use think\facade\Db;
-
- class StoreLogic extends Logic
- {
- /**
- * NOTE: 商家列表
- * @author: 张无忌
- * @param $get
- * @return array|bool
- */
- public static function lists($get)
- {
- try {
- $where = [
- ['del', '=', 0]
- ];
-
- if (!empty($get['name']) and $get['name'])
- $where[] = ['name', 'like', '%'.$get['name'].'%'];
-
- if (!empty($get['type']) and is_numeric($get['type']))
- $where[] = ['type', '=', $get['type']];
-
- if (!empty($get['cid']) and is_numeric($get['cid']))
- $where[] = ['cid', '=', $get['cid']];
-
- if (isset($get['is_recommend']) && $get['is_recommend'] != '')
- $where[] = ['is_recommend', '=', $get['is_recommend']];
-
- if (isset($get['hksy_type']) && $get['hksy_type'] != '')
- $where[] = ['hksy_type', '=', $get['hksy_type']];
-
- if (isset($get['is_run']) && $get['is_run'] != '')
- $where[] = ['is_run', '=', $get['is_run']];
-
- if (isset($get['is_freeze']) and $get['is_freeze'] != '')
- $where[] = ['is_freeze', '=', $get['is_freeze']];
-
- if (!empty($get['expire_start_time']) and $get['expire_start_time'])
- $where[] = ['expire_time', '>=', strtotime($get['expire_start_time'])];
-
- if (!empty($get['expire_end_time']) and $get['expire_end_time'])
- $where[] = ['expire_time', '<=', strtotime($get['expire_end_time'])];
-
- $condition = 'del=0';
- // 到期状态
- if (isset($get['expire_status']) and $get['expire_status'] != '') {
- if ($get['expire_status']) {
- // 已到期
- $where[] = ['expire_time', '<', time()];
- $where[] = ['expire_time', '>', 0];
- } else {
- // 未到期
- $condition = "expire_time=0 OR expire_time >". time();
- }
- }
-
- $model = new Shop();
- $lists = $model->field(true)
- ->where($where)
- ->whereRaw($condition)
- ->order('id', 'desc')
- ->order('weight', 'asc')
- ->with(['category', 'admin'])
- ->append(['expire_desc'])
- ->paginate([
- 'page' => $get['page'],
- 'list_rows' => $get['limit'],
- 'var_page' => 'page'
- ])
- ->toArray();
-
- foreach ($lists['data'] as &$item) {
- $item['category'] = $item['category']['name'] ?? '未知';
- $item['type'] = ShopEnum::getShopTypeDesc($item['type']);
- $item['is_run'] = ShopEnum::getShopIsRunDesc($item['is_run']);
- $item['is_freeze'] = ShopEnum::getShopFreezeDesc($item['is_freeze']);
- $item['is_recommend'] = ShopEnum::getShopIsRecommendDesc($item['is_recommend']);
- $item['account'] = $item['admin']['account'] ?? '';
- }
-
- return ['count'=>$lists['total'], 'lists'=>$lists['data']];
- } catch (Exception $e) {
- return ['error'=>$e->getMessage()];
- }
- }
-
- /**
- * NOTE: 商家详细
- * @author: 张无忌
- * @param $id
- * @return array
- */
- public static function detail($id)
- {
- $model = new Shop();
- $detail = $model->json(['other_qualifications'],true)->findOrEmpty($id)->toArray();
- $detail['expire_time'] = $detail['expire_time'] == '无期限' ? 0 : $detail['expire_time'];
-
- $detail['business_license'] = $detail['business_license'] ? UrlServer::getFileUrl($detail['business_license']) : '';
- if (!empty($detail['other_qualifications'])) {
- foreach ($detail['other_qualifications'] as &$val) {
- $val = UrlServer::getFileUrl($val);
- }
- }
-
- return $detail;
- }
-
-
- public static function getServerGoods($id)
- {
- $model = new ShopGoods();
- $where = [
- ['del', '=', 0]
- ];
- $lists = $model->field(true)
- ->where($where)
- ->order('sort', 'desc')
- ->select()
- ->toArray();
- return $lists;
- }
-
-
- public static function getAccountInfo($id)
- {
- $detail = ShopAdmin::field('id,account')->where(['shop_id' => $id, 'root' => 1])->findOrEmpty()->toArray();
- return $detail;
- }
-
- /**
- * NOTE: 新增商家
- * @author: 张无忌
- * @param $post
- * @return bool
- */
- public static function add($post)
- {
- Db::startTrans();
- try {
- // 校验配送方式
- self::checkDeliveryType($post);
-
- $hksy_type = $post['hksy_type'] ?? 1;
- $hksy_count = $post['hksy_count'] ?? 0;
- $op_count = $post['months'] ?? 0;
-
- if ($hksy_type == 1) {
- $op_count = 12;
- } else {
- $hksy_count = 0;
- }
-
- $di = \DateInterval::createFromDateString(strval($op_count) . ' months');
- $dt = date_create_from_format('Y-m-d H:i:s', date('Y-m-d 00:00:00', time()))->add($di);
- $expire_time = $dt->getTimestamp();
-
- // 创建商家
- $shop = Shop::create([
- 'cid' => $post['cid'],
- 'type' => $post['type'],
- 'name' => $post['name'],
- 'nickname' => $post['nickname'],
- 'mobile' => $post['mobile'],
- 'logo' => $post['logo'] ?? '',
- 'background' => $post['background'] ?? '',
- 'license' => $post['license'] ?? '',
- 'keywords' => $post['keywords'] ?? '',
- 'intro' => $post['intro'] ?? '',
- 'weight' => $post['weight'] ?? 0,
- 'trade_service_fee' => $post['trade_service_fee'],
- 'is_run' => $post['is_run'],
- 'is_freeze' => $post['is_freeze'],
- 'is_product_audit' => $post['is_product_audit'],
- 'is_recommend' => $post['is_recommend'] ?? 0,
- // 'expire_time' => !empty($post['expire_time']) ? strtotime($post['expire_time']) : 0,
- 'expire_time' => $expire_time,
- 'province_id' => $post['province_id'] ?? 0,
- 'city_id' => $post['city_id'] ?? 0,
- 'district_id' => $post['district_id'] ?? 0,
- 'address' => $post['address'] ?? '',
- 'longitude' => $post['longitude'] ?? '',
- 'latitude' => $post['latitude'] ?? '',
- 'delivery_type' => $post['delivery_type'] ?? [1],
- 'hksy_type' => $hksy_type,
- 'hksy_count' => $hksy_count,
- ]);
- // 创建账号
- // 新增商家登录账号
- $time = time();
- $salt = substr(md5($time . $post['name']), 0, 4);//随机4位密码盐
- ShopAdmin::create([
- 'root' => 1,
- 'shop_id' => $shop->id,
- 'name' => '超级管理员',
- 'account' => $post['account'],
- 'password' => generatePassword($post['password'], $salt),
- 'salt' => $salt,
- 'role_id' => 0,
- 'create_time' => $time,
- 'update_time' => $time,
- 'disable' => 0,
- 'del' => 0
- ]);
-
- // 添加用户套餐时间或者数量日志 ZMH 2025-03-24
- if ($hksy_type >= 0) {
- // 添加用户套餐时间或者数量
- $hk = new ShopHkLog();
- $hk->shop_id = $shop['id'];
- $hk->source_id = 0;
- if ($hksy_type == 1) {
- $hk->source_type = 100;
- $hk->change_count = $hksy_count;
- $hk->left_count = $hksy_count;
- $hk->remark = '[初始化],赠送操作数量:' . $hksy_count;
- } else {
- $hk->source_type = 200;
- $hk->change_count = $op_count;
-
- $hk->before_date = date('Y-m-d H:i:s', time());
- $hk->after_date = date('Y-m-d H:i:s', $dt->getTimestamp());
- $hk->remark = '[初始化],赠送月份数量:' . $op_count;
- }
-
- $hk->save();
- }
-
- Db::commit();
- return true;
- } catch (Exception $e) {
- Db::rollback();
- static::$error = $e->getMessage();
- return false;
- }
- }
-
- /**
- * NOTE: 编辑商家
- * @author: 张无忌
- * @param $post
- * @return bool
- */
- public static function edit($post)
- {
- try {
- // 校验配送方式
- self::checkDeliveryType($post);
-
- Shop::update([
- 'cid' => $post['cid'],
- 'type' => $post['type'],
- 'name' => $post['name'],
- 'nickname' => $post['nickname'],
- 'mobile' => $post['mobile'],
- 'logo' => $post['logo'] ?? '',
- 'keywords' => $post['keywords'] ?? '',
- 'intro' => $post['intro'] ?? '',
- 'trade_service_fee' => $post['trade_service_fee'],
- 'is_run' => $post['is_run'],
- 'is_freeze' => $post['is_freeze'],
- 'is_product_audit' => $post['is_product_audit'],
- 'expire_time' => !empty($post['expire_time']) ? strtotime($post['expire_time']) : 0,
- 'province_id' => $post['province_id'] ?? 0,
- 'city_id' => $post['city_id'] ?? 0,
- 'district_id' => $post['district_id'] ?? 0,
- 'address' => $post['address'] ?? '',
- 'longitude' => $post['longitude'] ?? '',
- 'latitude' => $post['latitude'] ?? '',
- 'delivery_type' => $post['delivery_type'] ?? [1],
- 'business_license' => empty($post['business_license']) ? '' : UrlServer::setFileUrl($post['business_license']),
- 'other_qualifications' => isset($post['other_qualifications']) ? json_encode($post['other_qualifications'], JSON_UNESCAPED_UNICODE) : '',
- ], ['id'=>$post['id']]);
-
- return true;
- } catch (Exception $e) {
- static::$error = $e->getMessage();
- return false;
- }
- }
-
- /**
- * NOTE: 设置商家
- * @author: 张无忌
- * @param $post
- * @return bool
- */
- public static function set($post)
- {
- //判断参数
- if((int)$post['number'] < 0){
- static::$error = "操作数量不能等于0!";
- return false;
- }
-
- Db::startTrans();
- try {
- //操作数大于0
- if((int)$post['number'] > 0) {
- $number = (int)$post['number'];
- //计算
- $item = Shop::where(['id' => $post['id']])->find();
- if ((int)$item['hksy_type'] === 0) {
- //包月
- $expire_time = strtotime($item['expire_time']);
- if ((int)$post['type'] === 0) {
- //增加
- $b = $number;
- $b_str = '增加';
- if ((int)$post['mouth'] === 0) {
- //月份
- $after_time = strtotime("+" . $number . " months", $expire_time);
- $b_str .= $number . '个月';
- $b_t = 0;
- } else {
- //天数
- $after_time = strtotime("+" . $number . " day", $expire_time);
- $b_str .= $number . '天';
- $b_t = 1;
- }
- } else {
- //减少
- $b = -$number;
- $b_str = '减少';
- if ((int)$post['mouth'] === 0) {
- //月份
- $after_time = strtotime("-" . $number . " months", $expire_time);
- $b_str .= $number . '个月';
- $b_t = 0;
- } else {
- //天数
- $after_time = strtotime("-" . $number . " day", $expire_time);
- $b_str .= $number . '天';
- $b_t = 1;
- }
- }
- //操作结果测试
- //echo $item['expire_time'].'<br/>';
- //echo date("Y-m-d H:i:s",$after_time);die;
- } else {
- //按量付费
- $hksy_count = (int)$item['hksy_count'];
- if ((int)$post['type'] === 0) {
- //增加
- $after_hksy_count = $hksy_count + (int)$number;
- $c = $number;
- $c_str = '增加次数:' . $number;
- } else {
- //减少
- if ($number > $hksy_count) {
- //static::$error = "剩余数量不足于减少!";
- //return false;
- throw new \think\Exception('剩余数量不足于减少!');
- }
- $c = -$number;
- $c_str = '减少次数:' . $number;
- $after_hksy_count = $hksy_count - (int)$number;
- }
- //测试操作结果
- //echo $hksy_count.'<br/>';
- //echo $after_hksy_count;die;
- }
-
-
- //增加日志
- // 添加用户套餐时间或者数量
- $hk = new ShopHkLog();
- $hk->shop_id = $item['id'];
- $hk->source_id = 0;
- if ((int)$item['hksy_type'] === 0) {
- //包月
- $hk->source_type = 200;
- $hk->change_count = $b;
- $hk->before_date = date('Y-m-d H:i:s', $expire_time);
- $hk->after_date = date('Y-m-d H:i:s', $after_time);
- $hk->remark = '[后台操作],' . $b_str;
- $hk->dw_type = $b_t; //单位类型
- } else {
- //按量付费
- $hk->source_type = 100;
- $hk->change_count = $c;
- $hk->left_count = $after_hksy_count;
- $hk->remark = '[后台操作],' . $c_str;
- $hk->dw_type = 2;
- }
- $hk->save();
-
- if ((int)$item['hksy_type'] === 0) {
- Shop::update([
- 'expire_time' => $after_time,
- 'is_distribution' => $post['is_distribution'] ?? 0,
- 'is_recommend' => $post['is_recommend'] ?? 0,
- 'is_pay' => $post['is_pay'] ?? 1, //是否开启支付功能,默认开启
- 'weight' => $post['weight'],
- 'tid' => $post['tid']
- ], ['id' => $post['id']]);
- }else{
- Shop::update([
- 'hksy_count' => $after_hksy_count,
- 'is_distribution' => $post['is_distribution'] ?? 0,
- 'is_recommend' => $post['is_recommend'] ?? 0,
- 'is_pay' => $post['is_pay'] ?? 1, //是否开启支付功能,默认开启
- 'weight' => $post['weight'],
- 'tid' => $post['tid']
- ], ['id' => $post['id']]);
- }
- }else{
- Shop::update([
- 'is_distribution' => $post['is_distribution'] ?? 0,
- 'is_recommend' => $post['is_recommend'] ?? 0,
- 'is_pay' => $post['is_pay'] ?? 1, //是否开启支付功能,默认开启
- 'weight' => $post['weight'],
- 'tid' => $post['tid']
- ], ['id' => $post['id']]);
- }
-
- Db::commit();
- return true;
-
- } catch (Exception $e) {
- Db::rollback();
- static::$error = $e->getMessage();
- return false;
- }
- }
-
- /**
- * NOTE: 更新账号密码
- * @author: 张无忌
- * @param $post
- * @return bool
- */
- public static function account($post)
- {
- Db::startTrans();
- try {
- if(!isset($post['account']) || empty($post['account'])) {
- throw new \think\Exception('账户不能为空');
- }
- $shopAdmin = ShopAdmin::where([
- ['account', '=', trim($post['account'])],
- ['shop_id', '<>', $post['id']]
- ])->findOrEmpty();
- if(!$shopAdmin->isEmpty()) {
- throw new \think\Exception('账户已存在,请更换其他名称重试');
- }
-
- $shopAdmin = ShopAdmin::where(['shop_id' => $post['id'], 'root' => 1])->findOrEmpty();
-
- $shopAdminUpdateData = [
- 'account' => $post['account'],
- 'update_time' => time()
- ];
- if (!empty($post['password'])) {
- $shopAdminUpdateData['password'] = generatePassword($post['password'], $shopAdmin->salt);
- }
- ShopAdmin::where(['shop_id' => $post['id'], 'root' => 1])->update($shopAdminUpdateData);
-
- Db::commit();
- return true;
- } catch (Exception $e) {
- Db::rollback();
- static::$error = $e->getMessage();
- return false;
- }
- }
-
-
- /**
- * @notes 批量更新商家营业状态或冻结状态
- * @param $ids
- * @param $field
- * @param $value
- * @return Shop|false
- * @author 段誉
- * @date 2022/3/17 10:42
- */
- public static function batchOperation($ids, $field, $value)
- {
- try {
- $result = Shop::whereIn('id', $ids)->update([
- $field => $value,
- 'update_time' => time()
- ]);
- return $result;
- } catch (\Exception $e) {
- self::$error = $e->getMessage();
- return false;
- }
- }
-
-
- /**
- * @notes 校验配送方式
- * @param $post
- * @return bool
- * @throws \Exception
- * @author 段誉
- * @date 2022/11/1 11:30
- */
- public static function checkDeliveryType($post)
- {
- // 校验配送方式
- if (empty($post['delivery_type'])) {
- throw new \Exception('至少选择一种配送方式');
- }
-
- // 线下自提时,商家地址必填
- if (in_array(ShopEnum::DELIVERY_SELF, $post['delivery_type'])) {
- if (empty($post['province_id']) || empty($post['city_id']) || empty($post['district_id']) || empty($post['address'])) {
- throw new \Exception('线下自提需完善商家地址');
- }
- }
- return true;
- }
- }
|