269 lines
8.8 KiB
PHP
Executable File
269 lines
8.8 KiB
PHP
Executable File
<?php
|
|
|
|
# @Author: 嗨噜客(三亚) <fm453>
|
|
# @Date: 2022-05-22T07:35:09+08:00
|
|
# @Email: fm453@lukegzs.com
|
|
# @Last modified by: fm453
|
|
# @Last modified time: 2022-05-22T07:35:09+08:00
|
|
# @Copyright: www.hiluker.cn
|
|
|
|
namespace backend\controllers;
|
|
|
|
use Yii;
|
|
use yii\data\Pagination;
|
|
use yii\helpers\Url;
|
|
use addons\models\AcDriver;
|
|
use common\models\Member as User;
|
|
use common\models\UserExt;
|
|
|
|
class DriverController extends Common
|
|
{
|
|
public function actionIndex()
|
|
{
|
|
return $this->render('index');
|
|
}
|
|
|
|
//司机列表
|
|
public function actionList()
|
|
{
|
|
$model = new AcDriver();
|
|
$where = $where2 = [];
|
|
$where2[]='and';
|
|
$where['pid'] = Yii::$app->session->get('pid');
|
|
$post = Yii::$app->request->post();
|
|
$search = [];
|
|
$search['title'] = isset($post['title']) ? trim(htmlspecialchars_decode($post['title'])) : '';
|
|
if (!empty($search['title'])) {
|
|
$where2[] = ['LIKE','name',$search['title']];
|
|
}
|
|
$where['deleted'] = 0;
|
|
$data = $model->find()->where($where);
|
|
if ($search['title']) {
|
|
$data = $data->andwhere($where2);
|
|
}
|
|
|
|
$pages = new Pagination(['totalCount' =>$data->count(), 'pageSize' => '20']);
|
|
$res = $data->offset($pages->offset)->limit($pages->limit)->all();
|
|
$status = Yii::$app->params['DriverStatus'];
|
|
|
|
return $this->render('list', [
|
|
'drivers'=>$res,
|
|
'pager' => $pages,
|
|
'status'=>$status,
|
|
'search'=>$search
|
|
]);
|
|
}
|
|
|
|
public function actionSelect()
|
|
{
|
|
$model = new AcDriver();
|
|
$where = $where2 = [];
|
|
$where2[]='and';
|
|
$where['pid'] = Yii::$app->session->get('pid');
|
|
$post = Yii::$app->request->post();
|
|
$search = [];
|
|
$search['title'] = isset($post['title']) ? trim(htmlspecialchars_decode($post['title'])) : '';
|
|
if (!empty($search['title'])) {
|
|
$where2[] = ['LIKE','name',$search['title']];
|
|
}
|
|
$where['deleted'] = 0;
|
|
$data = $model->find()->where($where);
|
|
if ($search['title']) {
|
|
$data = $data->andwhere($where2);
|
|
}
|
|
|
|
$pages = new Pagination(['totalCount' =>$data->count(), 'pageSize' => '20']);
|
|
$res = $data->offset($pages->offset)->limit($pages->limit)->all();
|
|
$status = Yii::$app->params['DriverStatus'];
|
|
$callback = !empty(Yii::$app->request->get('callback')) ? Yii::$app->request->get('callback') : 'driver';
|
|
return $this->render('select', [
|
|
'drivers'=>$res,
|
|
'pager' => $pages,
|
|
'status'=>$status,
|
|
'search'=>$search,
|
|
'callback'=>$callback
|
|
]);
|
|
}
|
|
|
|
public function actionNew()
|
|
{
|
|
return $this->render('modify', []);
|
|
}
|
|
|
|
//编辑司机资料
|
|
public function actionEdit()
|
|
{
|
|
$model = new AcDriver();
|
|
$id = Yii::$app->request->get('id');
|
|
$res = $model->find()->where(['id' => $id])->one();
|
|
if ($res) {
|
|
$res = $res->toArray();
|
|
}
|
|
|
|
return $this->render('modify', ['detail'=>$res]);
|
|
}
|
|
|
|
//保存司机资料
|
|
public function actionSave()
|
|
{
|
|
$post = Yii::$app->request->post();
|
|
$id = (int)$post['id'];
|
|
$pid = Yii::$app->session->get('pid');
|
|
//格式化数据
|
|
//目标键=》POST键
|
|
$cols = ['name'=>'name','mobile'=>'mobile','idcard'=>'idcard'];
|
|
foreach ($cols as $col=>$key) {
|
|
$data[$col] = isset($post[$key]) ? trim($post[$key]) : '';
|
|
}
|
|
//查询司机手机号是否在库
|
|
$hasDriver = AcDriver::find()->where(['mobile'=>$data['mobile']])->one();
|
|
if ($hasDriver) {
|
|
if ($id && $id==$hasDriver->id) {
|
|
} else {
|
|
$id = $hasDriver->id;
|
|
\Yii::$app->getSession()->setFlash('danger', '保存失败,该手机号对应的司机已在库,系统自动现在为您调出该司机资料!');
|
|
return $this->redirect(['edit','id'=>$id]);
|
|
}
|
|
}
|
|
$cols = ['status_code'=>'status_code','deleted'=>'deleted'];
|
|
foreach ($cols as $col=>$key) {
|
|
$data[$col] = isset($post[$key]) ? (int)$post[$key] : 0;
|
|
}
|
|
$data['create_at'] = time();
|
|
$data['update_at'] = $data['create_at'];
|
|
$data['pid'] = $pid;
|
|
|
|
//保存司机资料
|
|
$AcDriver = new AcDriver();
|
|
foreach ($data as $key=>$val) {
|
|
$AcDriver->$key = $val;
|
|
}
|
|
|
|
if ($id) {
|
|
$AcDriver->id = $id;
|
|
unset($data['create_at']);
|
|
$res = $AcDriver->updateAll($data, ['id'=>$id]);
|
|
} else {
|
|
$res = $AcDriver->save();
|
|
$id = $AcDriver->attributes['id']; //获取插入后id
|
|
}
|
|
|
|
//查询司机对应的系统用户
|
|
$userModel = new User();
|
|
$user = $userModel->find()->where(['mobile'=>$data['mobile']])->one();
|
|
if (empty($user)) {
|
|
$userModel->username = !$data['name'] ? $data['mobile'] : $data['name'];
|
|
$userModel->mobile = $data['mobile'];
|
|
$userModel->email = $data['mobile'].'@hiluker.com';
|
|
$userModel->setPassword(Yii::$app->params['defaultUserPassword']);
|
|
$userModel->generateAuthKey();
|
|
$userModel->avatar = Yii::$app->params['defaultUserAvatar'];
|
|
$userModel->created_at = time();
|
|
$userModel->status = 1;
|
|
$userModel->save();
|
|
$user_id = $userModel->attributes['id']; //获取插入后id
|
|
}
|
|
|
|
\Yii::$app->getSession()->setFlash('info', '已成功注册该用户!');
|
|
if ($res) {
|
|
\Yii::$app->getSession()->setFlash('success', '司机信息保存成功!');
|
|
return $this->redirect(['edit','id'=>$id]);
|
|
} else {
|
|
\Yii::$app->getSession()->setFlash('warning', '司机信息保存失败!');
|
|
return $this->goBack();
|
|
}
|
|
}
|
|
|
|
//删除员工
|
|
public function actionDelete()
|
|
{
|
|
$get = Yii::$app->request->get();
|
|
$post = Yii::$app->request->post();
|
|
$id = (int)$get['id'];
|
|
$data = $where = [];
|
|
$where['pid'] = Yii::$app->session->get('pid');
|
|
$where['id'] = $id;
|
|
$data['update_at'] = time();
|
|
$data['deleted'] = 1;
|
|
|
|
$model = new AcDriver();
|
|
foreach ($data as $key=>$val) {
|
|
$model->$key = $val;
|
|
}
|
|
|
|
$model->id = $id;
|
|
$res = $model->updateAll($data, $where);
|
|
|
|
$return = [];
|
|
$return['url'] = Url::toRoute('driver/list');
|
|
$return['timeout'] = 3; //3秒后自动跳转
|
|
$return['status'] = 0;
|
|
if ($res) {
|
|
$return['msg'] = '司机删除成功';
|
|
$return['errorcode'] = 200;
|
|
$return['data'] = $id;
|
|
} else {
|
|
$return['msg'] = '司机删除失败';
|
|
$return['errorcode'] = 0;
|
|
}
|
|
exit(json_encode($return, JSON_UNESCAPED_UNICODE));
|
|
}
|
|
|
|
public function actionAjax()
|
|
{
|
|
$get = Yii::$app->request->get();
|
|
$post = Yii::$app->request->post();
|
|
$id = (int)$get['id'];
|
|
$data = $where = [];
|
|
$where['pid'] = Yii::$app->session->get('pid');
|
|
$where['id'] = $id;
|
|
$data['update_at'] = time();
|
|
|
|
$model = new AcDriver();
|
|
$res = $model->find()->where(['id' => $id])->one();
|
|
$return = [];
|
|
$return['timeout'] = 1; //3秒后自动跳转
|
|
$return['status'] = 0;
|
|
$return['ajax'] = 1;
|
|
if ($res) {
|
|
$res = $res->toArray();
|
|
} else {
|
|
$return['msg'] = '司机数据不存在';
|
|
$return['errorcode'] = 404;
|
|
exit(json_encode($return, JSON_UNESCAPED_UNICODE));
|
|
}
|
|
|
|
switch ($get['do']) {
|
|
case 'out':
|
|
$data['status'] = 0;
|
|
$model->id = $id;
|
|
$res = $model->updateAll($data, $where);
|
|
if ($res) {
|
|
$return['msg'] = '司机离职标记成功';
|
|
$return['errorcode'] = 200;
|
|
$return['data'] = ['css'=>'info'];
|
|
} else {
|
|
$return['msg'] = '司机离职标记失败';
|
|
$return['errorcode'] = 0;
|
|
}
|
|
break;
|
|
case 'in':
|
|
$data['status'] = 1;
|
|
$model->id = $id;
|
|
$res = $model->updateAll($data, $where);
|
|
if ($res) {
|
|
$return['msg'] = '司机在职标记成功';
|
|
$return['errorcode'] = 200;
|
|
$return['data'] = ['css'=>'default'];
|
|
} else {
|
|
$return['msg'] = '司机在职标记失败';
|
|
$return['errorcode'] = 0;
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
exit(json_encode($return, JSON_UNESCAPED_UNICODE));
|
|
}
|
|
}
|