截流自动化的商城平台
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.

GoodsLogic.php 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  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\distribution;
  20. use app\common\basics\Logic;
  21. use app\common\model\distribution\DistributionGoods;
  22. use app\common\model\distribution\DistributionLevel;
  23. use app\common\model\goods\Goods;
  24. use app\common\model\shop\Shop;
  25. use app\common\server\ConfigServer;
  26. use think\facade\Db;
  27. class GoodsLogic extends Logic
  28. {
  29. /**
  30. * @notes 分销商品列表
  31. * @param $params
  32. * @return array
  33. * @throws \think\db\exception\DataNotFoundException
  34. * @throws \think\db\exception\DbException
  35. * @throws \think\db\exception\ModelNotFoundException
  36. * @author Tab
  37. * @date 2021/9/1 18:02
  38. */
  39. public static function lists($params)
  40. {
  41. $where = [
  42. ['del', '<>', '1'],
  43. ['shop_id', '=', $params['shop_id']]
  44. ];
  45. // 商品信息
  46. if (isset($params['keyword']) && !empty($params['keyword'])) {
  47. $where[] = ['name|code', 'like', '%'. $params['keyword']. '%'];
  48. }
  49. // 平台商品分类
  50. if (isset($params['platform_cate_id']) && $params['platform_cate_id'] != 'all') {
  51. $where[] = ['first_cate_id|second_cate_id|third_cate_id', '=', $params['platform_cate_id']];
  52. }
  53. // 商家商品分类
  54. if (isset($params['shop_cate_id']) && $params['shop_cate_id'] != 'all') {
  55. $where[] = ['shop_cate_id', '=', $params['shop_cate_id']];
  56. }
  57. $field = [
  58. 'id',
  59. 'code',
  60. 'name',
  61. 'image',
  62. 'max_price',
  63. 'min_price',
  64. 'id' => 'distribution_flag',
  65. ];
  66. $lists = Goods::field($field)
  67. ->where($where)
  68. ->withSearch('is_distribution', $params)
  69. ->page($params['page'], $params['limit'])
  70. ->order('id', 'desc')
  71. ->select()
  72. ->toArray();
  73. $count = Goods::field($field)
  74. ->where($where)
  75. ->withSearch('is_distribution', $params)
  76. ->count();
  77. return [
  78. 'count' => $count,
  79. 'lists' => $lists
  80. ];
  81. }
  82. /**
  83. * @notes 商品详情
  84. * @param $params
  85. * @return array
  86. * @throws \think\db\exception\DataNotFoundException
  87. * @throws \think\db\exception\DbException
  88. * @throws \think\db\exception\ModelNotFoundException
  89. * @author Tab
  90. * @date 2021/9/1 19:59
  91. */
  92. public static function detail($params)
  93. {
  94. // 商品信息
  95. $goods = Goods::field('id,code,name')->with('goods_item')->findOrEmpty($params['id'])->toArray();
  96. // 分销等级信息
  97. $distributionLevelLists = DistributionLevel::order('weights', 'asc')->select()->toArray();
  98. // 商品分销信息
  99. $distributionGoods = DistributionGoods::where('goods_id', $params['id'])->select()->toArray();
  100. if(empty($distributionGoods)) {
  101. // 未参与分销
  102. $goods['is_distribution'] = 0;
  103. $goods['rule'] = 1;
  104. $ratio = self::formatLevel($distributionLevelLists, $goods);
  105. } else {
  106. $goods['is_distribution'] = $distributionGoods[0]['is_distribution'];
  107. $goods['rule'] = $distributionGoods[0]['rule'];
  108. if($distributionGoods[0]['rule'] == 1) {
  109. $ratio = self::formatLevel($distributionLevelLists, $goods);
  110. } else {
  111. $ratio = self::formatGoods($distributionLevelLists, $goods);
  112. }
  113. }
  114. return [
  115. 'goods' => $goods,
  116. 'ratio' => $ratio
  117. ];
  118. }
  119. /**
  120. * @notes 拼装分销等级佣金比例
  121. * @param $distributionLevelLists
  122. * @param $goods
  123. * @return array
  124. * @author Tab
  125. * @date 2021/9/1 19:44
  126. */
  127. public static function formatLevel($distributionLevelLists, $goods)
  128. {
  129. $ratio = [];
  130. foreach($distributionLevelLists as $level) {
  131. foreach($goods['goods_item'] as $item) {
  132. $temp = [
  133. 'level_id' => $level['id'],
  134. 'level_name' => $level['name'],
  135. 'first_ratio' => $level['first_ratio'],
  136. 'second_ratio' => $level['second_ratio'],
  137. 'goods_id' => $item['goods_id'],
  138. 'item_id' => $item['id'],
  139. 'spec_value_str' => $item['spec_value_str'],
  140. 'price' => $item['price']
  141. ];
  142. $ratio[] = $temp;
  143. }
  144. }
  145. return $ratio;
  146. }
  147. /**
  148. * @notes 拼装单独设置的佣金比例
  149. * @param $distributionLevelLists
  150. * @param $goods
  151. * @param $distributionGoods
  152. * @return array
  153. * @author Tab
  154. * @date 2021/9/2 9:28
  155. */
  156. public static function formatGoods($distributionLevelLists, $goods)
  157. {
  158. $ratio = [];
  159. foreach($distributionLevelLists as $level) {
  160. foreach($goods['goods_item'] as $item) {
  161. $record = DistributionGoods::where([
  162. 'level_id' => $level['id'],
  163. 'item_id' => $item['id'],
  164. ])->findOrEmpty()->toArray();
  165. $temp = [
  166. 'level_id' => $level['id'],
  167. 'level_name' => $level['name'],
  168. 'first_ratio' => $record['first_ratio'] ?? 0,
  169. 'second_ratio' => $record['second_ratio'] ?? 0,
  170. 'goods_id' => $item['goods_id'],
  171. 'item_id' => $item['id'],
  172. 'spec_value_str' => $item['spec_value_str'],
  173. 'price' => $item['price']
  174. ];
  175. $ratio[] = $temp;
  176. }
  177. }
  178. return $ratio;
  179. }
  180. /**
  181. * @notes 设置佣金
  182. * @param $params
  183. * @return bool
  184. * @author Tab
  185. * @date 2021/9/1 20:52
  186. */
  187. public static function set($params)
  188. {
  189. Db::startTrans();
  190. try {
  191. if (false === self::ableDistribution($params['shop_id'])) {
  192. throw new \Exception('平台已关闭分销功能');
  193. }
  194. switch($params['rule']) {
  195. // 根据分销会员等级比例分佣
  196. case 1:
  197. self::setRuleOne($params);
  198. break;
  199. // 单独设置
  200. case 2:
  201. self::setRuleTwo($params);
  202. break;
  203. }
  204. Db::commit();
  205. return true;
  206. }catch(\Exception $e) {
  207. Db::rollback();
  208. self::$error = $e->getMessage();
  209. return false;
  210. }
  211. }
  212. /**
  213. * @notes 设置佣金 - 根据分销会员等级比例分佣
  214. * @param $params
  215. * @author Tab
  216. * @date 2021/9/1 21:04
  217. */
  218. public static function setRuleOne($params)
  219. {
  220. // 删除旧数据
  221. $deleteIds = DistributionGoods::where('goods_id', $params['id'])->column('id');
  222. DistributionGoods::destroy($deleteIds);
  223. // 生成新数据
  224. $data = [
  225. 'shop_id' => $params['shop_id'],
  226. 'goods_id' => $params['id'],
  227. 'is_distribution' => $params['is_distribution'],
  228. 'rule' => $params['rule'],
  229. ];
  230. DistributionGoods::create($data);
  231. }
  232. /**
  233. * @notes 设置佣金 - 单独自定义
  234. * @param $params
  235. * @throws \Exception
  236. * @author Tab
  237. * @date 2021/9/1 21:04
  238. */
  239. public static function setRuleTwo($params)
  240. {
  241. // 删除旧数据
  242. $deleteIds = DistributionGoods::where('goods_id', $params['id'])->column('id');
  243. DistributionGoods::destroy($deleteIds);
  244. // 生成新数据
  245. $data= [];
  246. foreach($params['first_ratio'] as $k => $v) {
  247. if ($params['first_ratio'][$k] < 0 || $params['second_ratio'][$k] < 0) {
  248. throw new \Exception('分销比例不能小于0');
  249. }
  250. $temp = [
  251. 'shop_id' => $params['shop_id'],
  252. 'goods_id' => $params['id'],
  253. 'item_id' => $params['items'][$k],
  254. 'level_id' => $params['levels'][$k],
  255. 'first_ratio' => !empty($params['first_ratio'][$k]) ? round($params['first_ratio'][$k], 2) : 0,
  256. 'second_ratio' => !empty($params['second_ratio'][$k]) ? round($params['second_ratio'][$k], 2) : 0,
  257. 'is_distribution' => $params['is_distribution'],
  258. 'rule' => $params['rule'],
  259. ];
  260. $data[] = $temp;
  261. }
  262. (new DistributionGoods())->saveAll($data);
  263. }
  264. /**
  265. * @notes 参与分销/取消分销
  266. * @param $params
  267. * @return bool
  268. * @author Tab
  269. * @date 2021/9/2 10:11
  270. */
  271. public static function isDistribution($params)
  272. {
  273. Db::startTrans();
  274. try{
  275. if (false === self::ableDistribution($params['shop_id'])) {
  276. throw new \Exception('平台已关闭分销功能');
  277. }
  278. $existedIds = DistributionGoods::distinct(true)->column('goods_id');
  279. $updateIds = array_intersect($params['ids'], $existedIds);
  280. $insertIds = array_diff($params['ids'], $existedIds);
  281. // 有分销数据,直接修改
  282. DistributionGoods::where('goods_id', 'in', $updateIds)->update(['is_distribution' => $params['is_distribution']]);
  283. // 无分销数据,新增
  284. $insertData = [];
  285. foreach($insertIds as $id) {
  286. $item['goods_id'] = $id;
  287. $item['is_distribution'] = $params['is_distribution'];
  288. $item['rule'] = 1;
  289. $item['shop_id'] = $params['shop_id'];
  290. $insertData[] = $item;
  291. }
  292. (new DistributionGoods())->saveAll($insertData);
  293. Db::commit();
  294. return true;
  295. }catch(\Exception $e) {
  296. Db::rollback();
  297. self::$error = $e->getMessage();
  298. return false;
  299. }
  300. }
  301. /**
  302. * @notes 能否参与分销
  303. * @param $shopId
  304. * @return bool
  305. * @author 段誉
  306. * @date 2022/8/1 16:04
  307. */
  308. public static function ableDistribution($shopId)
  309. {
  310. // 平台分销功能开关
  311. $open = ConfigServer::get('distribution', 'is_open', 0);
  312. // 商家信息-获取商家是否被禁用分销功能(is_distribution)
  313. $shop = Shop::findOrEmpty($shopId)->toArray();
  314. if (!$open || !$shop['is_distribution']) {
  315. return false;
  316. }
  317. return true;
  318. }
  319. }