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

GoodsValidate.php 8.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  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\enum\GoodsEnum;
  22. use app\common\enum\ShopEnum;
  23. use app\common\model\goods\GoodsBrand;
  24. use app\common\model\goods\GoodsUnit;
  25. use app\common\model\goods\Supplier;
  26. use app\common\model\goods\Goods;
  27. use app\common\model\bargain\Bargain;
  28. use app\common\model\seckill\SeckillGoods;
  29. use app\common\model\shop\Shop;
  30. use app\common\model\team\TeamActivity;
  31. use think\Db;
  32. /**
  33. * 商品-验证
  34. * Class GoodsValidate
  35. * @package app\admin\validate
  36. */
  37. class GoodsValidate extends Validate
  38. {
  39. protected $rule = [
  40. // 商品类型 0-实物商品 1-虚拟商品
  41. 'type' => 'require|in:0,1',
  42. 'goods_id' => 'require|checkActivityGoods',
  43. 'name' => 'require|min:3|max:64|checkName',
  44. 'first_cate_id' => 'require',
  45. 'image' => 'require',
  46. 'goods_image' => 'require|length:1,5',
  47. 'spec_type' => 'require',
  48. // 配送方式 1-快递配送 2-虚拟发货
  49. 'delivery_type' => 'require|checkDeliveryType',
  50. // 买家付款后 1-自动大货 2-手动发货
  51. 'after_pay' => 'requireIf:type,1',
  52. // 发货后 1-自动完成订单 2-需要买家确认收货
  53. 'after_delivery' => 'requireIf:type,1',
  54. 'delivery_content' => 'requireIf:type,1',
  55. // 快递类型 1-包邮;2-统一运费;3-运费模板
  56. 'express_type' => 'requireIf:type,0',
  57. 'express_money' => 'requireIf:express_type,2|checkExpressMoney',
  58. 'express_template_id' => 'requireIf:express_type,3',
  59. 'status' => 'require',
  60. 'stock_warn' => 'integer|egt:0',
  61. 'code' => 'checkCode',
  62. 'sort' => 'egt:0',
  63. ];
  64. protected $message = [
  65. 'type.require' => '请选择商品类型',
  66. 'type.in' => '商品类型参数错误',
  67. 'name.require' => '请输入商品名称',
  68. 'name.min' => '商品名称长度至少3个字符',
  69. 'name.max' => '商品名称长度最多64个字符',
  70. 'name.unique' => '商品名称已存在,请重新输入',
  71. 'first_cate_id.require' => '至少选择一个分类',
  72. 'image.require' => '请上传商品主图',
  73. 'goods_image.require' => '请上传商品轮播图',
  74. 'goods_image.length' => '商品轮播图最多只能上传5张',
  75. 'spec_type.require' => '请选择规格类型',
  76. 'delivery_type.require' => '请选择配送方式',
  77. 'after_pay.requireIf' => '请选择买家付款后发货方式',
  78. 'after_delivery.requireIf' => '请选择发货后是否自动完成订单',
  79. 'delivery_content.requireIf' => '请填写发货内容',
  80. 'express_type.require' => '请选择快递运费类型',
  81. 'express_money.requireIf' => '请输入统一运费',
  82. 'express_template_id.requireIf' => '请选择快递运费模板',
  83. 'status.require' => '请选择销售状态',
  84. 'stock_warn.integer' => '库存预警须为整数',
  85. 'stock_warn.egt' => '库存预警须大于或等于0',
  86. 'sort.egt' => '排序值不能小于0',
  87. ];
  88. public function sceneAdd()
  89. {
  90. $this->remove('goods_id', 'require');
  91. }
  92. public function sceneDel()
  93. {
  94. $this->only(['goods_id']);
  95. }
  96. /**
  97. * 校验商品名称
  98. */
  99. public function checkName($value, $rule, $data)
  100. {
  101. $where = [
  102. ['del', '=', 0],
  103. ['name', '=', $value],
  104. ['shop_id', '=', $data['shop_id']]
  105. ];
  106. if($data['goods_id']) { // 编辑
  107. $where[] = ['id', '<>', $data['goods_id']];
  108. }
  109. $goods = Goods::where($where)->findOrEmpty();
  110. if(!$goods->isEmpty()) {
  111. return '商品名称已存在,请更换其他名称';
  112. }
  113. return true;
  114. }
  115. //活动商品不可编辑
  116. public function checkActivityGoods($value, $rule, $data)
  117. {
  118. $condition = [
  119. 'goods_id' => $value,
  120. 'del' => 0,
  121. 'shop_id' => $data['shop_id']
  122. ];
  123. // 砍价
  124. $bargain = Bargain::where($condition)->findOrEmpty();
  125. if(!$bargain->isEmpty()) {
  126. return '商品正在参与砍价活动, 无法修改';
  127. }
  128. // 秒杀
  129. $seckillGoods = SeckillGoods::where($condition)->findOrEmpty();
  130. if (!$seckillGoods->isEmpty()) {
  131. return '商品正在参与秒杀活动, 无法修改';
  132. }
  133. // 拼团
  134. $teamGoods = TeamActivity::where($condition)->findOrEmpty();
  135. if(!$teamGoods->isEmpty()){
  136. return '商品正在参加拼团活动, 无法修改';
  137. }
  138. return true;
  139. }
  140. /**
  141. * @notes 校验商品编码唯一性
  142. */
  143. public function checkCode($value, $rule, $data)
  144. {
  145. $where = [
  146. ['code', '=', $data['code']],
  147. ['del', '=', 0],
  148. ];
  149. if($data['goods_id']) {
  150. $where[] = ['id', '<>', $data['goods_id']];
  151. }
  152. $goods = Goods::where($where)->select()->toArray();
  153. if($goods) {
  154. return '商品编码已存在';
  155. }
  156. return true;
  157. }
  158. public function checkExpressMoney($value, $rule, $data)
  159. {
  160. if ($data['express_type'] == 2 && $value < 0) {
  161. return '统一运费不能小于0';
  162. }
  163. return true;
  164. }
  165. /**
  166. * @notes 校验配送方式
  167. * @param $value
  168. * @param $rule
  169. * @param $data
  170. * @return string|void
  171. * @author 段誉
  172. * @date 2022/4/7 12:04
  173. */
  174. public function checkDeliveryType($value, $rule, $data)
  175. {
  176. // 虚拟商品
  177. if ($data['type'] == GoodsEnum::TYPE_VIRTUAL && !in_array(GoodsEnum::DELIVERY_VIRTUAL, $value)) {
  178. return '虚拟商品配送方式需选择虚拟发货';
  179. }
  180. // 实物商品
  181. if ($data['type'] == GoodsEnum::TYPE_ACTUAL) {
  182. if (!in_array(GoodsEnum::DELIVERY_EXPRESS, $value) && !in_array(GoodsEnum::DELIVERY_SELF, $value)) {
  183. return '实物商品配送方式需选择快递发货或线下自提';
  184. }
  185. $shop = Shop::findOrEmpty($data['shop_id']);
  186. // 选择快递配送 但商家不支持快递配送
  187. if (in_array(GoodsEnum::DELIVERY_EXPRESS, $value) && !in_array(ShopEnum::DELIVERY_EXPRESS, $shop['delivery_type'])) {
  188. return '请先到商家设置开启快递配送方式';
  189. }
  190. // 选择自提 但商家不支持自提
  191. if (in_array(GoodsEnum::DELIVERY_SELF, $value) && !in_array(ShopEnum::DELIVERY_SELF, $shop['delivery_type'])) {
  192. return '请先到商家设置开启线下自提方式';
  193. }
  194. }
  195. return true;
  196. }
  197. }