Files
EasySoft-ZenTaoPMS/module/product/view/view.html.php
wangchunsheng ef97b1c248 * change QM to QD.
* adjust the view page of product.
 * set productList session when browse all products.
2012-12-17 01:11:40 +00:00

147 lines
5.5 KiB
PHP

<?php
/**
* The view view of product module of ZenTaoPMS.
*
* @copyright Copyright 2009-2012 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
* @package product
* @version $Id$
* @link http://www.zentao.net
*/
?>
<?php include '../../common/view/header.html.php';?>
<div id='titlebar'>
<div id='main' <?php if($product->deleted) echo "class='deleted'";?>>PRODUCT #<?php echo $product->id . ' ' . $product->name;?></div>
<div>
<?php
$params = "product=$product->id";
$browseLink = $this->session->productList ? $this->session->productList : inlink('browse', "productID=$product->id");
if(!$product->deleted)
{
ob_start();
common::printDivider();
common::printIcon('product', 'edit', $params);
common::printIcon('product', 'delete', $params, '', 'button', '', 'hiddenwin');
common::printRPN($browseLink);
$actionLinks = ob_get_contents();
ob_end_clean();
echo $actionLinks;
}
?>
</div>
</div>
<table class='cont-rt5'>
<tr valign='top'>
<td>
<fieldset>
<legend><?php echo $lang->product->desc;?></legend>
<div class='content'><?php echo $product->desc;?></div>
</fieldset>
<?php include '../../common/view/action.html.php';?>
<div class='a-center actionlink'><?php if(!$product->deleted) echo $actionLinks;?></div>
</td>
<td class="divider"></td>
<td class="side">
<fieldset>
<legend><?php echo $lang->product->basicInfo?></legend>
<table class='table-1 a-left'>
<tr>
<th width='25%' class='a-right'><?php echo $lang->product->name;?></th>
<td <?php if($product->deleted) echo "class='deleted'";?>><?php echo $product->name;?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->product->code;?></th>
<td><?php echo $product->code;?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->product->PO;?></th>
<td><?php echo $users[$product->PO];?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->product->QD;?></th>
<td><?php echo $users[$product->QD];?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->product->status;?></th>
<td><?php echo $lang->product->statusList[$product->status];?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->product->acl;?></th>
<td><?php echo $lang->product->aclList[$product->acl];?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->product->whitelist;?></th>
<td>
<?php
$whitelist = explode(',', $product->whitelist);
foreach($whitelist as $groupID) if(isset($groups[$groupID])) echo $groups[$groupID] . '&nbsp;';
?>
</td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->story->openedBy?></th>
<td><?php echo $users[$product->createdBy];?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->story->openedDate?></th>
<td><?php echo $product->createdDate;?></td>
</tr>
</table>
</fieldset>
<fieldset>
<legend><?php echo $lang->product->otherInfo?></legend>
<table class='table-1 a-left'>
<tr>
<th width='25%' class='a-right'><?php echo $lang->story->statusList['active'] . $lang->story->common;?></th>
<td><?php echo $product->stories['active']?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->story->statusList['changed'] . $lang->story->common;?></th>
<td><?php echo $product->stories['changed']?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->story->statusList['draft'] . $lang->story->common;?></th>
<td><?php echo $product->stories['draft']?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->story->statusList['closed'] . $lang->story->common;?></th>
<td><?php echo $product->stories['closed']?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->product->plans?></th>
<td><?php echo $product->plans?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->product->projects?></th>
<td><?php echo $product->projects?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->product->bugs?></th>
<td><?php echo $product->bugs?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->product->docs?></th>
<td><?php echo $product->docs?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->product->cases?></th>
<td><?php echo $product->cases?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->product->bulids?></th>
<td><?php echo $product->bulids?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->product->releases?></th>
<td><?php echo $product->releases?></td>
</tr>
</table>
</fieldset>
</td>
</tr>
</table>
<?php include '../../common/view/footer.html.php';?>