1 Star 0 Fork 967

SyncGithub/wookteam

forked from aipaw/wookteam 
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Project.php 2.01 KB
一键复制 编辑 原始数据 按行查看 历史
kuaifan 提交于 2020-06-04 09:57 +08:00 . 国际化优化
<?php
namespace App\Module;
use DB;
/**
* Class Project
* @package App\Module
*/
class Project
{
/**
* 是否在项目里
* @param int $projectid
* @param string $username
* @param bool $isowner
* @return array
*/
public static function inThe($projectid, $username, $isowner = false)
{
$whereArray = [
'type' => '成员',
'projectid' => $projectid,
'username' => $username,
];
if ($isowner) {
$whereArray['isowner'] = 1;
}
$row = Base::DBC2A(DB::table('project_users')->select(['isowner', 'indate'])->where($whereArray)->first());
if (empty($row)) {
return Base::retError('你不在项目成员内!');
} else {
return Base::retSuccess('你在项目内', $row);
}
}
/**
* 更新项目(complete、unfinished)
* @param int $projectid
*/
public static function updateNum($projectid)
{
if ($projectid > 0) {
DB::table('project_lists')->where('id', $projectid)->update([
'unfinished' => DB::table('project_task')->where('projectid', $projectid)->where('complete', 0)->where('delete', 0)->count(),
'complete' => DB::table('project_task')->where('projectid', $projectid)->where('complete', 1)->where('delete', 0)->count(),
]);
}
}
/**
* 任务是否过期
* @param array $task
* @return int
*/
public static function taskIsOverdue($task)
{
return $task['complete'] == 0 && $task['enddate'] > 0 && $task['enddate'] <= Base::time() ? 1 : 0;
}
/**
* 过期的排在前
* @param array $taskLists
* @return mixed
*/
public static function sortTask($taskLists)
{
$inOrder = [];
foreach ($taskLists as $key => $oitem) {
$inOrder[$key] = $oitem['overdue'] ? -1 : $key;
}
array_multisort($inOrder, SORT_ASC, $taskLists);
return $taskLists;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/sync-github/wookteam.git
git@gitee.com:sync-github/wookteam.git
sync-github
wookteam
wookteam
master

搜索帮助