49 lines
2.3 KiB
PHP
49 lines
2.3 KiB
PHP
<?php
|
|
/**
|
|
* The control file of execution module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2012 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
|
|
* @license business(商业软件)
|
|
* @author Yangyang Shi <shiyangyang@cnezsoft.com>
|
|
* @package execution
|
|
* @version $Id$
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
|
|
<?php include "featurebar.html.php";?>
|
|
<div id="mainContent" class="main-row hide-side">
|
|
<div class='main-col'>
|
|
<div class='cell'>
|
|
<table class='table table-form main-table' target='hiddenwin'>
|
|
<thead>
|
|
<tr class='colhead text-center'>
|
|
<th class='w-id'><?php echo $lang->execution->gantt->id;?></th>
|
|
<th><?php echo $lang->execution->gantt->pretask;?></th>
|
|
<th class='w-130px'><?php echo $lang->execution->gantt->condition;?></th>
|
|
<th><?php echo $lang->execution->gantt->task;?></th>
|
|
<th class='w-120px'><?php echo $lang->execution->gantt->action;?></th>
|
|
<th class='w-80px'><?php echo $lang->execution->gantt->type;?></th>
|
|
<th class='w-60px {sorter:false}'><?php echo $lang->actions;?></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach($relations as $id => $relation):?>
|
|
<?php if(!isset($tasks[$relation->pretask]) or !isset($tasks[$relation->task])) continue;?>
|
|
<tr class='text-center'>
|
|
<td><?php echo $id;?></td>
|
|
<td class='text-left'><?php echo $tasks[$relation->pretask];?></td>
|
|
<td><?php echo $lang->execution->gantt->preTaskStatus[$relation->condition];?> </td>
|
|
<td class='text-left'><?php echo $tasks[$relation->task];?> </td>
|
|
<td><?php echo $lang->execution->gantt->taskActions[$relation->action];?> </td>
|
|
<td><?php echo $relation->condition == 'begin' ? 'S' : 'F'; echo $relation->action == 'begin' ? 'S' : 'F';?> </td>
|
|
<td class='c-actions'><?php $lang->execution->deleteRelation = $lang->delete; common::printIcon('execution', 'deleteRelation', "id=$id&executionID=$executionID", '', 'list', 'trash', 'hiddenwin');?></td>
|
|
</tr>
|
|
<?php endforeach;?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>
|