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

30 lines
1.1 KiB
PHP

<table class="table table-bordered">
<thead>
<tr><th colspan="6"><?php echo $lang->milestone->executionRisk;?></th></tr>
<tr>
<th><?php echo $lang->milestone->riskCountermove;?></th>
<th><?php echo $lang->milestone->riskDescriptio;?></th>
<th><?php echo $lang->milestone->riskPossibility;?></th>
<th><?php echo $lang->milestone->riskSeriousness;?></th>
<th><?php echo $lang->milestone->riskFactor;?></th>
<th><?php echo $lang->milestone->riskMeasures;?></th>
</tr>
</thead>
<tbody>
<?php $totalRisk = count($executionRisk);?>
<?php foreach($executionRisk as $risk):?>
<tr>
<?php if($totalRisk):?>
<td rowspan="<?php echo $totalRisk;?>"><strong><?php echo $lang->milestone->riskAccumulate;?></strong></td>
<?php endif;?>
<td><?php echo $risk->name;?></td>
<td><?php echo $risk->impact;?></td>
<td><?php echo $risk->probability;?></td>
<td><?php echo $risk->rate;?></td>
<td><?php echo $risk->prevention;?></td>
</tr>
<?php $totalRisk = 0;?>
<?php endforeach;?>
</tbody>
</table>