zentaopms/extension/max/budget/view/summary.html.php
2023-05-16 10:50:42 +08:00

77 lines
3.5 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* The summary view of budget module of ZenTaoPMS.
*
* @copyright Copyright 2009-2015 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
* @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
* @package budget
* @version $Id: summary.html.php 4903 2013-06-26 05:32:59Z wyd621@gmail.com $
* @link http://www.zentao.net
*/
?>
<?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
<style>
.summary-active{color: #0c64eb;font-weight: 700;}
.summary td{font-weight: 700;}
.table-title{background: #efefef}
.text-center th{vertical-align: middle;}
</style>
<div id="mainMenu" class="clearfix">
<div class="pull-left">
<?php common::printLink('budget', 'summary', "projectID=$projectID", "<i class='icon-common-report icon-bar-chart muted'></i> " . $lang->budget->summary, '', "class='btn btn-link summary-active'");?>
<?php common::printLink('budget', 'browse', "projectID=$projectID", "<i class='icon icon-list-alt muted'></i> " . $lang->budget->list, '', "class='btn btn-link'");?>
</div>
<div class="btn-toolbar pull-right">
<?php common::printLink('budget', 'batchcreate', "projectID=$projectID", "<i class='icon icon-plus'></i>" . $lang->budget->batchCreate, '', "class='btn btn-secondary'");?>
<?php common::printLink('budget', 'create', "projectID=$projectID", "<i class='icon icon-plus'></i>" . $lang->budget->create, '', "class='btn btn-primary'");?>
</div>
</div>
<div id='mainContent' class='main-content'>
<div class="center-block">
<?php if(!empty($subjects)):?>
<table class='table table-bordered'>
<tr class='text-center table-title'>
<th rowspan="<?php echo $hasSubSubject ? 2 : 1;?>"><?php echo $lang->budget->stage;?></th>
<?php foreach($subjects as $id => $subject):?>
<th colspan="<?php echo count($subject);?>"><?php echo zget($modules, $id);?></th>
<?php endforeach;?>
<th rowspan="<?php echo $hasSubSubject ? 2 : 1;?>"><?php echo $lang->budget->summary;?></th>
</tr>
<tr class='text-center table-title'>
<?php foreach($subjects as $id => $subject):?>
<?php if($id == $subject[0] && !$hasSubSubject) continue;?>
<?php foreach($subject as $subjectID):?>
<th><?php echo zget($modules, $subjectID);?></th>
<?php endforeach;?>
<?php endforeach;?>
</tr>
<?php foreach($summary['stages'] as $stageID => $subject):?>
<tr>
<td><?php echo zget($plans, $stageID, $stageID);?></td>
<?php foreach($subject as $cost):?>
<td><?php echo $cost;?></td>
<?php endforeach;?>
<td><?php echo array_sum($subject);?></td>
</tr>
<?php endforeach;?>
<tr class='summary'>
<td><?php echo $lang->budget->summary;?></td>
<?php foreach($summary['subjects'] as $cost):?>
<td><?php echo $cost;?></td>
<?php endforeach;?>
<td><?php echo array_sum($summary['subjects']);?></td>
</tr>
</table>
<div class='alert alert-info mg-0'><?php echo $lang->budget->total . '' . array_sum($summary['subjects']) . $lang->budget->{$project->budgetUnit};?></div>
<?php else:?>
<div class="table-empty-tip">
<p>
<span class="text-muted"><?php echo $lang->noData;?></span>
</p>
</div>
<?php endif;?>
</div>
</div>
<?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>