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

GoodsItem.php 4.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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\admin\validate\SeckillTime;
  21. use app\api\logic\SeckillLogic;
  22. use app\common\basics\Models;
  23. use app\common\enum\OrderEnum;
  24. use app\api\logic\OrderLogic;
  25. use app\common\model\seckill\SeckillGoods;
  26. use app\common\model\seckill\SeckillTime as SeckillTimeModel;
  27. use app\common\server\UrlServer;
  28. /**
  29. * 商品规格
  30. * Class GoodsItem
  31. * @package app\common\model\goods
  32. */
  33. class GoodsItem extends Models
  34. {
  35. /**
  36. * @notes notes
  37. * @param $value
  38. * @param $data
  39. * @return string
  40. * @author lbzy
  41. * @datetime 2024-04-03 09:53:03
  42. */
  43. function getMarketPriceAttr($value, $data)
  44. {
  45. return $value <= 0 ? '' : $value;
  46. }
  47. function getChengbenPriceAttr($value, $data)
  48. {
  49. return $value <= 0 ? '' : $value;
  50. }
  51. function getWeightAttr($value, $data)
  52. {
  53. return $value <= 0 ? '' : $value;
  54. }
  55. function getVolumeAttr($value, $data)
  56. {
  57. return $value <= 0 ? '' : $value;
  58. }
  59. /**
  60. * @notes 获取订单商品价格
  61. * @param $item
  62. * @return int|mixed
  63. * @author lbzy
  64. * @datetime 2023-07-27 15:19:11
  65. */
  66. static function getGoodsItemPrice($item)
  67. {
  68. $seckill_goods_price = self::isSeckill($item['id']);
  69. return $seckill_goods_price != 0 ? $seckill_goods_price : $item['price'];
  70. }
  71. /**
  72. * 根据goods_id,num和item_id计算价格
  73. */
  74. public function sumGoodsPrice($goods_id, $item_id, $num,$discount)
  75. {
  76. $goods_price = $this
  77. ->where([
  78. ['goods_id', '=', $goods_id],
  79. ['id', '=', $item_id],
  80. ])
  81. ->value('price');
  82. $seckill_goods_price = self::isSeckill($item_id);
  83. if($seckill_goods_price != 0){
  84. $goods_price = $seckill_goods_price;
  85. OrderLogic::$order_type = OrderEnum::SECKILL_ORDER;
  86. }
  87. $is_member = Goods::where('id',$goods_id)->value('is_member');
  88. if ($is_member === 0 || empty($is_member)){//不参与会员价
  89. $price = round($goods_price*$num,2);
  90. }
  91. if ($is_member == 1){
  92. $price = max(round($goods_price*$discount/10,2), 0.01) * $num;
  93. }
  94. return $price;
  95. }
  96. public function sumMemberPrice($goods_id, $item_id, $num,$discount)
  97. {
  98. $goods_price = $this
  99. ->where([
  100. ['goods_id', '=', $goods_id],
  101. ['id', '=', $item_id],
  102. ])
  103. ->value('price');
  104. $seckill_goods_price = self::isSeckill($item_id);
  105. if($seckill_goods_price != 0){
  106. $goods_price = $seckill_goods_price;
  107. OrderLogic::$order_type = OrderEnum::SECKILL_ORDER;
  108. }
  109. $is_member = Goods::where('id',$goods_id)->value('is_member');
  110. if ($is_member === 0 || empty($is_member)){//不参与会员价
  111. $price = 0;
  112. }
  113. if ($is_member == 1){
  114. $price = ($goods_price - max(round($goods_price*$discount/10,2), 0.01)) * $num;
  115. }
  116. return $price;
  117. }
  118. /***
  119. *
  120. *是否为秒杀商品
  121. *
  122. ***/
  123. public static function isSeckill($item_id){
  124. //当前时段秒杀商品
  125. $seckill = SeckillLogic::getSeckillGoods();
  126. $seckill_goods = $seckill['seckill_goods'];
  127. //当前商品规格是否为秒杀商品
  128. if (isset($seckill_goods[$item_id])) {
  129. return $seckill_goods[$item_id]['price'];
  130. }else{
  131. return 0;
  132. }
  133. }
  134. }