增加项目相关信息统计

Signed-off-by: vilson <545522390@qq.com>
This commit is contained in:
vilson 2019-07-18 14:41:04 +08:00
parent e7715b3e17
commit 4703c27264
6 changed files with 139 additions and 5 deletions

View File

@ -0,0 +1,110 @@
<?php
namespace app\common\Model;
use service\DateService;
use think\db\exception\DataNotFoundException;
use think\db\exception\ModelNotFoundException;
use think\exception\DbException;
/**
* 项目报告
* Class ProjectReport
* @package app\common\Model
*/
class ProjectReport extends CommonModel
{
protected $append = [];
protected $json = ['content'];
public static function setDayilyProejctReport()
{
$day = date('Y-m-d', time());
$taskList = Task::where(['deleted' => 0])->select()->toArray();
if ($taskList) {
$projectList = [];
foreach ($taskList as $task) {
$item = null;
$projectCode = $task['project_code'];
if (!isset($projectList[$projectCode])) {
$projectList[$projectCode] = [];
}
@$projectList[$projectCode]['task']++;
!$task['done'] && @$projectList[$projectCode]['task:undone']++;
}
if ($projectList) {
foreach ($projectList as $key => $project) {
self::setData($key, $day, 'content', $project, true);
}
}
}
return true;
}
/**
* 插入统计数据
* @param string $projectCode 项目编号
* @param string $date 日期 [2019-07-10]
* @param string $key
* @param string|array $values 值为null则移除该键值对
* @param bool $isContent 是否存储多个content的键值对
* @param bool $replace 是否覆盖content
* @return bool
* @throws DataNotFoundException
* @throws DbException
* @throws ModelNotFoundException
*/
public static function setData($projectCode, $date, $key, $values, $isContent = false, $replace = false)
{
if (!DateService::checkDateIsValid($date, ['Y-m-d'])) {
return error(1, '日期格式不正确');
}
$projet = Project::where(['code' => $projectCode])->field('id')->find();
if (!$projet) {
return error(2, '项目不存在');
}
$saveData = new \stdClass();
$where = ['project_code' => $projectCode, 'date' => $date];
$report = self::where($where)->find();
if ($report) {
$saveData->content = $report->content;
} else {
$report = new self();
$saveData->project_code = $projectCode;
$saveData->date = $date;
$saveData->create_time = nowTime();
$saveData->content = new \stdClass();
}
$saveData->update_time = nowTime();
//值为null则移除该键值对
if ($values === null) {
unset($saveData->content->$key);
return $report->save($saveData);
}
if ($isContent) {
if ($replace) {
//直接替换content
$saveData->content = $values;
} else {
//遍历键值对赋值到conetnt
if (!is_array($values)) {
$saveData->content->$key = $values;
} else {
foreach ($values as $keyItme => $value) {
//值为null则移除该键值对
if ($value === null) {
unset($saveData->content->$keyItme);
continue;
}
$saveData->content->$keyItme = $value;
}
}
}
} else {
//单个键值对
$saveData->content->$key = $values;
}
return $report->save($saveData);
}
}

View File

@ -6,20 +6,16 @@ use app\common\Model\CommonModel;
use app\common\Model\Department;
use app\common\Model\Member;
use app\common\Model\MemberAccount;
use app\common\Model\Notify;
use app\common\Model\SourceLink;
use app\common\Model\SystemConfig;
use controller\BasicApi;
use Exception;
use OSS\Core\OssException;
use service\FileService;
use service\NodeService;
use think\db\exception\DataNotFoundException;
use think\db\exception\ModelNotFoundException;
use think\Exception\DbException;
use think\exception\PDOException;
use think\facade\Request;
use think\File;
/**
* @title 项目管理

View File

@ -9,6 +9,7 @@ use app\common\Model\Notify;
use app\common\Model\ProjectCollection;
use app\common\Model\ProjectLog;
use app\common\Model\ProjectMember;
use app\common\Model\ProjectReport;
use app\common\Model\SystemConfig;
use controller\BasicApi;
use OSS\Core\OssException;
@ -287,6 +288,19 @@ class Project extends BasicApi
$this->success('', $list);
}
/**
* 项目情况统计
*/
public function _setDayilyProejctReport()
{
logRecord(nowTime(), 'setDayilyProejctReportBegin');
debug('begin');
$result = ProjectReport::setDayilyProejctReport();
debug('end');
logRecord(debug('begin','end') * 1000 . 'ms', 'setDayilyProejctReportSuccess');
echo 'success_at ' . nowTime();
}
/**
* 概览报表
* @throws DataNotFoundException

View File

@ -0,0 +1,14 @@
SET FOREIGN_KEY_CHECKS=0;
CREATE TABLE `pearProject`.`pear_project_report` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`project_code` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '项目编号',
`date` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '日期',
`content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL,
`create_time` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`update_time` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `union`(`project_code`, `date`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '项目报表统计表' ROW_FORMAT = Compact;
SET FOREIGN_KEY_CHECKS=1;

View File

@ -73,7 +73,7 @@ class BasicApi
* 返回资源不存在
* @param integer $code 返回代码
*/
protected function notFound($code = 404)
protected function notFound($code = 4041)
{
ToolsService::error('', [], $code);
}