LaborContractValidate.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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\user\validate;
  14. use think\Validate;
  15. use think\facade\Db;
  16. class LaborContractValidate extends Validate
  17. {
  18. // 自定义验证规则
  19. protected function checkOne($value,$rule,$data=[])
  20. {
  21. $count = Db::name('LaborContract')->where([['code','=',$data['code']],['id','<>',$data['id']],['delete_time','=',0]])->count();
  22. return $count == 0 ? true : false;
  23. }
  24. protected $rule = [
  25. 'code' => 'require|checkOne',
  26. 'title' => 'require',
  27. 'id' => 'require',
  28. ];
  29. protected $message = [
  30. 'code.require' => '合同编码不能为空',
  31. 'code.checkOne' => '同样的合同编码已经存在',
  32. 'title' => '合同名称不能为空',
  33. 'id.require' => '缺少更新条件',
  34. ];
  35. protected $scene = [
  36. 'add' => ['code','title'],
  37. 'edit' => ['code','title', 'id'],
  38. ];
  39. }