截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

FreeShippingLogic.php 4.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\shop\logic\free_shipping;
  20. use app\common\basics\Logic;
  21. use app\common\server\ConfigServer;
  22. use think\facade\Db;
  23. class FreeShippingLogic extends Logic
  24. {
  25. public static function index($params)
  26. {
  27. Db::startTrans();
  28. try {
  29. // 保存设置
  30. $config = Db::name('free_shipping_config')->where([
  31. 'shop_id' => $params['shop_id'],
  32. 'del' => 0
  33. ])->findOrEmpty();
  34. if (empty($config)) {
  35. // 无则添加
  36. Db::name('free_shipping_config')->save([
  37. 'shop_id' => $params['shop_id'],
  38. 'status' => $params['status'],
  39. 'goods_type' => $params['goods_type'],
  40. 'free_rule' => $params['free_rule'],
  41. 'create_time' => time(),
  42. 'del' => 0,
  43. ]);
  44. } else {
  45. // 有则更新
  46. Db::name('free_shipping_config')->where([
  47. 'shop_id' => $params['shop_id'],
  48. 'del' => 0
  49. ])->update([
  50. 'status' => $params['status'],
  51. 'goods_type' => $params['goods_type'],
  52. 'free_rule' => $params['free_rule'],
  53. 'update_time' => time()
  54. ]);
  55. }
  56. // 先清除旧数据
  57. Db::name('free_shipping_region')->where([
  58. 'shop_id' => $params['shop_id'],
  59. 'del' => 0
  60. ])->update(['del' => 1]);
  61. // 保存活动区域
  62. $data = [];
  63. $time = time();
  64. $del = 0;
  65. foreach($params['region'] as $key => $value) {
  66. if($params['order_amount'][$key] < 0) {
  67. throw new \Exception('订单金额不能小于0');
  68. }
  69. $data[] = ['shop_id' => $params['shop_id'], 'region' => $value, 'order_amount' => $params['order_amount'][$key], 'create_time' => $time, 'del' => $del];
  70. }
  71. Db::name('free_shipping_region')->insertAll($data);
  72. Db::commit();
  73. return true;
  74. } catch (\Exception $e) {
  75. Db::rollback();
  76. self::$error = $e->getMessage();
  77. return false;
  78. }
  79. }
  80. public static function getData($shopId)
  81. {
  82. $config = Db::name('free_shipping_config')
  83. ->field('status,goods_type,free_rule')
  84. ->where([
  85. 'shop_id' => $shopId,
  86. 'del' => 0,
  87. ])->findOrEmpty();
  88. if(empty($config)) {
  89. // 默认值
  90. $config = [
  91. 'status' => 0,
  92. 'goods_type' => 1,
  93. 'free_rule' => 1,
  94. ];
  95. }
  96. $regionArr = Db::name('free_shipping_region')->field('region,order_amount')
  97. ->where([
  98. 'shop_id' => $shopId,
  99. 'del' => 0,
  100. ])->select()->toArray();
  101. $regions = Db::name('dev_region')->column('name', 'id');
  102. foreach ($regionArr as &$item) {
  103. $item['region_name'] = '';
  104. if ($item['region'] == 'all'){
  105. $item['region_name'] = '全国地区默认规则';
  106. continue;
  107. }
  108. $region = explode(',', $item['region']);
  109. foreach ($region as $v) {
  110. if (isset($regions[$v])) {
  111. $item['region_name'] .= $regions[$v] . ',';
  112. }
  113. }
  114. $item['region_name'] = rtrim($item['region_name'], ',');
  115. }
  116. return [
  117. 'config' => $config,
  118. 'region' => $regionArr,
  119. ];
  120. }
  121. }