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

IntegralGoodsLogic.php 6.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  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\admin\logic\integral;
  20. use app\common\basics\Logic;
  21. use app\common\enum\IntegralGoodsEnum;
  22. use app\common\model\integral\IntegralGoods;
  23. use app\common\server\UrlServer;
  24. /**
  25. * 积分商品
  26. * Class IntegralGoodsLogic
  27. * @package app\admin\logic\kefu
  28. */
  29. class IntegralGoodsLogic extends Logic
  30. {
  31. public static function getLists($get)
  32. {
  33. $where = [
  34. ['del', '=', 0]
  35. ];
  36. if (isset($get['type']) && is_numeric($get['type'])) {
  37. $where[] = ['type', '=', $get['type']];
  38. }
  39. if (isset($get['status']) && is_numeric($get['status'])) {
  40. $where[] = ['status', '=', $get['status']];
  41. }
  42. if (isset($get['name']) && $get['name'] != '') {
  43. $where[] = ['name', 'like', '%' . $get['name'] . '%'];
  44. }
  45. $model = new IntegralGoods();
  46. $lists = $model->field(true)
  47. ->where($where)
  48. ->order(['sort' => 'desc','id'=>'desc'])
  49. ->paginate([
  50. 'page' => $get['page'],
  51. 'list_rows' => $get['limit'],
  52. 'var_page' => 'page'
  53. ])
  54. ->toArray();
  55. foreach ($lists['data'] as &$item) {
  56. $item['need'] = $item['need_integral'] . '积分+' . $item['need_money'] . '元';
  57. if ($item['type'] == IntegralGoodsEnum::TYPE_BALANCE || $item['exchange_way'] == IntegralGoodsEnum::EXCHANGE_WAY_INTEGRAL) {
  58. $item['need'] = $item['need_integral'] . '积分';
  59. }
  60. $item['type'] = IntegralGoodsEnum::getTypeDesc($item['type']);
  61. $item['market_price'] = empty($item['market_price']) ? '-' : '¥' . $item['market_price'];
  62. }
  63. return ['count' => $lists['total'], 'lists' => $lists['data']];
  64. }
  65. /**
  66. * @notes 添加商品
  67. * @param $post
  68. * @return bool
  69. * @author 段誉
  70. * @date 2022/2/25 18:27
  71. */
  72. public static function add($post)
  73. {
  74. try {
  75. $storageUrl = UrlServer::getFileUrl();
  76. $content = str_replace($storageUrl, '/', $post['content']);
  77. IntegralGoods::create([
  78. 'name' => $post['name'],
  79. 'code' => $post['code'] ?? '',
  80. 'image' => $post['image'],
  81. 'type' => $post['type'],
  82. 'market_price' => $post['market_price'] ?? '',
  83. 'stock' => $post['stock'],
  84. 'status' => $post['status'],
  85. 'exchange_way' => $post['exchange_way'] ?? 1,
  86. 'need_integral' => $post['need_integral'],
  87. 'need_money' => $post['need_money'] ?? 0,
  88. 'delivery_way' => $post['delivery_way'] ?? 0,
  89. 'balance' => $post['balance'] ?? 0,
  90. 'express_type' => $post['express_type'] ?? 0,
  91. 'express_money' => $post['express_money'] ?? 0,
  92. 'content' => $content,
  93. 'sort' => $post['sort'] ?? 0,
  94. ]);
  95. return true;
  96. } catch (\Exception $e) {
  97. self::$error = $e->getMessage();
  98. return false;
  99. }
  100. }
  101. /**
  102. * @notes 编辑积分商品
  103. * @param $post
  104. * @return bool
  105. * @author 段誉
  106. * @date 2022/3/1 15:57
  107. */
  108. public static function edit($post)
  109. {
  110. try {
  111. $storageUrl = UrlServer::getFileUrl();
  112. $content = str_replace($storageUrl, '/', $post['content']);
  113. // 包邮或无需快递,运费重置为0
  114. if ($post['delivery_way'] == IntegralGoodsEnum::DELIVERY_NO_EXPRESS
  115. || $post['express_type'] == IntegralGoodsEnum::EXPRESS_TYPE_FREE) {
  116. $post['express_money'] = 0;
  117. $post['express_type'] = IntegralGoodsEnum::EXPRESS_TYPE_FREE;
  118. }
  119. IntegralGoods::update([
  120. 'id'=>$post['id'],
  121. 'name' => $post['name'],
  122. 'code' => $post['code'] ?? '',
  123. 'image' => $post['image'],
  124. 'market_price' => $post['market_price'] ?? '',
  125. 'stock' => $post['stock'],
  126. 'status' => $post['status'],
  127. 'exchange_way' => $post['exchange_way'] ?? 1,
  128. 'need_integral' => $post['need_integral'],
  129. 'need_money' => $post['need_money'] ?? 0,
  130. 'delivery_way' => $post['delivery_way'] ?? 0,
  131. 'balance' => $post['balance'] ?? 0,
  132. 'express_type' => $post['express_type'],
  133. 'express_money' => $post['express_money'],
  134. 'content' => $content,
  135. 'sort' => $post['sort'] ?? 0,
  136. ]);
  137. return true;
  138. } catch (\Exception $e) {
  139. self::$error = $e->getMessage();
  140. return false;
  141. }
  142. }
  143. public static function detail($id)
  144. {
  145. $detail = IntegralGoods::where(['id' => $id])->findOrEmpty();
  146. return $detail;
  147. }
  148. /**
  149. * @notes 切换状态
  150. * @param $post
  151. * @return IntegralGoods
  152. * @author 段誉
  153. * @date 2022/2/25 18:25
  154. */
  155. public static function switchStatus($post)
  156. {
  157. return IntegralGoods::update([
  158. 'status' => $post['status'],
  159. 'id' => $post['id']
  160. ]);
  161. }
  162. /**
  163. * @notes 删除商品
  164. * @param $post
  165. * @return IntegralGoods
  166. * @author 段誉
  167. * @date 2022/2/25 18:26
  168. */
  169. public static function del($post)
  170. {
  171. return IntegralGoods::update([
  172. 'id' => $post['id'],
  173. 'del' => 1,
  174. 'update_time' => time()
  175. ]);
  176. }
  177. }