王总上门按摩后台代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

92 lines
3.5 KiB

<?php
namespace app\admin\controller;
class Department extends \app\Rest
{
public function __construct(\think\App $app)
{
parent::__construct($app);
}
public function createDepartmet()
{
$department = $this->_input["department"];
$department["department_id"] = uuid();
if (isset($this->_user)) {
$department["creator_id"] = $this->_user["user_id"];
}
$result = $deparmet_model->updateDepartment(["deparement_id" => $department_id, "uniacid" => $this->_uniacid], $data);
return $this->success($result);
}
public function listDepartmet()
{
$param = $this->_param;
$page_config = ["page" => 1, "page_count" => 20];
if (isset($param["page"]) && $param["page"] > 0) {
$page_config["page"] = $param["page"];
}
if (isset($param["page_count"]) && $param["page_count"] > 0) {
$page_config["page_count"] = $param["page_count"];
}
$filter = $param;
$filter["uniacid"] = $this->_uniacid;
$department_model = new \app\admin\model\Department();
$page_config["total"] = $department_model->listDepartmentCount($filter);
$departmets = $department_model->listDepartment($filter);
$page_config["total_page"] = \intval($page_config["total"] / $page_config["page_count"]);
if ($page_config["total"] % $page_config["page_count"] > 0) {
$page_config["total_page"] = $page_config["total_page"] + 1;
}
$result = $page_config;
$result["departments"] = $departmets;
return $this->success($result);
}
public function getDepartmet()
{
$department_id = $this->_param["department_id"];
$deparmet_model = new \app\admin\model\Department();
$department = $department_model->getDepartment(["deparement_id" => $department_id, "uniacid" => $this->_uniacid]);
if (!empty($department)) {
$deparements = $department_model->listDepartmentAll(["parent_id" => $department_id, "uniacid" => $this->_uniacid]);
if (!empty($departments)) {
$department["departments"] = $deparements;
}
$user_model = new \app\admin\model\User();
$users = $user_model->listUserAll(["department_id" => $department_id, "uniacid" => $this->_uniacid]);
if (!empty($users)) {
$department["users"] = $users;
}
}
return $this->success($department);
}
public function updateDepartmet()
{
$department_id = $this->_param["department_id"];
$data = $this->_input["department"];
$deparmet_model = new \app\admin\model\Department();
$department = $department_model->getDepartment(["deparement_id" => $department_id, "uniacid" => $this->_uniacid]);
if (empty($department)) {
return $this->error("the department not exist ,please check department id .");
}
if (empty($data)) {
return $this->error("the department change data is note exist ,please check department data.");
}
$result = $deparmet_model->updateDepartment(["deparement_id" => $department_id, "uniacid" => $this->_uniacid], $data);
return $this->success($result);
}
public function delDepartmet()
{
$department_id = $this->_param["department_id"];
$deparmet_model = new \app\admin\model\Department();
$department = $department_model->getDepartment(["deparement_id" => $department_id, "uniacid" => $this->_uniacid]);
if (empty($department)) {
return $this->error("the department not exist ,please check department id .");
}
$result = $deparmet_model->delDepartment(["deparement_id" => $department_id, "uniacid" => $this->_uniacid], $data);
if (!empty($result)) {
$user_model = new \app\admin\model\User();
$user_model->updateUser(["uniacid" => $this->_uniacid, "department_id" => $department_id], ["department_id" => 0]);
}
return $this->success($result);
}
}