Files
EasySoft-ZenTaoPMS/module/project/ui/view.html.php

567 lines
23 KiB
PHP

<?php
declare(strict_types=1);
/**
* The view file of project module of ZenTaoPMS.
* @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
* @license ZPL(https://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
* @author Yanyi Cao <caoyanyi@easycorp.ltd>
* @package project
* @link https://www.zentao.net
*/
namespace zin;
include($this->app->getModuleRoot() . 'ai/ui/promptmenu.html.php');
jsVar('confirmDeleteTip', $lang->project->confirmDelete);
$programDom = array();
$hasProgramPriv = common::hasPriv('program', 'product');
foreach(toIntArray($project->path) as $programID)
{
if(!isset($programList[$programID])) continue;
$name = $programList[$programID];
$programLink = $hasProgramPriv ? $this->createLink('program', 'product', "programID={$programID}") : '';
$programName = $hasProgramPriv ? "<a href='{$programLink}' title='{$name}'>{$name}</a>" : "<span title='{$name}'>{$name}</span>";
$programDom[] = $programName;
}
if($programDom) $programDom = div(icon('program mr-2 text-primary'), html(implode('/ ', $programDom)));
$status = $this->processStatus('project', $project);
$relatedProducts = null;
if($project->hasProduct)
{
foreach($products as $productID => $product)
{
$productDom = null;
$branches = array();
foreach($product->branches as $branchID)
{
$branchName = isset($branchGroups[$productID][$branchID]) ? '/' . $branchGroups[$productID][$branchID] : '';
$branches[] = div(
setClass('flex clip w-full items-center'),
icon('product mr-2'),
a(
setClass('flex'),
set::title($product->name . $branchName),
hasPriv('product', 'browse') ? set::href(createLink('product', 'browse', "productID={$productID}&branch={$branchID}")) : null,
span(setClass('flex-1'), setStyle('width', '0'), $product->name . $branchName)
)
);
}
$productDom = h::td(div(setClass('flex flex-wrap'), $branches));
$plans = array();
$planDom = null;
foreach($product->plans as $planIDList)
{
$planIDList = explode(',', $planIDList);
$planIDList = array_filter($planIDList);
foreach($planIDList as $planID)
{
if(!isset($planGroup[$productID][$planID])) continue;
$class = 'clip';
if(count($planIDList) <= 2) $class .= ' flex flex-1 w-0 items-center';
if(count($planIDList) > 2) $class .= ' flex-none w-1/3';
if(count($plans) > 2) $class .= ' mt-2';
if(count($plans) % 3 != 0) $class .= ' pl-6';
$plans[] = div
(
setClass($class),
icon('productplan mr-2 '),
a(
set::title($planGroup[$productID][$planID]),
hasPriv('productplan', 'view') ? set::href(createLink('productplan', 'view', "planID={$planID}")) : null,
span($planGroup[$productID][$planID])
)
);
}
}
$planDom[] = h::td(div(setClass('flex flex-wrap'), $plans));
$relatedProducts[] = h::tr(setClass('border-r'), $productDom, $planDom);
}
}
$membersDom = array();
if(!empty($project->PM))
{
$user = isset($userList[$project->PM]) ? $userList[$project->PM] : null;
if($user)
{
$membersDom[] = div
(
setClass('w-1/8 center-y'),
avatar(setClass('primary-outline'), set::text($user->realname), set::src($user->avatar)),
span(setClass('my-2'), $user->realname),
span(setClass('text-gray'), $lang->project->PM)
);
}
unset($teamMembers[$project->PM]);
}
$memberCount = count($membersDom);
foreach($teamMembers as $teamMember)
{
if($memberCount >= 7) break;
$user = isset($userList[$teamMember->account]) ? $userList[$teamMember->account] : null;
if(!$user) continue;
$membersDom[] = div
(
setClass('w-1/8 center-y'),
avatar(set::text($user->realname), set::src($user->avatar)),
span(setClass('my-2'), $user->realname),
span(setClass('text-gray'), $lang->project->member)
);
$memberCount ++;
}
if(common::hasPriv('project', 'manageMembers'))
{
$membersDom[] = a
(
setClass('w-1/8 center-y cursor-pointer'),
set::href(createLink('project', 'manageMembers', "projectID={$project->id}")),
avatar
(
setClass('mb-2'),
set::foreColor('var(--color-primary-500-rgb)'),
set::background('var(--color-primary-50)'),
icon('plus')
),
$lang->project->manage
);
}
row
(
setClass('w-full'),
cell
(
setClass('main w-2/3'),
div
(
setClass('flex-auto canvas flex p-4 basic'),
div
(
setClass('text-center w-1/3 flex flex-col justify-center items-center progressBox'),
div
(
set('class', 'chart pie-chart'),
echarts
(
set::color(array('#2B80FF', '#E3E4E9')),
set::width(120),
set::height(120),
set::series(array(
array
(
'type' => 'pie',
'radius' => array('80%', '90%'),
'itemStyle' => array('borderRadius' => '40'),
'label' => array('show' => false),
'data' => array($project->progress, 100 - $project->progress)
)))
),
div
(
set::className('pie-chart-title text-center'),
div(span(set::className('text-2xl font-bold'), $project->progress . '%')),
div
(
span
(
setClass('text-sm text-gray'),
$lang->allProgress,
btn
(
set::size('sm'),
set::icon('help'),
setClass('ghost form-label-hint text-gray-300 ml-2'),
toggle::tooltip(array('title' => $lang->execution->progressTip, 'className' => 'text-gray border border-gray-300', 'type' => 'white', 'placement' => 'right'))
)
)
)
)
),
div
(
setClass('border w-3/4 flex justify-center items-center pl-4 py-2 statistics'),
div
(
setClass('w-1/3 storyCount'),
div(setClass('text-md font-bold'), $statData->storyCount),
span(setClass('text-gray'), $lang->common->story)
),
div
(
setClass('w-1/3 taskCount'),
div(setClass('text-md font-bold'), $statData->taskCount),
span(setClass('text-gray'), $lang->task->common)
),
div
(
setClass('w-1/3 bugCount'),
div(setClass('text-md font-bold'), $statData->bugCount),
span(setClass('text-gray'), $lang->bug->common)
)
)
),
div
(
setClass('flex-none w-2/3'),
div
(
setClass('flex items-center'),
label
(
setClass('label rounded-full ring-gray-400 gray-300-pale'),
$project->id
),
span
(
setClass('text-md font-bold ml-2 clip'),
set::title($project->name),
$project->name
),
!empty($config->setCode) && !empty($project->code) ? label
(
setClass('label gray-400-pale ring-gray-400 ml-2 clip justify-start'),
set::title($project->code),
$project->code
) : null,
label
(
setClass('label warning-pale ring-warning rounded-full ml-2 flex-none projectType'),
$lang->project->projectTypeList[$project->hasProduct]
),
$project->deleted ? label
(
setClass('danger-outline text-danger flex-none ml-2'),
$lang->project->deleted
) : null,
isset($project->delay) ? label
(
setClass("ml-2 flex-none danger-pale"),
$lang->execution->delayed
) : label
(
setClass("ml-2 flex-none bg-white status status-{$project->status}"),
$status
),
span
(
setClass('ml-2 text-gray flex-none acl'),
$lang->project->shortAclList[$project->acl],
btn
(
set::size('sm'),
set::icon('help'),
setClass('ghost form-label-hint text-gray-300 ml-2'),
toggle::tooltip(array('title' => $lang->project->subAclList[$project->acl], 'className' => 'text-gray border border-gray-300', 'type' => 'white', 'placement' => 'right'))
)
),
div(setClass('ai-menu-box flex-auto'))
),
div
(
setClass('flex mt-4 program'),
$programDom ? div(setClass('clip programBox w-1/2'), $programDom) : null,
$config->edition != 'open' && !empty($project->workflowGroup) ? div
(
setClass('clip w-1/2'),
set::title($lang->project->workflowGroup),
icon('flow', setClass('pr-1')),
$workflowGroup->name
) : null
),
div
(
set::className('detail-content mt-4 overflow-hidden desc-box overflow-y-scroll scrollbar-thin scrollbar-hover'),
set::title(strip_tags($project->desc)),
html($project->desc)
)
)
),
div
(
setClass('flex flex-auto p-4 mt-4 canvas'),
div
(
setClass('w-full'),
/* Linked product and plan. */
$project->hasProduct ? h::table
(
setID('products'),
setClass('table condensed bordered productsBox'),
h::thead
(
h::tr
(
h::th
(
setClass('w-1/3'),
div
(
setClass('flex items-center justify-between'),
span
(
setClass('leading-8 flex'),
img(set('src', 'static/svg/product.svg'), setClass('mr-2')),
$lang->project->manageProducts
),
common::hasPriv('project', 'manageproducts') ? btn
(
setClass('ghost text-gray'),
set::url(createLink('project', 'manageproducts', "projectID={$project->id}")),
icon('link', setClass('text-primary')),
span($lang->more, setClass('font-normal'))
) : null
)
),
h::th
(
setClass('th-plan'),
span
(
setClass('flex'),
img(set('src', 'static/svg/productplan.svg'), setClass('mr-2')),
$lang->execution->linkPlan
)
)
)
),
h::tbody($relatedProducts)
) : null,
/* Project team. */
h::table
(
setID('teams'),
setClass('table condensed bordered teams ' . ($project->hasProduct ? 'mt-4' : '')),
h::thead
(
h::tr
(
h::th
(
div
(
setClass('flex items-center justify-between'),
span($lang->projectCommon . $lang->project->team),
hasPriv('project', 'team') ? btn
(
setClass('ghost text-gray'),
set::trailingIcon('caret-right pb-0.5'),
set::url(createLink('project', 'team', "projectID={$project->id}")),
span($lang->more, setClass('font-normal'))
) : null
)
)
)
),
h::tbody
(
h::tr
(
h::td(div(setClass('flex flex-wrap member-list pt-2'), $membersDom))
)
)
),
/* Estimate statistics. */
h::table
(
setClass('table condensed bordered mt-4 duration'),
h::thead
(
h::tr
(
h::th
(
div(setClass('flex items-center justify-between'), span($lang->execution->DurationStats))
)
)
),
h::tbody
(
h::tr
(
h::td
(
div
(
setClass('flex flex-wrap pt-2 mx-4'),
div
(
setClass('w-1/4'),
span(setClass('text-gray'), $lang->project->begin),
span(setClass('ml-2'), $project->begin)
),
div
(
setClass('w-1/4'),
span(setClass('text-gray'), $lang->project->end),
span
(
setClass('ml-2'),
$project->end = $project->end == LONG_TIME ? $this->lang->project->longTime : $project->end
)
),
div
(
setClass('w-1/4'),
span(setClass('text-gray'), $lang->project->realBeganAB),
span
(
setClass('ml-2'),
helper::isZeroDate($project->realBegan) ? '' : $project->realBegan
)
),
div
(
setClass('w-1/4'),
span(setClass('text-gray'), $lang->project->realEndAB),
span
(
setClass('ml-2'),
helper::isZeroDate($project->realEnd) ? '' : $project->realEnd
)
)
)
)
)
)
),
h::table
(
setClass('table condensed bordered mt-4 estimate'),
h::thead
(
h::tr
(
h::th
(
div(setClass('flex items-center justify-between'), span($lang->execution->lblStats))
)
)
),
h::tbody
(
h::tr
(
h::td
(
div
(
setClass('flex flex-wrap pt-2 mx-4'),
div
(
setClass('w-1/3'),
span(setClass('text-gray'), $lang->execution->estimateHours),
span(setClass('ml-2'), helper::formatHours($project->estimate) . 'h')
),
div
(
setClass('w-1/3'),
span(setClass('text-gray'), $lang->execution->consumedHours),
span(setClass('ml-2'), helper::formatHours($project->consumed) . 'h')
),
div
(
setClass('w-1/3'),
span(setClass('text-gray'), $lang->execution->leftHours),
span(setClass('ml-2'), helper::formatHours($project->left) . 'h')
),
div
(
setClass('w-1/3 mt-4'),
span(setClass('text-gray'), $lang->execution->totalDays),
span(setClass('ml-2'), $project->days)
),
div
(
setClass('w-1/3 mt-4'),
span(setClass('text-gray'), $lang->execution->totalHours),
span(setClass('ml-2'), helper::formatHours($project->left) . 'h')
),
div
(
setClass('w-1/3 mt-4'),
span(setClass('text-gray'), $lang->project->budget),
span
(
setClass('ml-2'),
$project->budget ? zget($lang->project->currencySymbol, $project->budgetUnit) . $project->budget : $lang->project->future
)
)
)
)
)
)
),
html($this->printExtendFields($project, 'html', 'position=info', false))
)
)
),
cell
(
setClass('side ml-4'),
panel
(
setID('dynamicBlock'),
to::heading
(
div
(
set('class', 'panel-title text-md font-bold'),
$lang->execution->latestDynamic
)
),
to::headingActions
(
($project->model != 'kanban' and common::hasPriv('project', 'dynamic')) ? btn
(
setClass('ghost text-gray'),
set::url(createLink('project', 'dynamic', "projectID={$projectID}&type=all")),
$lang->more
) : null
),
set::bodyClass('pt-0 h-80 overflow-y-auto'),
set::shadow(false),
dynamic()
),
html($this->printExtendFields($project, 'html', 'position=basic', false)),
div
(
setID('historyBlock'),
setClass('mt-4'),
history
(
set::objectID($project->id),
set::commentUrl(createLink('action', 'comment', array('objectType' => 'project', 'objectID' => $project->id))),
set::bodyClass('maxh-80 overflow-y-auto')
)
)
)
);
$config->project->actionList['edit']['url']['params'] = 'projectID={id}&from=view';
$actions = $this->loadModel('common')->buildOperateMenu($project);
div
(
setClass('w-2/3 center fixed actions-menu'),
floatToolbar
(
isAjaxRequest('modal') ? null : to::prefix(backBtn(set::icon('back'), $lang->goback)),
set::main($actions['mainActions']),
set::suffix($actions['suffixActions']),
set::object($project)
)
);
/* ====== Render page ====== */
render();