123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <?php
- // +----------------------------------------------------------------------
- // | likeshop开源商城系统
- // +----------------------------------------------------------------------
- // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
- // | gitee下载:https://gitee.com/likeshop_gitee
- // | github下载:https://github.com/likeshop-github
- // | 访问官网:https://www.likeshop.cn
- // | 访问社区:https://home.likeshop.cn
- // | 访问手册:http://doc.likeshop.cn
- // | 微信公众号:likeshop技术社区
- // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
- // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
- // | 禁止对系统程序代码以任何目的,任何形式的再发布
- // | likeshop团队版权所有并拥有最终解释权
- // +----------------------------------------------------------------------
- // | author: likeshop.cn.team
- // +----------------------------------------------------------------------
-
- namespace app\shop\logic\free_shipping;
-
- use app\common\basics\Logic;
- use app\common\server\ConfigServer;
- use think\facade\Db;
-
- class FreeShippingLogic extends Logic
- {
- public static function index($params)
- {
- Db::startTrans();
- try {
- // 保存设置
- $config = Db::name('free_shipping_config')->where([
- 'shop_id' => $params['shop_id'],
- 'del' => 0
- ])->findOrEmpty();
- if (empty($config)) {
- // 无则添加
- Db::name('free_shipping_config')->save([
- 'shop_id' => $params['shop_id'],
- 'status' => $params['status'],
- 'goods_type' => $params['goods_type'],
- 'free_rule' => $params['free_rule'],
- 'create_time' => time(),
- 'del' => 0,
- ]);
- } else {
- // 有则更新
- Db::name('free_shipping_config')->where([
- 'shop_id' => $params['shop_id'],
- 'del' => 0
- ])->update([
- 'status' => $params['status'],
- 'goods_type' => $params['goods_type'],
- 'free_rule' => $params['free_rule'],
- 'update_time' => time()
- ]);
- }
- // 先清除旧数据
- Db::name('free_shipping_region')->where([
- 'shop_id' => $params['shop_id'],
- 'del' => 0
- ])->update(['del' => 1]);
- // 保存活动区域
- $data = [];
- $time = time();
- $del = 0;
- foreach($params['region'] as $key => $value) {
- if($params['order_amount'][$key] < 0) {
- throw new \Exception('订单金额不能小于0');
- }
- $data[] = ['shop_id' => $params['shop_id'], 'region' => $value, 'order_amount' => $params['order_amount'][$key], 'create_time' => $time, 'del' => $del];
- }
-
- Db::name('free_shipping_region')->insertAll($data);
-
- Db::commit();
- return true;
- } catch (\Exception $e) {
- Db::rollback();
- self::$error = $e->getMessage();
- return false;
- }
- }
-
- public static function getData($shopId)
- {
- $config = Db::name('free_shipping_config')
- ->field('status,goods_type,free_rule')
- ->where([
- 'shop_id' => $shopId,
- 'del' => 0,
- ])->findOrEmpty();
- if(empty($config)) {
- // 默认值
- $config = [
- 'status' => 0,
- 'goods_type' => 1,
- 'free_rule' => 1,
- ];
- }
- $regionArr = Db::name('free_shipping_region')->field('region,order_amount')
- ->where([
- 'shop_id' => $shopId,
- 'del' => 0,
- ])->select()->toArray();
-
- $regions = Db::name('dev_region')->column('name', 'id');
-
- foreach ($regionArr as &$item) {
- $item['region_name'] = '';
-
- if ($item['region'] == 'all'){
- $item['region_name'] = '全国地区默认规则';
- continue;
- }
-
- $region = explode(',', $item['region']);
-
- foreach ($region as $v) {
- if (isset($regions[$v])) {
- $item['region_name'] .= $regions[$v] . ',';
- }
- }
- $item['region_name'] = rtrim($item['region_name'], ',');
- }
-
- return [
- 'config' => $config,
- 'region' => $regionArr,
- ];
- }
- }
|