137 lines
7.4 KiB
PHP
137 lines
7.4 KiB
PHP
<?php
|
|
/**
|
|
* The html template file of index method of index module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
|
* @license ZPL (http://zpl.pub/page/zplv12.html)
|
|
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package ZenTaoPMS
|
|
* @version $Id: index.html.php 2343 2011-11-21 05:24:56Z wwccss $
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.html.php';?>
|
|
<div id="mainMenu" class="clearfix">
|
|
<div class="btn-toolbar pull-left">
|
|
<?php foreach($lang->execution->featureBar['all'] as $key => $label):?>
|
|
<?php echo html::a(inlink("project", "status=$key&productID=$productID"), "<span class='text'>{$label}</span>" . ($status == $key ? " <span class='label label-light label-badge'>" . count($projectStats) . "</span>" : ''), '', "class='btn btn-link" . ($status == $key ? ' btn-active-text' : '') . "' id='{$key}Tab'");?>
|
|
<?php endforeach;?>
|
|
<?php echo html::checkbox('involved', array('1' => $lang->project->mine), '', $this->cookie->involved ? 'checked=checked' : '');?>
|
|
<div class="tip"><a data-toggle='tooltip' title='<?php echo $lang->product->projectInfo;?>'><i class='icon-help'></i></a></div>
|
|
|
|
</div>
|
|
<?php if($config->systemMode == 'new' and $branchStatus != 'closed'):?>
|
|
<div class="btn-toolbar pull-right">
|
|
<?php if(common::hasPriv('project', 'manageProducts')) echo html::a('#link2Project', '<i class="icon-link"></i> ' . $lang->product->link2Project, '', "data-toggle='modal' class='btn btn-secondary'");?>
|
|
<?php if(common::hasPriv('project', 'create')) common::printLink('project', 'createGuide', "programID=$product->program&from=project&productID=$productID&branchID=$branchID", '<i class="icon icon-plus"></i> ' . $lang->project->create, '', 'class="btn btn-primary" data-toggle="modal" data-target="#guideDialog"');?>
|
|
</div>
|
|
<?php endif;?>
|
|
</div>
|
|
<div id="mainContent">
|
|
<?php if(empty($projectStats)):?>
|
|
<div class="table-empty-tip">
|
|
<p>
|
|
<?php if($config->systemMode == 'new'):?>
|
|
<span class="text-muted"><?php echo $lang->project->empty;?></span>
|
|
<?php else:?>
|
|
<span class="text-muted"><?php echo $lang->execution->noExecution;?></span>
|
|
<?php endif;?>
|
|
</p>
|
|
</div>
|
|
<?php else:?>
|
|
<form class='main-table table-project'>
|
|
<table class="table table-fixed">
|
|
<thead>
|
|
<tr>
|
|
<th class='c-id'><?php echo $lang->idAB;?></th>
|
|
<?php if($config->systemMode == 'new'):?>
|
|
<th class='c-program'><?php echo $lang->program->common;?></th>
|
|
<th><?php echo $lang->project->name;?></th>
|
|
<?php else:?>
|
|
<th><?php echo $lang->execution->name;?></th>
|
|
<?php endif;?>
|
|
<th class='c-user text-left'><?php echo $lang->project->PM;?></th>
|
|
<th class='c-date'><?php echo $lang->project->begin;?></th>
|
|
<th class='c-date'><?php echo $lang->project->end;?></th>
|
|
<th class='c-status'><?php echo $lang->project->status;?></th>
|
|
<th class="c-budget text-center"><?php echo $lang->project->budget;?></th>
|
|
<th class="c-number text-right"><?php echo $lang->project->estimate;?></th>
|
|
<th class="c-number text-right"><?php echo $lang->project->consume;?></th>
|
|
<th class="c-progress"><?php echo $lang->project->progress;?></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php $id = 0;?>
|
|
<?php foreach($projectStats as $project):?>
|
|
<tr>
|
|
<td><?php printf('%03d', $project->id);?></td>
|
|
<?php if($config->systemMode == 'new'):?>
|
|
<td title='<?php echo $project->programName;?>' class='text-ellipsis'><?php echo $project->programName;?></td>
|
|
<?php endif;?>
|
|
<td class='text-left'>
|
|
<?php
|
|
if($config->systemMode == 'new')
|
|
{
|
|
echo html::a($this->createLink('project', 'index', 'project=' . $project->id), $project->name);
|
|
}
|
|
else
|
|
{
|
|
echo html::a($this->createLink('execution', 'task', 'project=' . $project->id), $project->name);
|
|
}
|
|
?>
|
|
</td>
|
|
<td class='padding-right'>
|
|
<?php $userID = isset($PMList[$project->PM]) ? $PMList[$project->PM]->id : ''?>
|
|
<?php if(!empty($project->PM)) echo html::a($this->createLink('user', 'profile', "userID=$userID", '', true), zget($users, $project->PM), '', "data-toggle='modal' data-type='iframe' data-width='800'");?>
|
|
</td>
|
|
<td class='padding-right text-left'><?php echo $project->begin;?></td>
|
|
<td class='padding-right text-left'><?php echo $project->end;?></td>
|
|
<?php $status = $this->processStatus('project', $project);?>
|
|
<td class='c-status' title='<?php echo $status;?>'>
|
|
<span class="status-project status-<?php echo $project->status?>"><?php echo $status;?></span>
|
|
</td>
|
|
<?php $projectBudget = in_array($this->app->getClientLang(), array('zh-cn','zh-tw')) ? round((float)$project->budget / 10000, 2) . $this->lang->project->tenThousand : round((float)$project->budget, 2);?>
|
|
<?php $budgetTitle = $project->budget != 0 ? zget($this->lang->project->currencySymbol, $project->budgetUnit) . ' ' . $projectBudget : $this->lang->project->future;?>
|
|
<?php $textStyle = $project->budget != 0 ? 'text-right' : 'text-center';?>
|
|
<td title='<?php echo $budgetTitle;?>' class="text-ellipsis <?php echo $textStyle;?>"><?php echo $budgetTitle;?></td>
|
|
<td class="text-right" title="<?php echo $project->hours->totalEstimate . ' ' . $lang->execution->workHour;?>"><?php echo $project->hours->totalEstimate . $lang->execution->workHourUnit;?></td>
|
|
<td class="text-right" title="<?php echo $project->hours->totalConsumed . ' ' . $lang->execution->workHour;?>"><?php echo $project->hours->totalConsumed . $lang->execution->workHourUnit;?></td>
|
|
<td>
|
|
<div class='progress-pie' data-doughnut-size='90' data-color='#3CB371' data-value='<?php echo $project->hours->progress;?>' data-width='24' data-height='24' data-back-color='#e8edf3'>
|
|
<div class='progress-info'><?php echo $project->hours->progress;?></div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach;?>
|
|
</tbody>
|
|
</table>
|
|
</form>
|
|
<?php endif;?>
|
|
</div>
|
|
<script>$('[data-toggle="popover"]').popover();</script>
|
|
<div class="modal fade" id="link2Project">
|
|
<div class="modal-dialog mw-500px">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h4 class="modal-title"><?php echo $lang->product->link2Project;?></h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
<table class='table table-form'>
|
|
<tr>
|
|
<th><?php echo $lang->product->link2Project?></th>
|
|
<td><?php echo html::select('project', $projects, '', "class='form-control chosen'");?></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan='2' class='text-center'>
|
|
<?php echo html::hidden('product', $productID);?>
|
|
<?php echo html::hidden('branch', $branchID);?>
|
|
<?php echo html::commonButton($lang->save, "id='saveButton'", 'btn btn-primary btn-wide');?>
|
|
<?php echo html::commonButton($lang->cancel, "data-dismiss='modal'", 'btn btn-default btn-wide');?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php include '../../common/view/footer.html.php';?>
|