截流自动化的商城平台
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

GoodsLogic.php 14KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  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\goods;
  20. use app\common\basics\Logic;
  21. use app\common\enum\GoodsEnum;
  22. use app\common\model\goods\Goods;
  23. use app\common\model\goods\GoodsColumn;
  24. use app\common\model\goods\GoodsImage;
  25. use app\common\model\goods\GoodsItem;
  26. use app\common\model\goods\GoodsSpec;
  27. use app\common\model\goods\GoodsSpecValue;
  28. use app\common\model\goods\Supplier;
  29. use app\common\server\UrlServer;
  30. use think\facade\Db;
  31. use app\common\model\seckill\SeckillGoods;
  32. /**
  33. * 商品管理-逻辑
  34. * Class GoodsLogic
  35. * @package app\shop\logic\goods
  36. */
  37. class GoodsLogic extends Logic
  38. {
  39. /*
  40. * 商品统计
  41. */
  42. public static function statistics($get = []) {
  43. $where = [
  44. ['del', '<>', GoodsEnum::DEL_TRUE]
  45. ];
  46. if(isset($get['goods_column_id']) && $get['goods_column_id'] != '') {
  47. $where[] = ['column_ids', '=', $get['goods_column_id']];
  48. }
  49. return [
  50. // 销售中商品(含库存预警商品)
  51. // 销售状态:上架中;删除状态:正常; 审核状态: 审核通过
  52. 'sell' => Goods::where($where)
  53. ->where('del', GoodsEnum::DEL_NORMAL)
  54. ->where('status', GoodsEnum::STATUS_SHELVES)
  55. ->where('audit_status', GoodsEnum::AUDIT_STATUS_OK)
  56. ->count(),
  57. // 仓库中商品
  58. // 销售状态:仓库中;删除状态:正常; 审核状态: 审核通过
  59. 'warehouse' => Goods::where($where)
  60. ->where('del', GoodsEnum::DEL_NORMAL)
  61. ->where('status', GoodsEnum::STATUS_SOLD_OUT)
  62. ->where('audit_status', GoodsEnum::AUDIT_STATUS_OK)
  63. ->count(),
  64. // 回收站商品
  65. // 销售状态:任意;删除状态:回收站; 审核状态: 审核通过
  66. 'recycle' => Goods::where($where)
  67. ->where('del', GoodsEnum::DEL_RECYCLE)
  68. ->where('audit_status', GoodsEnum::AUDIT_STATUS_OK)
  69. ->count(),
  70. // 待审核商品
  71. // 销售状态:任意;删除状态:排除已删除; 审核状态: 待审核
  72. 'audit_stay' => Goods::where($where)
  73. ->where('del', '<>', GoodsEnum::DEL_TRUE)
  74. ->where('audit_status', GoodsEnum::AUDIT_STATUS_STAY)
  75. ->count(),
  76. // 审核未通过商品
  77. // 销售状态:任意;删除状态:排除已删除; 审核状态: 审核未通过
  78. 'audit_refuse'=> Goods::where($where)
  79. ->where('del', '<>', GoodsEnum::DEL_TRUE)
  80. ->where('audit_status', GoodsEnum::AUDIT_STATUS_REFUSE)
  81. ->count(),
  82. ];
  83. }
  84. /**
  85. * Notes: 列表
  86. * @param $get
  87. * @author 段誉(2021/4/15 10:53)
  88. * @return array
  89. * @throws \think\db\exception\DataNotFoundException
  90. * @throws \think\db\exception\DbException
  91. * @throws \think\db\exception\ModelNotFoundException
  92. */
  93. public static function lists($get)
  94. {
  95. $where = [];
  96. if(isset($get['shop_name']) && !($get['shop_name'] == '')) {
  97. $where[] = ['s.name','like','%'.$get['shop_name'].'%'];
  98. }
  99. if(isset($get['goods_name']) && !($get['goods_name'] == '')) {
  100. $where[] = ['g.name','like','%'.$get['goods_name'].'%'];
  101. }
  102. if(!empty($get['platform_cate_id'])) {
  103. $where[] = ['g.first_cate_id|g.second_cate_id|g.third_cate_id','=', $get['platform_cate_id']];
  104. }
  105. if(isset($get['goods_type']) && $get['goods_type'] != '') {
  106. $where[] = ['g.type','=', $get['goods_type']];
  107. }
  108. if(isset($get['goods_column_id']) && $get['goods_column_id'] != '') {
  109. $where[] = ['g.column_ids', '=', $get['goods_column_id']];
  110. }
  111. $type = $get['type'] ?? 0;
  112. switch ($type) {
  113. case 1: //销售中
  114. $where[] = ['g.status', '=', GoodsEnum::STATUS_SHELVES];//上架
  115. $where[] = ['g.del', '=', GoodsEnum::DEL_NORMAL];
  116. $where[] = ['g.audit_status', '=', GoodsEnum::AUDIT_STATUS_OK];//审核通过
  117. break;
  118. case 2: //仓库中
  119. $where[] = ['g.status', '=', GoodsEnum::STATUS_SOLD_OUT];//下架
  120. $where[] = ['g.del', '=', GoodsEnum::DEL_NORMAL];
  121. $where[] = ['g.audit_status', '=', GoodsEnum::AUDIT_STATUS_OK];//审核通过
  122. break;
  123. case 3: //回收站
  124. $where[] = ['g.del', '=', GoodsEnum::DEL_RECYCLE];
  125. $where[] = ['g.audit_status', '=', GoodsEnum::AUDIT_STATUS_OK];//审核通过
  126. break;
  127. case 4: //待审核
  128. $where[] = ['g.del', '<>', GoodsEnum::DEL_TRUE];
  129. $where[] = ['g.audit_status', '=', GoodsEnum::AUDIT_STATUS_STAY];
  130. break;
  131. case 5: //审核未通过
  132. $where[] = ['g.del', '<>', GoodsEnum::DEL_TRUE];
  133. $where[] = ['g.audit_status', '=', GoodsEnum::AUDIT_STATUS_REFUSE];
  134. break;
  135. default:
  136. $where[] = ['g.del', '=', GoodsEnum::DEL_NORMAL];
  137. }
  138. $lists = Goods::alias('g')
  139. ->field('g.id, g.image, g.spec_type, g.name, g.min_price, g.max_price, g.sales_actual, g.stock, g.sort_weight, g.create_time, g.column_ids, g.audit_status, g.audit_remark,s.id as shop_id, s.name as shop_name, s.logo as shop_logo, s.type as shop_type')
  140. ->leftJoin('Shop s', 's.id=g.shop_id')
  141. ->where($where)
  142. ->page($get['page'], $get['limit'])
  143. ->order('g.create_time', 'desc')
  144. ->select();
  145. $count = Goods::alias('g')->leftJoin('shop s', 's.id = g.shop_id')->where($where)->count();
  146. foreach($lists as &$item) {
  147. $item['price'] = $item['spec_type'] == 1 ? $item["min_price"] : $item["min_price"] . " ~ " . $item["max_price"];
  148. switch($item['shop_type']) {
  149. case 1:
  150. $item['shop_type_desc'] = '官方自营';
  151. break;
  152. case 2:
  153. $item['shop_type_desc'] = '入驻商家';
  154. break;
  155. }
  156. $item['shop_logo'] = empty($item['shop_logo']) ? '' : UrlServer::getFileUrl($item['shop_logo']);
  157. if(!empty($item['column_ids'])) {
  158. $columnArr = explode(',', $item['column_ids']);
  159. $columnStr = '';
  160. foreach($columnArr as $cloumnId) {
  161. $columnName = GoodsColumn::where('id', $cloumnId)->value('name');
  162. $columnStr = $columnStr . $columnName . ',';
  163. }
  164. $columnStr = substr($columnStr, 0, strlen($columnStr) -1);
  165. $item['columnStr'] = $columnStr;
  166. }
  167. }
  168. if($count) {
  169. $lists = $lists->toArray();
  170. }else{
  171. $lists = [];
  172. }
  173. return ['count' => $count, 'lists' => $lists];
  174. }
  175. /**
  176. * 获取商品信息
  177. * @param $goods_id
  178. * @return array
  179. */
  180. public static function info($goods_id)
  181. {
  182. // 商品主表
  183. $info['base'] = Goods::where(['id' => $goods_id])
  184. ->withAttr('abs_image', function ($value, $data) {
  185. return UrlServer::getFileUrl($data['image']);
  186. })
  187. ->withAttr('content', function ($value){
  188. $preg = '/(<img .*?src=")[^https|^http](.*?)(".*?>)/is';
  189. $local_url = UrlServer::getFileUrl('/');
  190. return preg_replace($preg, "\${1}$local_url\${2}\${3}",$value);
  191. })
  192. ->withAttr('poster', function ($value){
  193. return empty($value) ? '' : UrlServer::getFileUrl($value);
  194. })
  195. ->withAttr('abs_video',function ($value,$data){
  196. if($data['video']){
  197. return UrlServer::getFileUrl($data['video']);
  198. }
  199. return '';
  200. })->append(['abs_image','abs_video'])->find();
  201. // 商品轮播图
  202. $info['base']['goods_image'] = GoodsImage::where(['goods_id' => $goods_id])
  203. ->withAttr('abs_image', function ($value, $data) {
  204. return UrlServer::getFileUrl($data['uri']);})
  205. ->append(['abs_image'])
  206. ->select();
  207. // 商品SKU
  208. $info['item'] =GoodsItem::where(['goods_id' => $goods_id])
  209. ->withAttr('abs_image', function ($value, $data) {
  210. return $data['image'] ? UrlServer::getFileUrl($data['image']) : '';
  211. })->append(['abs_image'])
  212. ->select();
  213. // 商品规格项
  214. $info['spec'] = GoodsSpec::where(['goods_id' => $goods_id])->select();
  215. // 商品规格值
  216. $spec_value = GoodsSpecValue::where(['goods_id' => $goods_id])->select();
  217. $data = [];
  218. foreach ($spec_value as $k => $v) {
  219. $data[$v['spec_id']][] = $v;
  220. }
  221. foreach ($info['spec'] as $k => $v) {
  222. $info['spec'][$k]['values'] = isset($data[$v['id']]) ? $data[$v['id']] : [];
  223. }
  224. return $info;
  225. }
  226. /**
  227. * 违规重审
  228. * @param $params
  229. */
  230. public static function reAudit($params)
  231. {
  232. Db::startTrans();
  233. try{
  234. // 更新商品信息
  235. $updateData = [
  236. 'id' => $params['goods_id'],
  237. 'audit_remark' => trim($params['reason']),
  238. 'audit_status' => GoodsEnum::AUDIT_STATUS_REFUSE
  239. ];
  240. Goods::update($updateData);
  241. // 对应的秒杀商品同步更新为待审核
  242. SeckillGoods::where([
  243. 'del' => 0,
  244. 'goods_id' => $params['goods_id']
  245. ])->update([
  246. 'review_status' => 0,
  247. 'update_time' => time()
  248. ]);
  249. event('UpdateCollect', ['goods_id' => $params['goods_id']]);
  250. Db::commit();
  251. return true;
  252. }catch(\Exception $e) {
  253. Db::rollback();
  254. self::$error = $e->getMessage();
  255. return false;
  256. }
  257. }
  258. /**
  259. * 商品设置
  260. */
  261. public static function setInfo($params)
  262. {
  263. $updateData = [
  264. 'id' => $params['goods_id'],
  265. 'sales_virtual' => $params['sales_virtual'],
  266. 'clicks_virtual' => $params['clicks_virtual'],
  267. 'sort_weight' => $params['sort_weight'],
  268. 'column_ids' => $params['select']
  269. ];
  270. return Goods::update($updateData);
  271. }
  272. /**
  273. * 审核
  274. */
  275. public static function audit($params)
  276. {
  277. $updateData = [
  278. 'id' => $params['goods_id'],
  279. 'audit_status' => $params['audit_status'],
  280. 'audit_remark' => $params['audit_remark'],
  281. ];
  282. return Goods::update($updateData);
  283. }
  284. /**
  285. * @notes 批量下架
  286. * @param $params
  287. * @return bool
  288. * @author ljj
  289. * @date 2022/9/20 6:17 下午
  290. */
  291. public static function moreLower($params)
  292. {
  293. Db::startTrans();
  294. try{
  295. $ids = explode(',',$params['ids']);
  296. foreach ($ids as $id) {
  297. // 更新商品信息
  298. $updateData = [
  299. 'id' => $id,
  300. 'audit_remark' => trim($params['reason']),
  301. 'audit_status' => GoodsEnum::AUDIT_STATUS_REFUSE
  302. ];
  303. Goods::update($updateData);
  304. // 对应的秒杀商品同步更新为待审核
  305. SeckillGoods::where([
  306. 'del' => 0,
  307. 'goods_id' => $id
  308. ])->update([
  309. 'review_status' => 0,
  310. 'update_time' => time()
  311. ]);
  312. event('UpdateCollect', ['goods_id' => $id]);
  313. }
  314. Db::commit();
  315. return true;
  316. }catch(\Exception $e) {
  317. Db::rollback();
  318. self::$error = $e->getMessage();
  319. return false;
  320. }
  321. }
  322. /**
  323. * @notes 批量审核
  324. * @param $params
  325. * @return bool
  326. * @author ljj
  327. * @date 2022/9/20 6:36 下午
  328. */
  329. public static function moreAudit($params)
  330. {
  331. $ids = explode(',',$params['ids']);
  332. foreach ($ids as $id) {
  333. $updateData = [
  334. 'id' => $id,
  335. 'audit_status' => $params['audit_status'],
  336. 'audit_remark' => $params['audit_remark'],
  337. ];
  338. Goods::update($updateData);
  339. }
  340. return true;
  341. }
  342. }