ContractValidate.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. /**
  3. +-----------------------------------------------------------------------------------------------
  4. * GouGuOPEN [ 左手研发,右手开源,未来可期!]
  5. +-----------------------------------------------------------------------------------------------
  6. * @Copyright (c) 2021~2024 http://www.gouguoa.com All rights reserved.
  7. +-----------------------------------------------------------------------------------------------
  8. * @Licensed 勾股OA,开源且可免费使用,但并不是自由软件,未经授权许可不能去除勾股OA的相关版权信息
  9. +-----------------------------------------------------------------------------------------------
  10. * @Author 勾股工作室 <hdm58@qq.com>
  11. +-----------------------------------------------------------------------------------------------
  12. */
  13. namespace app\contract\validate;
  14. use think\Validate;
  15. use think\facade\Db;
  16. class ContractValidate extends Validate
  17. {
  18. // 自定义验证规则
  19. protected function checkOne($value,$rule,$data=[])
  20. {
  21. $id = isset($data['id'])?$data['id']:0;
  22. $count = Db::name('Contract')->where([['code','=',$data['code']],['id','<>',$id],['delete_time','=',0]])->count();
  23. return $count == 0 ? true : false;
  24. }
  25. protected function checkNumer($value,$rule,$data=[])
  26. {
  27. return is_numeric($value);
  28. }
  29. protected $rule = [
  30. 'code' => 'require|checkOne',
  31. 'name' => 'require',
  32. 'cost' => 'require|checkNumer',
  33. 'id' => 'require',
  34. ];
  35. protected $message = [
  36. 'name.require' => '合同名称不能为空',
  37. 'code.require' => '合同编码不能为空',
  38. 'code.checkOne' => '同样的合同编码已经存在',
  39. 'cost.require' => '合同金额不能为空',
  40. 'cost.checkNumer' => '合同金额只能是数字',
  41. 'id.require' => '缺少更新条件',
  42. ];
  43. protected $scene = [
  44. 'add' => ['name','code','cost'],
  45. 'edit' => ['name','code','cost','id'],
  46. 'change' => ['id'],
  47. ];
  48. }