截流自动化的商城平台
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

BargainValidate.php 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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;
  20. use app\api\controller\Bargain;
  21. use app\common\basics\Validate;
  22. use app\common\model\bargain\Bargain as BargainModel;
  23. use app\common\model\goods\GoodsItem;
  24. /**
  25. * 砍价活动 数据校验
  26. * Class BargainValidate
  27. * @Author 张无忌
  28. * @package app\admin\validate
  29. */
  30. class BargainValidate extends Validate
  31. {
  32. protected $rule = [
  33. 'id' => 'require|checkStatus',
  34. 'goods_id' => 'require|number',
  35. 'time_limit' => 'require',
  36. 'activity_start_time' => 'require',
  37. 'activity_end_time' => 'require|endTime',
  38. 'payment_where' => 'require|in:1,2',
  39. 'knife_type' => 'require|in:1,2',
  40. 'status' => 'require|in:0,1',
  41. 'floor_price' => 'require|checkFloorPrice'
  42. ];
  43. protected $message = [
  44. 'id' => 'ID不可为空',
  45. 'id.number' => 'ID必须为数字',
  46. 'goods_id.require' => '未选择砍价商品',
  47. 'goods_id.number' => '选择砍价商品异常',
  48. 'time_limit.require' => '请填写砍价活动有效期',
  49. 'time_limit.number' => '砍价活动有效期必须为数字',
  50. 'activity_start_time.require' => '请选择活动开始时间',
  51. 'activity_end_time.require' => '请选择活动结束时间',
  52. 'payment_where.require' => '请选择购买方式',
  53. 'payment_where.number' => '选择的购买方式异常',
  54. 'knife_type.require' => '请选择砍价金额方式',
  55. 'knife_type.number' => '选择的砍价方式异常',
  56. 'status.require' => '请选择砍价活动状态',
  57. 'status.in' => '砍价状态选择异常',
  58. ];
  59. protected $scene = [
  60. 'add' => ['goods_id', 'time_limit', 'activity_start_time', 'activity_end_time', 'payment_where', 'knife_type', 'status', 'floor_price'],
  61. 'edit' => ['id', 'goods_id', 'time_limit', 'activity_start_time', 'activity_end_time', 'payment_where', 'knife_type', 'status', 'floor_price'],
  62. ];
  63. public function checkFloorPrice($value, $rule, $data)
  64. {
  65. foreach ($value as $item) {
  66. foreach ($item as $item_id => $floor_price) {
  67. $goods_price = GoodsItem::where(['id' => $item_id])->value('price');
  68. if($floor_price >= $goods_price){
  69. return '活动底价必须低于商品价格';
  70. }else{
  71. return true;
  72. }
  73. }
  74. }
  75. }
  76. /***
  77. * 验证审核状态,如果是审核通过时进行编辑无需再次审核,如果是审核拒绝时编辑需要再次审核。
  78. * @param $value
  79. * @param $rule
  80. * @param $data
  81. */
  82. public function checkStatus($value, $rule, $data)
  83. {
  84. $bargain = BargainModel::where('id', $value)->find();
  85. if ($bargain['status'] == 1) {
  86. return '该活动正在进行中,无法编辑!';
  87. } else {
  88. return true;
  89. }
  90. }
  91. public function endTime($value, $rule, $data)
  92. {
  93. if (strtotime($value) <= time()) {
  94. return '结束时间不能少于当前时间';
  95. }
  96. if (strtotime($value) <= strtotime($data['activity_start_time'])) {
  97. return '结束时间不能少于或等于开始时间';
  98. }
  99. return true;
  100. }
  101. }