add transfer#list pdf download, fix helper#fixascii function

This commit is contained in:
2016-01-06 16:18:15 +01:00
parent 932f071c13
commit 39ae361505
29 changed files with 1519 additions and 373 deletions

View File

@@ -0,0 +1,45 @@
<table class="table table-bordered">
<tbody>
<tr>
<th>
Időszak kezdete
</th>
<td>
<?php echo $searchModel->start?>
</td>
<th>
Időszak vége
</th>
<td>
<?php echo $searchModel->end?>
</td>
</tr>
<tr>
<th>
Kassza
</th>
<td>
<?php
if ( isset($searchModel->currentAccount)){
echo $searchModel->currentAccount->name;
}else{
echo "Mind";
}
?>
</td>
<th>
Felhasználó
</th>
<td>
<?php
if ( isset($searchModel->currentUser)){
echo $searchModel->currentUser->username;
}else{
echo "Mind";
}
?>
</td>
</tr>
</tbody>
</table>