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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?php
  2. namespace app\shop\logic;
  3. use app\common\basics\Logic;
  4. use app\common\model\goods\Goods;
  5. use app\common\model\goods\GoodsItem;
  6. use app\common\server\UrlServer;
  7. use app\common\enum\GoodsEnum;
  8. class CommonLogic extends Logic
  9. {
  10. public static function getGoodsList($get)
  11. {
  12. $where = [
  13. ['shop_id', '=', $get['shop_id']],
  14. ['del', '=', GoodsEnum::DEL_NORMAL], // 未删除
  15. ['audit_status', '=', GoodsEnum::AUDIT_STATUS_OK], // 审核通过
  16. ['status', '=', GoodsEnum::STATUS_SHELVES], // 上架中
  17. ['type', '=', GoodsEnum::TYPE_ACTUAL] // 实物商品才参与
  18. ];
  19. if(!empty($get['keyword'])) {
  20. $where[] = ['name', 'like','%'. $get['keyword'].'%'];
  21. }
  22. if(!empty($get['cid'])) {
  23. $where[] = ['shop_cate_id', '=', $get['cid']];
  24. }
  25. $lists = Goods::field('id,name,image,min_price as min_max_price,min_price,max_price,stock')
  26. ->where($where)
  27. ->order('id', 'desc')
  28. ->page($get['page'], $get['limit'])
  29. ->select()
  30. ->toArray();
  31. $count = Goods::field('id,name,image,min_price,max_price,stock')
  32. ->where($where)
  33. ->count();
  34. foreach($lists as &$item) {
  35. $item['image'] = UrlServer::getFileUrl($item['image']);
  36. }
  37. return [
  38. 'count' => $count,
  39. 'lists' => $lists
  40. ];
  41. }
  42. //获取商品列表
  43. public static function getGoodsListTwo($get,$is_item = false){
  44. $where = [
  45. ['shop_id', '=', $get['shop_id']],
  46. ['del', '=', GoodsEnum::DEL_NORMAL], // 未删除
  47. ['audit_status', '=', GoodsEnum::AUDIT_STATUS_OK], // 审核通过
  48. ['status', '=', GoodsEnum::STATUS_SHELVES], // 上架中
  49. ['type', '=', GoodsEnum::TYPE_ACTUAL] // 实物商品才参与
  50. ];
  51. if (isset($get['keyword']) && $get['keyword']) {
  52. $where[] = ['name', 'like', '%' . $get['keyword'] . '%'];
  53. }
  54. if(!empty($get['cid'])) {
  55. $where[] = ['shop_cate_id', '=', $get['cid']];
  56. }
  57. $goods_count = Goods::where($where)->count();
  58. $goods_list = Goods::where($where)
  59. ->page($get['page'], $get['limit'])
  60. ->column('*','id');
  61. foreach ($goods_list as &$item) {
  62. $item['goods_item'] = [];
  63. $item['price'] = '¥'.$item['min_price'];
  64. if($item['max_price'] != $item['min_price']){
  65. $item['price'] = '¥'.$item['min_price'].'~'.'¥'.$item['max_price'];
  66. }
  67. $item['create_time_desc'] = date('Y-m-d H:i:s',$item['create_time']);
  68. $item['image'] = UrlServer::getFileUrl($item['image']);
  69. }
  70. if($is_item){
  71. $goods_ids = array_keys($goods_list);
  72. $goods_item = GoodsItem::where(['goods_id'=>$goods_ids])->select()->toArray();
  73. foreach ($goods_item as $items){
  74. if(isset($goods_list[$items['goods_id']])){
  75. if($items['image']){
  76. $items['image'] = UrlServer::getFileUrl($items['image']);
  77. }else{
  78. $items['image'] = $goods_list[$items['goods_id']]['image'];
  79. }
  80. $goods_list[$items['goods_id']]['goods_item'][] = $items;
  81. }
  82. }
  83. }
  84. return ['count' => $goods_count, 'list' =>array_values($goods_list)];
  85. }
  86. }