mode_hrshebaoAction.php 425 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * 此文件是流程模块【hrshebao.社保公积金】对应控制器接口文件。
  4. */
  5. class mode_hrshebaoClassAction extends inputAction{
  6. //复制
  7. public function copyfuzAjax()
  8. {
  9. $sid = (int)$this->get('sid');
  10. $db = m('hrshebao');
  11. $arow= $db->getone($sid);
  12. if(!$arow)return;
  13. unset($arow['id']);
  14. $arow['optdt'] = $this->rock->now;
  15. $mid = $db->insert($arow);
  16. }
  17. }
粤ICP备19079148号