custappyModel.php 287 B

123456789101112131415
  1. <?php
  2. //客户申请使用
  3. class flow_custappyClassModel extends flowModel
  4. {
  5. //流程全部完成后调用
  6. protected function flowcheckfinsh($zt)
  7. {
  8. if($zt==1){
  9. m('customer')->update(array(
  10. 'isgh' => 0,
  11. 'uid' => $this->uid
  12. ),$this->rs['custid']);
  13. }
  14. }
  15. }
粤ICP备19079148号