截流自动化的商城平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

FreightValidate.php 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?php
  2. namespace app\admin\validate;
  3. use app\common\basics\Validate;
  4. use think\facade\Db;
  5. class FreightValidate extends Validate
  6. {
  7. protected $rule = [
  8. 'id' => 'require',
  9. 'charge_way' => 'require',
  10. 'name' => 'require|unique:freight',
  11. 'region' => 'require|checkTypeData',
  12. ];
  13. protected $message = [
  14. 'id.require' => '参数缺失',
  15. 'charge_way.require' => '请选择计费方式',
  16. 'name.require' => '请输入模板名称',
  17. 'name.unique' => '该模板名称已存在',
  18. ];
  19. protected function sceneAdd()
  20. {
  21. $this->only(['name', 'charge_way', 'region']);
  22. }
  23. protected function sceneEdit()
  24. {
  25. $this->only(['id', 'name', 'charge_way', 'region']);
  26. }
  27. public function sceneDel()
  28. {
  29. $this->only(['id'])->append('id', 'checkIsAbleDel');
  30. }
  31. //添加时验证全国模板或指定地区模板的数据
  32. protected function checkTypeData($value, $reule, $data)
  33. {
  34. foreach ($data as &$item) {
  35. if (is_array($item)) {
  36. $item = array_values($item);
  37. }
  38. }
  39. $configs = form_to_linear($data);
  40. foreach ($configs as $config) {
  41. if (
  42. !isset($config['first_unit']) ||
  43. !isset($config['first_money']) ||
  44. !isset($config['continue_unit']) ||
  45. !isset($config['continue_money'])
  46. ) {
  47. return '请填写完整设置参数';
  48. }
  49. if (
  50. ($config['first_unit'] < 0) ||
  51. ($config['first_money'] < 0) ||
  52. ($config['continue_unit'] < 0) ||
  53. ($config['continue_money'] < 0)
  54. ){
  55. return '所填设置参数不能小于0';
  56. }
  57. }
  58. return true;
  59. }
  60. //验证模板是否可以删除
  61. protected function checkIsAbleDel($value, $reule, $data)
  62. {
  63. $freight = Db::name('goods')
  64. ->where('express_template_id', $value)
  65. ->find();
  66. if ($freight) {
  67. return '此模板已有商品使用!';
  68. }
  69. return true;
  70. }
  71. }