| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <?php
- namespace app\admin\controller\qingdong\dingding;
- use addons\qingdong\model\DingStaff;
- use app\common\controller\Backend;
- use addons\qingdong\model\StaffDepartment;
- use addons\qingdong\model\Staff as StaffModel;
- use think\Db;
- use think\Exception;
- /**
- * 同步员工
- */
- class Staff extends Backend {
- public function _initialize() {
- parent::_initialize();
- $this->model = new DingStaff();
- }
- /**
- * 员工列表
- */
- public function index() {
- $this->request->filter(['strip_tags']);
- if ($this->request->isAjax()) {
- list($where, $sort, $order, $offset, $limit) = $this->buildparams();
- $list = $this->model->with(['department'])->where($where)->where(['ding_staff.type'=>0])->order($sort, $order)->paginate($limit);
- $row = $list->items();
- $result = array("total" => $list->total(), "rows" => $row);
- return json($result);
- }
- return $this->view->fetch();
- }
- /**
- * 删除员工
- */
- public function del($ids = null) {
- if ($this->request->isAjax()) {
- $map['id'] = array('in', $ids);
- $result = DingStaff::where($map)->delete();
- if (!$result) {
- $this->error('删除失败');
- }
- $this->success('删除成功');
- }
- return $this->view->fetch();
- }
- /**
- * 同步到CRM
- */
- public function batch()
- {
- $info = $this->model->where(array('status' => 0))->select();
- if (!$info) {
- $this->error('无数据可同步');
- }
- $success=0;
- $error_info=[];
- foreach ($info as $k => $v) {
- Db::startTrans();
- try {
- if(!$v['mobile']){
- throw new Exception('手机号同步失败,请检查权限,重新获取数据');
- }
- $department = StaffDepartment::where(array('id'=>$v['dept_id']))->find();
- if(!$department['role_id']){
- throw new Exception('请先同步所属部门');
- }
- $staffData = array(
- 'mobile' => $v['mobile'],
- 'name' => $v['name'],
- 'nickname' => $v['name'],
- 'post' => $department['name'],
- 'password' => '38d7e44335dae29b37ceab504602d17b',
- 'salt' => 'a2d622',
- 'img' => '',
- 'email' => $v['mobile'].'@163.com',
- 'group_ids'=>$department['role_id']
- );
- $staffinfo = StaffModel::create($staffData);
- $ids = StaffModel::getLastInsID();
- //更新状态
- $dingStatus = $this->model->where(array('id'=>$v['id']))->update(array('status'=>1,'staff_id'=>$ids));
- if (!$staffinfo) {
- throw new Exception('创建员工账号失败');
- }
- if (!$dingStatus) {
- throw new Exception('修改表状态失败');
- }
- $success++;
- Db::commit();
- }catch (Exception $e){
- Db::rollback();
- $error_info[]='员工【'.$v['name'].'】'.$e->getMessage();
- }
- }
- $this->success('同步成功【'.$success.'】条,同步失败【'.count($error_info).'】条;失败原因:'.implode('<br>',$error_info));
- }
- }
|