add transfer#list pdf download, fix helper#fixascii function
This commit is contained in:
45
backend/views/transfer/_view_search_list.php
Normal file
45
backend/views/transfer/_view_search_list.php
Normal 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>
|
||||
Reference in New Issue
Block a user