hrpositiveModel.php 453 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * 人事模块.转正的
  4. */
  5. class flow_hrpositiveClassModel extends flowModel
  6. {
  7. //审核完成处理
  8. protected function flowcheckfinsh($zt){
  9. m('hr')->hrrun();
  10. }
  11. protected function flowbillwhere($uid, $lx)
  12. {
  13. $key = $this->rock->post('key');
  14. $where = '';
  15. if($key!='')$where.=" and (b.udeptname like '%$key%' or b.`uname` like '%$key%')";
  16. return array(
  17. 'keywhere' => $where,
  18. 'leftbill' => 1
  19. );
  20. }
  21. }
粤ICP备19079148号