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

Goods.php 5.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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\common\model\goods;
  20. use app\common\basics\Models;
  21. use app\common\model\distribution\DistributionGoods;
  22. use app\common\model\shop\Shop;
  23. use app\common\server\UrlServer;
  24. /**
  25. * 商品-模型
  26. * Class Goods
  27. * @package app\common\model\goods
  28. */
  29. class Goods extends Models
  30. {
  31. /**
  32. * 商品轮播图 关联模型
  33. */
  34. public function GoodsImage()
  35. {
  36. return $this->hasMany('GoodsImage', 'goods_id', 'id')->field('goods_id, uri');
  37. }
  38. /**
  39. * 商品SKU 关联模型
  40. */
  41. public function GoodsItem()
  42. {
  43. return $this->hasMany('GoodsItem', 'goods_id', 'id')
  44. ->field('id, goods_id, image, spec_value_ids, spec_value_str, market_price, price, stock, chengben_price');
  45. }
  46. /**
  47. * 店铺 关联模型
  48. */
  49. public function Shop()
  50. {
  51. return $this->hasOne(Shop::class, 'id', 'shop_id')
  52. ->field('id, name, logo, type, star, score, intro,is_pay, mobile,is_freeze,is_run,expire_time')
  53. ->append([ 'is_expire' ]);
  54. }
  55. public function getIsDistributionDescAttr($value, $data)
  56. {
  57. return $data['is_distribution'] ? '是': '否';
  58. }
  59. function getIsMemberDescAttr($value, $data)
  60. {
  61. return $data['is_member'] ? '是': '否';
  62. }
  63. /**
  64. * 根据商品id获取商品名称
  65. */
  66. public function getGoodsNameById($goods_id)
  67. {
  68. return $this->where('id',$goods_id)->value('name');
  69. }
  70. /**
  71. * 根据商品id查询商品是否上架
  72. */
  73. public function checkStatusById($goods_id)
  74. {
  75. $status = $this
  76. ->where([
  77. ['id','=',$goods_id],
  78. ['del','=',0],
  79. ])
  80. ->value('status');
  81. if ($status){
  82. if ($status == 1){
  83. return true;
  84. }
  85. if (empty($status) || $status ===0){
  86. return false;
  87. }
  88. }
  89. return false;
  90. }
  91. /**
  92. * 根据goods_id查询商品配送方式及所需信息
  93. */
  94. public function getExpressType($goods_id)
  95. {
  96. return $this->where('id',$goods_id)->column('express_type,express_money,express_template_id')[0];
  97. }
  98. /**
  99. * 最小值与最大值范围
  100. */
  101. public function getMinMaxPriceAttr($value, $data)
  102. {
  103. return '¥ ' . $data['min_price'] . '~ ¥ '. $data['max_price'];
  104. }
  105. /**
  106. * @notes 商品是否参与分销
  107. * @param $value
  108. * @return string
  109. * @author Tab
  110. * @date 2021/9/1 17:29
  111. */
  112. public function getDistributionFlagAttr($value)
  113. {
  114. $data = DistributionGoods::where('goods_id', $value)->findOrEmpty()->toArray();
  115. if (!empty($data) && $data['is_distribution'] == 1) {
  116. return true;
  117. }
  118. return false;
  119. }
  120. /**
  121. * @notes 商品详情
  122. * @param $value
  123. * @param $data
  124. * @return array|string|string[]|null
  125. * @author 段誉
  126. * @date 2022/6/13 10:50
  127. */
  128. public function getContentAttr($value,$data){
  129. /* $preg = '/(<img .*?src=")[^https|^http](.*?)(".*?>)/is';*/
  130. // $local_url = UrlServer::getFileUrl('/');
  131. // return preg_replace($preg, "\${1}$local_url\${2}\${3}",$value);
  132. $content = $data['content'];
  133. if (!empty($content)) {
  134. $content = HtmlGetImage($content);
  135. }
  136. return $content;
  137. }
  138. public function setContentAttr($value,$data)
  139. {
  140. $content = $data['content'];
  141. if (!empty($content)) {
  142. $content = HtmlSetImage($content);
  143. }
  144. return $content;
  145. }
  146. /**
  147. * @notes 分销状态搜索器
  148. * @param $query
  149. * @param $value
  150. * @param $data
  151. * @author Tab
  152. * @date 2021/9/2 9:55
  153. */
  154. public function searchIsDistributionAttr($query, $value, $data)
  155. {
  156. // 不参与分销
  157. if (isset($data['is_distribution']) && $data['is_distribution'] == '0') {
  158. // 先找出参与分销的商品id
  159. $ids = DistributionGoods::where('is_distribution', 1)->column('goods_id');
  160. // 在搜索条件中将它们排除掉
  161. $query->where('id', 'not in', $ids);
  162. }
  163. // 参与分销
  164. if (isset($data['is_distribution']) && $data['is_distribution'] == '1') {
  165. // 先找出参与分销的商品id
  166. $ids = DistributionGoods::where('is_distribution', 1)->column('goods_id');
  167. // 在搜索条件中使用它们来进行过滤
  168. $query->where('id', 'in', $ids);
  169. }
  170. }
  171. }