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

GoodsStatusValidate.php 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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\shop\validate\goods;
  20. use app\common\basics\Validate;
  21. use app\common\model\bargain\Bargain;
  22. use app\common\model\goods\Goods;
  23. use app\common\model\seckill\SeckillGoods;
  24. use app\common\model\team\TeamActivity;
  25. /**
  26. * 商品状态验证
  27. * Class GoodsStatusValidate
  28. * @package app\shop\validate\goods
  29. */
  30. class GoodsStatusValidate extends Validate
  31. {
  32. protected $rule = [
  33. 'ids' => 'require|checkIds',
  34. 'status' => 'require|in:0,1',
  35. ];
  36. protected $message = [
  37. 'ids.require' => '请选择商品',
  38. 'status.require' => '参数缺失',
  39. 'status.in' => '状态错误',
  40. ];
  41. //活动商品不可编辑
  42. protected function checkIds($value, $rule, $data)
  43. {
  44. if (!is_array($value)) {
  45. return '参数错误';
  46. }
  47. foreach ($value as $item) {
  48. $result = $this->checkGoods($item, $data['shop_id']);
  49. if (true !== $result) {
  50. return $result;
  51. }
  52. }
  53. return true;
  54. }
  55. // 验证商品
  56. protected function checkGoods($goods_id, $shop_id)
  57. {
  58. $goods = Goods::where(['del' => 0, 'id' => $goods_id, 'shop_id' => $shop_id])->findOrEmpty();
  59. if ($goods->isEmpty()) {
  60. return '包含不存在商品';
  61. }
  62. $condition = [
  63. 'del' => 0,
  64. 'goods_id' => $goods_id,
  65. 'shop_id' => $shop_id
  66. ];
  67. // 砍价
  68. $bargain = Bargain::where($condition)->findOrEmpty();
  69. if (!$bargain->isEmpty()) {
  70. return '所选商品中包含砍价活动商品, 无法修改';
  71. }
  72. // 秒杀
  73. $seckillGoods = SeckillGoods::where($condition)->findOrEmpty();
  74. if (!$seckillGoods->isEmpty()) {
  75. return '所选商品中包含秒杀活动商品, 无法修改';
  76. }
  77. // 拼团
  78. $teamGoods = TeamActivity::where($condition)->findOrEmpty();
  79. if (!$teamGoods->isEmpty()) {
  80. return '所选商品中包含拼团活动商品, 无法修改';
  81. }
  82. return true;
  83. }
  84. }